 @font-face {
            font-family: 'Monami';
            src: url('https://fonts.cdnfonts.com/css/monami');
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #4a154b;
            --accent: #e3652f;
            --text: #000000;
            --neutral: #f2e6d8;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
        }
        
        /* Background with fixed position */
        .hero-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            background: linear-gradient(135deg, 
                rgba(74, 21, 75, 0.9) 0%, 
                rgba(227, 101, 47, 0.7) 50%, 
                rgba(242, 230, 216, 0.8) 100%);
        }
        
        .hero-bg::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(227, 101, 47, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 21, 75, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(242, 230, 216, 0.4) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(1deg); }
            66% { transform: translateY(20px) rotate(-1deg); }
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(74, 21, 75, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Monami', cursive;
            font-size: 2rem;
            color: var(--primary);
            text-decoration: none;
            position: relative;
            font-weight: bold;
        }
        
        .logo::after {
            content: '✨';
            position: absolute;
            top: -5px;
            right: -25px;
            font-size: 1rem;
            animation: sparkle 2s ease-in-out infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.7; transform: scale(1.2) rotate(180deg); }
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .book-btn {
            background: var(--accent);
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(227, 101, 47, 0.3);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(227, 101, 47, 0.4);
            background: white;
            color: var(--accent) !important;
            border: 2px solid var(--accent);
        }
        
        .book-btn::after {
            display: none;
        }
        
        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 2rem;
            position: relative;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content::before {
            content: '🌸';
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 4rem;
            opacity: 0.3;
            animation: rotate 10s linear infinite;
        }
        
        .hero-content::after {
            content: '💫';
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 4rem;
            opacity: 0.3;
            animation: rotate -10s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        h1 {
            font-family: 'Monami', cursive;
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: var(--text);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(74, 21, 75, 0.3);
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 21, 75, 0.4);
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 21, 75, 0.3);
        }
        
        /* Decorative elements */
        .curl-decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 3px solid var(--accent);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .curl-1 {
            top: 10%;
            left: 5%;
            animation: float 15s ease-in-out infinite;
        }
        
        .curl-2 {
            bottom: 10%;
            right: 5%;
            width: 150px;
            height: 150px;
            animation: float 20s ease-in-out infinite reverse;
        }
        
        .curl-3 {
            top: 50%;
            right: 10%;
            width: 80px;
            height: 80px;
            border-color: var(--primary);
            animation: float 18s ease-in-out infinite;
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            margin-top: 2rem;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image-container {
            position: relative;
            width: 400px;
            height: 500px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 200px 200px 200px 200px / 300px 300px 200px 200px;
            padding: 5px;
            animation: blob 8s ease-in-out infinite;
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.3);
        }

        @keyframes blob {
            0%, 100% { 
                border-radius: 200px 200px 200px 200px / 300px 300px 200px 200px;
                transform: rotate(0deg);
            }
            33% { 
                border-radius: 200px 250px 250px 200px / 250px 200px 250px 300px;
                transform: rotate(2deg);
            }
            66% { 
                border-radius: 250px 200px 200px 250px / 300px 250px 200px 250px;
                transform: rotate(-2deg);
            }
        }

        .about-image {
            width: 100%;
            height: 100%;
            background: var(--neutral);
            border-radius: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '👩🏾‍🦱';
            position: absolute;
            animation: bounce 3s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .float-heart {
            position: absolute;
            font-size: 2rem;
            animation: floatHeart 6s ease-in-out infinite;
        }

        .float-heart:nth-child(1) {
            top: 10%;
            left: -50px;
            animation-delay: 0s;
        }

        .float-heart:nth-child(2) {
            top: 70%;
            right: -50px;
            animation-delay: 2s;
        }

        .float-heart:nth-child(3) {
            bottom: 20%;
            left: -30px;
            animation-delay: 4s;
        }

        @keyframes floatHeart {
            0% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateX(100px) translateY(-30px) rotate(45deg); opacity: 0; }
        }

        .about-content {
            position: relative;
        }

        .section-title {
            font-family: 'Monami', cursive;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '💕';
            position: absolute;
            top: -10px;
            right: -40px;
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .stylist-name {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .about-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(242, 230, 216, 0.5);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            background: rgba(242, 230, 216, 0.8);
            box-shadow: 0 5px 20px rgba(227, 101, 47, 0.2);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text h4 {
            color: var(--primary);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .feature-text p {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .experience-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            margin-top: 1rem;
            box-shadow: 0 5px 20px rgba(227, 101, 47, 0.3);
        }

        .la-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: var(--primary);
            padding: 0.5rem 1rem;
            border: 2px solid var(--primary);
            border-radius: 20px;
            font-size: 0.9rem;
            margin-left: 1rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: rgba(242, 230, 216, 0.3);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '✂️';
            position: absolute;
            top: 50px;
            right: 10%;
            font-size: 5rem;
            opacity: 0.1;
            transform: rotate(-15deg);
        }

        .services::after {
            content: '💇🏾‍♀️';
            position: absolute;
            bottom: 50px;
            left: 10%;
            font-size: 5rem;
            opacity: 0.1;
            transform: rotate(15deg);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-header .section-title {
            margin-bottom: 1rem;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(74, 21, 75, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .service-name {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 600;
            position: relative;
        }

        .service-price {
            font-size: 1.3rem;
            color: var(--accent);
            font-weight: 700;
            position: relative;
        }

        .service-price::before {
            content: 'from';
            font-size: 0.8rem;
            font-weight: 400;
            position: absolute;
            top: -15px;
            left: 0;
            color: var(--text);
            opacity: 0.7;
        }

        .service-duration {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(242, 230, 216, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .service-duration::before {
            content: '⏱️';
        }

        .service-description {
            color: var(--text);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .service-icons {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            opacity: 0.1;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            position: relative;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
        }

        .filter-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .filter-btn:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(74, 21, 75, 0.3);
        }

        .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        .filter-btn.active::before {
            display: none;
        }

        .filter-btn span {
            position: relative;
            z-index: 1;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(74, 21, 75, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 350px;
            display: none;
        }

        .gallery-item.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.2);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            background: var(--neutral);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
        }

        .gallery-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(74, 21, 75, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-image::after {
            opacity: 1;
        }

        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 1;
        }

        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }

        .gallery-style {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .gallery-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Policy Section */
        .policy {
            padding: 5rem 2rem;
            background: rgba(242, 230, 216, 0.3);
            position: relative;
            overflow: hidden;
        }

        .policy::before {
            content: '📋';
            position: absolute;
            top: 50px;
            left: 5%;
            font-size: 5rem;
            opacity: 0.05;
            transform: rotate(-15deg);
        }

        .policy::after {
            content: '✍️';
            position: absolute;
            bottom: 50px;
            right: 5%;
            font-size: 5rem;
            opacity: 0.05;
            transform: rotate(15deg);
        }

        .policy-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .policy-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .policy-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
        }

        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .policy-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(74, 21, 75, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.15);
            border: 2px solid var(--accent);
        }

        .policy-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(74, 21, 75, 0.2);
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .policy-title {
            font-size: 1.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .policy-content {
            color: var(--text);
        }

        .policy-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .policy-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .policy-list li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .policy-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 1.5rem;
        }

        .policy-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .policy-note {
            background: var(--neutral);
            border-radius: 15px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .note-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .policy-note p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.5;
        }

        .policy-footer {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(74, 21, 75, 0.05), rgba(227, 101, 47, 0.05));
            border-radius: 25px;
        }

        .policy-footer-text {
            font-size: 1.1rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .footer-icon {
            font-size: 2rem;
        }

        /* Thank You Section */
        .thank-you {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(74, 21, 75, 0.05), rgba(227, 101, 47, 0.05));
            position: relative;
            overflow: hidden;
        }

        .thank-you::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(227, 101, 47, 0.1) 0%, transparent 70%);
            top: -150px;
            right: -150px;
            animation: float 20s ease-in-out infinite;
        }

        .thank-you::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(74, 21, 75, 0.1) 0%, transparent 70%);
            bottom: -125px;
            left: -125px;
            animation: float 25s ease-in-out infinite reverse;
        }

        .thank-you-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .thank-you-content {
            text-align: center;
            background: white;
            padding: 4rem 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.1);
        }

        .thank-you-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: bounce 3s ease-in-out infinite;
        }

        .thank-you-message {
            font-size: 1.2rem;
            color: var(--text);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .thank-you-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .thank-feature {
            text-align: center;
        }

        .feature-emoji {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .thank-feature p {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 1.25rem 3rem;
            border-radius: 35px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(74, 21, 75, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
        }

        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(74, 21, 75, 0.4);
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .button-sparkle {
            font-size: 1.5rem;
            animation: sparkle 2s ease-in-out infinite;
        }

        .thank-you-note {
            margin-top: 1.5rem;
            color: var(--accent);
            font-style: italic;
            font-size: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            position: relative;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            color: var(--accent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(74, 21, 75, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(74, 21, 75, 0.15);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .contact-card:hover::before {
            opacity: 0.05;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--neutral);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-info {
            color: var(--text);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .contact-info a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .contact-hours,
        .contact-response {
            font-size: 0.95rem;
            color: var(--text);
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Social Media Section */
        .social-section {
            text-align: center;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(242, 230, 216, 0.5), rgba(242, 230, 216, 0.3));
            border-radius: 30px;
        }

        .social-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem 2rem;
            background: white;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(74, 21, 75, 0.1);
            min-width: 150px;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(74, 21, 75, 0.2);
        }

        .social-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .social-name {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .social-handle {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.7;
        }

        .social-link.tiktok:hover {
            background: linear-gradient(135deg, #ff0050, #00f2ea);
            color: white;
        }

        .social-link.tiktok:hover .social-name,
        .social-link.tiktok:hover .social-handle {
            color: white;
        }

        .social-link.instagram:hover {
            background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: white;
        }

        .social-link.instagram:hover .social-name,
        .social-link.instagram:hover .social-handle {
            color: white;
        }

        .social-link.facebook:hover {
            background: #1877f2;
            color: white;
        }

        .social-link.facebook:hover .social-name,
        .social-link.facebook:hover .social-handle {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-content {
                padding: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image-container {
                width: 300px;
                height: 400px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .la-badge {
                display: block;
                margin: 1rem 0 0 0;
                text-align: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-header {
                flex-direction: column;
                gap: 0.5rem;
            }

            .service-price::before {
                position: static;
                margin-right: 0.3rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .filter-buttons {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }

            .policy-grid {
                grid-template-columns: 1fr;
            }

            .policy-card {
                padding: 2rem;
            }

            .policy-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .policy-title {
                font-size: 1.3rem;
            }

            .policy-footer-text {
                flex-direction: column;
                gap: 0.5rem;
            }

            .thank-you-content {
                padding: 3rem 2rem;
            }

            .thank-you-features {
                gap: 2rem;
            }

            .cta-button {
                font-size: 1.1rem;
                padding: 1rem 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .social-link {
                width: 100%;
                max-width: 300px;
            }
        }


/* Footer Section */
.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    animation: gradientSlide 10s ease-in-out infinite;
}

@keyframes gradientSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(100px); }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    font-family: 'Monami', cursive;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-logo::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -30px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.footer-tagline {
    color: var(--neutral);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-icon:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-heading {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--accent);
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neutral);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column a {
        display: inline-block;
    }
    
    .footer-column a:hover {
        padding-left: 0;
    }
    
    .footer-column a::before {
        display: none;
    }
}