:root {
            --primary-dark: #1a1a2e;
            --primary-navy: #16213e;
            --primary-charcoal: #2c2c3e;
            --accent-gold: #d4a853;
            --accent-gold-light: #e8c97a;
            --accent-gold-dark: #b8922e;
            --text-white: #ffffff;
            --text-light: #c0c0c0;
            --text-muted: #8a8a9a;
            --bg-light: #f5f5f5;
            --bg-dark: #0f0f1a;
            --bg-section: #1e1e32;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-dark: 0 10px 30px rgba(0,0,0,0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== UTILITY ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-subtitle {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .section-title span {
            color: var(--accent-gold);
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.7;
        }

        .btn-primary {
            display: inline-block;
            padding: 14px 32px;
            background: var(--accent-gold);
            color: var(--text-white);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background: var(--accent-gold-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            display: inline-block;
            padding: 12px 28px;
            background: transparent;
            color: var(--accent-gold);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--accent-gold);
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--text-white);
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--primary-dark);
            padding: 15px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-logo-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--text-white);
        }

        .nav-logo-text {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-white);
        }

        .nav-logo-text span {
            color: var(--accent-gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-booking {
            padding: 10px 24px;
            background: var(--accent-gold);
            color: var(--text-white);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-booking:hover {
            background: var(--accent-gold-dark);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-white);
            transition: var(--transition);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            background: var(--primary-dark);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(22,33,62,0.85) 100%);
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: calc(100vh - 80px);
        }

        .hero-text {
            padding: 40px 0;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 56px;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--accent-gold);
        }

        .hero-desc {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 480px;
        }

        .hero-btn {
            display: inline-block;
            padding: 16px 36px;
            background: var(--accent-gold);
            color: var(--text-white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-btn:hover {
            background: var(--accent-gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212,168,83,0.3);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-wrapper {
            position: relative;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--accent-gold);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 3;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-dot.active {
            background: var(--accent-gold);
            width: 30px;
            border-radius: 5px;
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--bg-light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gold);
        }

        .about-content .section-title {
            margin-bottom: 20px;
        }

        .about-text {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-btn {
            margin-top: 20px;
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--text-white);
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .service-card {
            background: var(--text-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .service-card-body {
            padding: 25px 20px;
            text-align: center;
        }

        .service-card-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .service-card-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .service-card .btn-primary {
            padding: 10px 24px;
            font-size: 12px;
        }

        /* ===== PRICING ===== */
        .pricing {
            background: var(--bg-light);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .pricing-header .section-desc {
            margin: 0 auto;
        }

        .pricing-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .pricing-tab {
            padding: 10px 24px;
            background: transparent;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            transition: var(--transition);
        }

        .pricing-tab:hover,
        .pricing-tab.active {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--text-white);
        }

        .pricing-list {
            max-width: 800px;
            margin: 0 auto;
            background: var(--text-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }

        .pricing-item:last-child {
            border-bottom: none;
        }

        .pricing-item:hover {
            background: #fafafa;
        }

        .pricing-item-name {
            font-size: 15px;
            font-weight: 500;
            color: var(--primary-dark);
        }

        .pricing-item-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .pricing-cta {
            text-align: center;
            margin-top: 30px;
        }

        /* ===== WHY CHOOSE ===== */
        .why-choose {
            background: var(--text-white);
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-choose-content .section-title {
            margin-bottom: 20px;
        }

        .why-choose-text {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px;
            background: var(--bg-light);
            border-radius: 10px;
            transition: var(--transition);
        }

        .feature-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--text-white);
        }

        .feature-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 3px;
        }

        .feature-text p {
            font-size: 12px;
            color: var(--text-muted);
        }

        .why-choose-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .why-choose-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
        }

        /* ===== TEAM ===== */
        .team {
            background: var(--bg-light);
        }

        .team-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .team-header .section-desc {
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .team-card {
            background: var(--text-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .team-card-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .team-card-body {
            padding: 25px 20px;
        }

        .team-card-name {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .team-card-role {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .team-card .btn-primary {
            padding: 10px 24px;
            font-size: 12px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .testimonial-content .section-subtitle {
            color: var(--accent-gold);
        }

        .testimonial-content .section-title {
            color: var(--text-white);
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .testimonial-quote {
            background: var(--bg-section);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            border-left: 4px solid var(--accent-gold);
        }

        .testimonial-quote p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-white);
        }

        .testimonial-author-role {
            font-size: 13px;
            color: var(--text-muted);
        }

        .testimonial-image {
            position: relative;
        }

        .testimonial-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
        }

        /* ===== BLOG ===== */
        .blog {
            background: var(--text-white);
        }

        .blog-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .blog-header .section-desc {
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .blog-card {
            background: var(--text-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .blog-card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .blog-card-body {
            padding: 25px 20px;
        }

        .blog-card-date {
            font-size: 12px;
            color: var(--accent-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .blog-card-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .blog-card-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: var(--bg-light);
            position: relative;
        }

        .newsletter-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .newsletter-content .section-subtitle {
            color: var(--accent-gold);
        }

        .newsletter-content .section-title {
            margin-bottom: 10px;
        }

        .newsletter-content .section-desc {
            margin-bottom: 25px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 14px;
            outline: none;
            transition: var(--transition);
        }

        .newsletter-input:focus {
            border-color: var(--accent-gold);
        }

        .newsletter-image {
            position: relative;
            text-align: center;
        }

        .newsletter-image img {
            width: 100%;
            max-width: 400px;
            height: 380px;
            object-fit: cover;
            border-radius: 12px;
        }

        /* ===== APPOINTMENT ===== */
        .appointment {
            background: var(--text-white);
        }

        .appointment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .appointment-content .section-title {
            margin-bottom: 20px;
        }

        .appointment-content .section-desc {
            margin-bottom: 30px;
        }

        .appointment-info {
            list-style: none;
        }

        .appointment-info li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 14px;
            color: #666;
        }

        .appointment-info li svg {
            width: 20px;
            height: 20px;
            fill: var(--accent-gold);
            flex-shrink: 0;
        }

        .appointment-form {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 14px;
            outline: none;
            transition: var(--transition);
            background: var(--text-white);
        }

        .form-control:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212,168,83,0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .appointment-form .btn-primary {
            width: 100%;
            padding: 16px;
            font-size: 15px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-dark);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-logo-icon {
            width: 36px;
            height: 36px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--text-white);
        }

        .footer-logo-text {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
        }

        .footer-logo-text span {
            color: var(--accent-gold);
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--accent-gold);
        }

        .footer-social a svg {
            width: 16px;
            height: 16px;
            fill: var(--text-white);
        }

        .footer-heading {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 44px;
            }

            .hero-image-wrapper {
                width: 350px;
                height: 350px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 40px 0;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-desc {
                margin: 0 auto 30px;
            }

            .hero-image {
                order: -1;
            }

            .hero-image-wrapper {
                width: 280px;
                height: 280px;
            }

            .about-grid,
            .why-choose-grid,
            .testimonials-grid,
            .newsletter-grid,
            .appointment-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 28px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .appointment-form {
                padding: 25px;
            }
        }