/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8d7258;
    --primary-dark: #6b5541;
    --primary-light: #a88b71;
    --text-light: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.65);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

h2.visible:after {
    width: 120px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Header/Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(141, 114, 88, 0.5);
    width: 100%;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom-color: var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo a:hover {
    color: var(--primary-light);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu a:not(.nav-buy-btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-menu a:not(.nav-buy-btn):hover:after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.nav-buy-btn {
    background-color: rgba(141, 114, 88, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(168, 139, 113, 0.5);
}

.nav-buy-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-buy-btn:hover:before {
    left: 100%;
}

.nav-buy-btn:hover {
    background-color: var(--primary-dark);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: var(--primary-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 2px 0;
    transition: 0.3s;
}

/* ALL SECTIONS including hero have the same background - IMPROVED FOR MOBILE */
.hero-section,
.section {
    position: relative;
    padding: 100px 0;
    /* Fallback background color */
    background-color: #1a1a1a;
    /* Background image with better mobile support */
    background-image: url('../images/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Desktop - keep fixed attachment for parallax effect */
@media (min-width: 769px) {
    .hero-section,
    .section {
        background-attachment: fixed;
    }
}

/* Mobile Specific Styles - ONE FIXED BACKGROUND */
@media (max-width: 768px) {
    /* Remove individual section backgrounds on mobile */
    .hero-section,
    .section {
        background: none !important;
        background-color: transparent !important;
    }
    
    /* Create fixed background on body for mobile only */
    body {
        position: relative;
        min-height: 100vh;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: url('../images/background-mobile.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover; /* Changed to cover to eliminate black space */
        background-color: #1a1a1a; /* Fallback color */
        z-index: -2;
        pointer-events: none;
    }
    
    /* Fixed overlay for mobile */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.65); /* Adjust this value for mask transparency */
        z-index: -1;
        pointer-events: none;
    }
    
    /* Hide the individual overlays on mobile */
    .hero-section .background-overlay,
    .section .background-overlay {
        display: none;
    }
    
    /* Mobile background adjustments */
    .hero-section,
    .section {
        background-attachment: scroll;
    }
}

/* For smaller phones - adjust if needed */
@media (max-width: 480px) {
    body::before {
        background-size: cover;
        background-position: center center;
    }
    
    /* Make overlay slightly darker on very small screens if needed */
    body::after {
        background-color: rgba(0, 0, 0, 0.65); /* Keep same as main */
    }
}

/* For iOS devices that handle backgrounds differently */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        body::before {
            background-attachment: scroll;
            background-size: cover;
            background-position: center;
        }
    }
}

/* Overlay for ALL sections including hero (DESKTOP ONLY) */
.hero-section .background-overlay,
.section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Hero Section Specific */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    text-align: left;
    padding-left: 40px;
}

.main-title {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--primary-light);
}

/* Price Styles */
.price-container {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-right: 1rem;
    display: inline-block;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    display: inline-block;
    text-shadow: 0 0 10px rgba(168, 139, 113, 0.3);
    animation: pricePulse 2s infinite;
}

@keyframes pricePulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(168, 139, 113, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(168, 139, 113, 0.6);
    }
}

.price-save {
    display: block;
    font-size: 1rem;
    color: #4CAF50;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-light);
}

/* What Will You Discover Inside - Image & Text Layout */
.discover-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.discover-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.discover-left-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    float: left;
    margin: 0 30px 20px 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.discover-left-image:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-light);
}

/* Clear fix for floated image */
.discover-text:after {
    content: "";
    display: table;
    clear: both;
}

/* Section Divider */
.section-divider {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-light), var(--primary-color), transparent);
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.8;
    position: relative;
    z-index: 10;
}

/* Section content */
.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.section-title {
    color: var(--text-light);
}

.section-text {
    text-align: left;
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.section-text:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Scroll Animation Classes - IMPROVED */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }

/* Buttons - FIXED CENTERING */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 1rem auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Form button specific centering */
.contact-form .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Section specific styles */
.emphasis {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-light);
    text-align: center;
    margin: 2rem 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.emphasis:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.02);
    border-color: var(--primary-light);
}

.sub-point {
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
    margin: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 15px 15px 2rem;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.sub-point:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-left-width: 5px;
    border-color: var(--primary-light);
}

.book-part {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.book-part:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* For You List */
.for-you-list {
    list-style: none;
    margin: 2rem 0;
}

.for-you-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(141, 114, 88, 0.3);
    transition: all 0.3s ease;
}

.for-you-list li:last-child {
    border-bottom: none;
}

.for-you-list li:before {
    content: "→";
    color: var(--primary-light);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.for-you-list li:hover {
    padding-left: 2.5rem;
    border-bottom-color: var(--primary-light);
}

.for-you-list li:hover:before {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-light);
    text-align: right;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    color: var(--primary-color);
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid var(--primary-color);
    padding: 30px !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(141, 114, 88, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.12);
}

.form-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--primary-light);
    font-size: 0.95rem;
    border-top: 1px solid rgba(141, 114, 88, 0.3);
    padding-top: 1.5rem;
}

/* Policy Pages Text Styles */
.policy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-text .emphasis {
    font-size: 1.3rem;
    margin-top: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Footer */
.site-footer {
    background-color: #111;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--primary-color);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    transition: color 0.3s ease;
}

.footer-content a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-content a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-content a:hover {
    color: var(--primary-light);
}

.footer-content a:hover:after {
    width: 100%;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid var(--primary-light);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Improved Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 2px solid var(--primary-color);
        border-top: 1px solid var(--primary-color);
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
        padding-left: 0;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section,
    .section {
        padding: 60px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .section-text {
        padding: 20px;
    }
    
    .section-divider {
        max-width: 90%;
    }
    
    .discover-left-image {
        float: none;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .contact-form-container {
        padding: 20px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    /* Contact form button centering on mobile */
    .contact-form .btn {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
    }
    
    .policy-text p {
        font-size: 1.1rem;
    }
    
    .old-price {
        font-size: 1.3rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-content a {
        display: inline-block;
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .contact-form .btn {
        max-width: 250px;
    }
    
    .book-part {
        padding: 1.5rem;
    }
    
    .sub-point {
        padding-left: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }
    
    .policy-text p {
        font-size: 1rem;
    }
    
    .old-price {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 1.8rem;
    }
    
    .footer-content p {
        gap: 5px;
    }
    
    .footer-content a {
        margin: 2px 0;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}