* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #C46A4A;
            --primary-dark: #A24B2A;
            --secondary: #E8C4A8;
            --light-bg: #FDF6F0;
            --white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-light: #666666;
            --gold: #D4AF7A;
            --border: #E8DDD5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.6;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        /* ========== NAVBAR - STATE 1 (TRANSPARENT ON VIDEO) ========== */
        header {
            background: transparent;
            backdrop-filter: none;
            padding: 16px 0;
            border-bottom: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: none;
            transition: all 0.4s ease;
            width: 100%;
        }

        /* ========== NAVBAR - STATE 2 (ORANGE-BROWN STICKY AFTER SCROLL) ========== */
        header.scrolled {
            background: linear-gradient(135deg, #D97E52 0%, #A24B2A 100%);
            backdrop-filter: blur(10px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(162, 75, 42, 0.4);
        }

        .navbar {
            width: 100%;
            max-width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
            margin: 0 auto;
            height: 60px;
            transition: all 0.4s ease;
        }

        header.scrolled .navbar {
            height: 50px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #FFFFFF 0%, #E89968 60%, #D97E52 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            flex-shrink: 0;
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        header.scrolled .logo {
            filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.6)) drop-shadow(0 1px 2px rgba(255, 255, 255, 0.4));
            text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
            font-size: 24px;
            font-weight: 800;
            color: #1A1A1A;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            letter-spacing: 0.5px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        /* ========== AUTH SECTION ========== */
        .auth-section {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 14px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 50px;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
        }

        .auth-section:hover {
            border-color: rgba(255, 255, 255, 0.9);
            color: rgba(255, 255, 255, 1);
            background: rgba(255, 255, 255, 0.08);
        }

        .auth-icon {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 24px;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
        }

        .auth-section:hover .auth-icon {
            color: rgba(255, 255, 255, 1);
        }

        .auth-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 500;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        header.scrolled .auth-section {
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--white);
            background: transparent;
        }

        header.scrolled .auth-section:hover {
            border-color: rgba(255, 255, 255, 0.8);
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        header.scrolled .auth-icon {
            color: var(--white);
            filter: none;
        }

        header.scrolled .auth-section:hover .auth-icon {
            color: var(--white);
        }

        header.scrolled .auth-text {
            color: var(--white);
            text-shadow: none;
        }

        .auth-section:hover .auth-text {
            color: var(--primary);
        }

        /* ========== LANGUAGE DROPDOWN ========== */
        .lang-dropdown {
            position: relative;
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--white);
            cursor: pointer;
            transition: all 0.3s;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .lang-toggle:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        header.scrolled .lang-toggle {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--white);
        }

        header.scrolled .lang-toggle:hover {
            border-color: rgba(255, 255, 255, 0.8);
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        .lang-toggle .arrow {
            font-size: 10px;
            transition: transform 0.3s;
        }

        .lang-dropdown.active .lang-toggle .arrow {
            transform: rotate(180deg);
        }

        .lang-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 6px;
            min-width: 140px;
            margin-top: 6px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 200;
            overflow: hidden;
        }

        .lang-dropdown.active .lang-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border: none;
            background: none;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .lang-option:hover {
            background: var(--light-bg);
            color: var(--primary);
        }

        .lang-option.active {
            background: var(--primary);
            color: var(--white);
        }

        /* ========== BUSINESS BUTTON ========== */
        .btn-list-business {
            background: var(--primary);
            color: var(--white);
            padding: 10px 22px;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-list-business:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(196, 106, 74, 0.3);
        }

        header.scrolled .btn-list-business {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: none;
        }

        header.scrolled .btn-list-business:hover {
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* ========== HERO SECTION WITH VIDEO BACKGROUND ========== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .video-acceuil {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
            padding: 120px 60px 0 60px;
            color: white;
        }

        .typing-container {
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .typing-text {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 600;
            line-height: 1.2;
            color: white;
            text-align: center;
            max-width: 900px;
            animation: fadeInUp 0.8s ease-out;
        }

        .typing-text::after {
            content: '|';
            animation: blink 0.7s infinite;
            margin-left: 8px;
        }

        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        .hero-subtitle {
            font-size: 18px;
            margin-top: 16px;
            margin-bottom: 48px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.1s both;
            max-width: 700px;
        }

        .hero-search {
            background: var(--white);
            border-radius: 50px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 700px;
            width: 100%;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
        }

        .search-input::placeholder {
            color: var(--text-light);
        }

        .search-input:focus {
            outline: none;
        }

        .search-divider {
            width: 1px;
            height: 28px;
            background: var(--border);
        }

        .search-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 8px 22px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            flex-shrink: 0;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .search-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(196, 106, 74, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== CATEGORY BAR ========== */
        .categories {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 28px 0;
            border-bottom: 1px solid rgba(232, 221, 213, 0.3);
            width: 100%;
            position: relative;
            z-index: 3;
            margin-top: -60px;
            padding-top: 60px;
        }

        .categories-container {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            align-items: center;
            padding: 0 60px;
            color: white;
            position: relative;
            z-index: 3;
        }

        .category-pill {
            padding: 10px 18px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            background: #D97E52;
            color: rgba(255, 255, 255, 1);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
            backdrop-filter: blur(0px);
            text-shadow: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .category-pill:hover {
            border-color: rgba(255, 255, 255, 0.9);
            color: rgba(255, 255, 255, 1);
            background: #C97547;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

        .category-pill.active {
            background: rgba(255, 255, 255, 0.95);
            color: #D97E52;
            border-color: rgba(255, 255, 255, 0.95);
            font-weight: 700;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }

        /* ========== SECTION STYLES ========== */
        section {
            padding: 100px 60px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
            text-align: center;
            width: 100%;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 50px;
            max-width: 700px;
            text-align: center;
            width: 100%;
        }

        /* ========== GRID LAYOUTS ========== */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 50px;
            width: 100%;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 50px;
            width: 100%;
        }

        .grid-6 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 50px;
            width: 100%;
        }

        /* ========== PROFESSIONAL CARD ========== */
        .pro-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
        }

        .pro-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 48px rgba(196, 106, 74, 0.16);
            border-color: var(--primary);
        }

        .pro-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--secondary) 0%, #E07552 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            position: relative;
            overflow: hidden;
        }

        .pro-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .pro-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--gold);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }

        .pro-urgency {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: var(--white);
            padding: 6px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }

        .pro-info {
            padding: 20px;
            text-align: center;
        }

        .pro-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .pro-service {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .pro-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 10px;
            font-size: 12px;
        }

        .pro-rating .stars {
            color: var(--gold);
        }

        .pro-location {
            font-size: 11px;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        .pro-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .book-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .book-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(196, 106, 74, 0.3);
        }

        /* ========== INSTAGRAM FEED ========== */
        .feed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 14px;
            margin-top: 50px;
            width: 100%;
        }

        .feed-item {
            aspect-ratio: 1;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--secondary) 0%, #E07552 100%);
            cursor: pointer;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feed-item:hover {
            transform: scale(1.06);
            box-shadow: 0 16px 40px rgba(196, 106, 74, 0.2);
        }

        .feed-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 16px;
            gap: 8px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 2;
        }

        .feed-item:hover .feed-overlay {
            opacity: 1;
        }

        .feed-stats {
            font-size: 12px;
            color: var(--white);
            font-weight: 600;
        }

        .feed-book-btn {
            width: 100%;
            padding: 8px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .feed-book-btn:hover {
            background: var(--primary-dark);
        }

        /* ========== BOOKING STEPS ========== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 60px;
            width: 100%;
        }

        .step {
            text-align: center;
        }

        .step-num {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--primary) 0%, #E07552 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .step-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .step-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ========== DEAL CARD ========== */
        .deal-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            text-align: center;
        }

        .deal-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(196, 106, 74, 0.05));
        }

        .deal-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(196, 106, 74, 0.12);
            border-color: var(--primary);
        }

        .deal-badge {
            display: inline-block;
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: var(--white);
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .deal-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .deal-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .deal-time {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .deal-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .deal-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ========== PRODUCT CARD ========== */
        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(196, 106, 74, 0.12);
            border-color: var(--primary);
        }

        .product-image {
            width: 100%;
            height: 160px;
            background: linear-gradient(135deg, var(--secondary) 0%, #E07552 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .product-info {
            padding: 14px;
            text-align: center;
        }

        .product-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .product-price {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
        }

        /* ========== SECTIONS ========== */
        .section-light {
            background: var(--white);
        }

        .section-dark {
            background: var(--light-bg);
        }

        .section-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #E07552 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .section-primary::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section-primary .section-title {
            color: var(--white);
        }

        .section-primary .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .section-primary > .container {
            position: relative;
            z-index: 2;
        }

        /* ========== FINAL CTA ========== */
        .final-cta .section-title {
            font-size: 48px;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 16px 48px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 24px;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(196, 106, 74, 0.3);
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 40px 0;
            text-align: center;
            font-size: 12px;
            width: 100%;
        }

        footer a {
            color: var(--white);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }

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

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            section {
                padding: 80px 40px;
            }

            .navbar {
                padding: 0 40px;
            }

            .categories-container {
                padding: 0 40px;
            }

            .hero-content {
                padding: 0 40px;
            }

            .grid-3 {
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 30px;
            }

            .navbar {
                padding: 0 30px;
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo {
                flex-basis: 100%;
            }

            .nav-right {
                flex-basis: 100%;
                gap: 15px;
                justify-content: space-between;
            }

            .hero {
                height: 80vh;
                min-height: 600px;
            }

            .hero-content {
                padding: 100px 30px 0 30px;
            }

            .typing-text {
                font-size: 36px;
            }

            .hero-search {
                flex-direction: column;
                border-radius: 12px;
            }

            .search-input {
                width: 100%;
                padding: 14px;
                border-bottom: 1px solid var(--border);
            }

            .search-divider {
                display: none;
            }

            .search-btn {
                width: 100%;
                border-radius: 0 0 12px 12px;
                margin-top: -1px;
                height: auto;
                padding: 12px;
            }

            .categories-container {
                padding: 0 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .grid-3, .grid-4 {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 50px 20px;
            }

            .navbar {
                padding: 0 20px;
                flex-direction: column;
                gap: 12px;
                height: auto;
            }

            .logo {
                flex-basis: auto;
            }

            .nav-right {
                flex-basis: auto;
                width: 100%;
                flex-direction: column;
                justify-content: center;
            }

            .btn-list-business {
                width: 100%;
            }

            .auth-section {
                width: 100%;
                justify-content: center;
            }

            .hero {
                height: 70vh;
                min-height: 500px;
                padding-top: 60px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .typing-text {
                font-size: 24px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .section-title {
                font-size: 24px;
            }

            .grid-3, .grid-4, .grid-6 {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .categories-container {
                padding: 0 20px;
            }
        }