body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --soft-ivory: #FAF9F6;
            --calm-sage: #A3B8A0;
            --warm-beige: #E9DCC9;
            --deep-charcoal: #2E2E2E;
            --accent-blush: #E6B8A2;
        }

        html, body {
            height: 100%;
            font-family: 'Inter', sans-serif;
            background: var(--soft-ivory);
            color: var(--deep-charcoal);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--calm-sage), var(--accent-blush));
            z-index: 1000;
            transition: width 0.1s ease;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(250, 249, 246, 0.95);
            backdrop-filter: blur(15px);
            z-index: 999;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(163, 184, 160, 0.1);
        }

        .navbar.scrolled {
            background: rgba(250, 249, 246, 0.98);
            box-shadow: 0 2px 20px rgba(46, 46, 46, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--deep-charcoal);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo::before {
            content: '🤗';
            font-size: 24px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--deep-charcoal);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--calm-sage);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--calm-sage);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--deep-charcoal);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(250, 249, 246, 0.98);
            backdrop-filter: blur(15px);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 50px;
            z-index: 998;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: var(--deep-charcoal);
            text-decoration: none;
            font-size: 1.5rem;
            margin: 20px 0;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .mobile-menu a:hover {
            color: var(--calm-sage);
        }

        .mobile-auth-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-login, .btn-signup {
            padding: 12px 25px;
            border: 2px solid var(--calm-sage);
            background: transparent;
            color: var(--calm-sage);
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }

        .btn-signup {
            background: var(--calm-sage);
            color: var(--soft-ivory);
        }

        .btn-login:hover {
            background: var(--calm-sage);
            color: var(--soft-ivory);
            transform: translateY(-2px);
        }

        .btn-signup:hover {
            background: transparent;
            color: var(--calm-sage);
            transform: translateY(-2px);
        }

        /* User Profile */
        .user-profile {
            display: none;
            align-items: center;
            gap: 15px;
        }

        .user-profile.active {
            display: flex;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--calm-sage), var(--accent-blush));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .logout-btn {
            padding: 8px 20px;
            background: transparent;
            border: 1px solid var(--accent-blush);
            color: var(--accent-blush);
            border-radius: 20px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .logout-btn:hover {
            background: var(--accent-blush);
            color: white;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--soft-ivory) 0%, var(--warm-beige) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23A3B8A0" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23E6B8A2" opacity="0.1"/><circle cx="40" cy="80" r="0.5" fill="%23A3B8A0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        .floating-icon:nth-child(4) {
            top: 40%;
            right: 30%;
            animation-delay: 6s;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
            color: var(--deep-charcoal);
        }

        .hero p {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 50px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
            color: var(--deep-charcoal);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        .cta-primary, .cta-secondary {
            display: inline-block;
            padding: 18px 35px;
            text-decoration: none;
            border-radius: 35px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-primary {
            background: var(--calm-sage);
            color: white;
        }

        .cta-secondary {
            background: transparent;
            color: var(--calm-sage);
            border: 2px solid var(--calm-sage);
        }

        .cta-primary:hover, .cta-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(163, 184, 160, 0.3);
        }

        .cta-secondary:hover {
            background: var(--calm-sage);
            color: white;
        }

        /* Sections */
        .section {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 30px;
            text-align: center;
            color: var(--deep-charcoal);
        }

        .section p {
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            color: var(--deep-charcoal);
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            height: 400px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease;
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: scale(1.05);
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        .about-image:nth-child(1) {
            grid-row: 1 / 3;
        }

        .about-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--deep-charcoal);
            text-align: left;
        }

        .about-content p {
            text-align: left;
            margin-bottom: 30px;
        }

        .care-values {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .care-value {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(163, 184, 160, 0.1);
            transition: transform 0.3s ease;
        }

        .care-value:hover {
            transform: translateY(-5px);
        }

        .care-value-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .care-value h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--deep-charcoal);
            font-weight: 600;
        }

        .care-value p {
            font-size: 0.95rem;
            color: var(--deep-charcoal);
            opacity: 0.8;
            margin: 0;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(163, 184, 160, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--calm-sage), var(--accent-blush));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(163, 184, 160, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--deep-charcoal);
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--deep-charcoal);
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .service-link {
            color: var(--calm-sage);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* Stories Section */
        .stories-section {
            background: var(--warm-beige);
            margin: 0 -50px;
            padding: 120px 50px;
        }

        .stories-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .stories-scroll {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
        }

        .stories-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .stories-scroll::-webkit-scrollbar-track {
            background: rgba(163, 184, 160, 0.1);
            border-radius: 4px;
        }

        .stories-scroll::-webkit-scrollbar-thumb {
            background: var(--calm-sage);
            border-radius: 4px;
        }

        .story-card {
            min-width: 350px;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(46, 46, 46, 0.1);
            text-align: center;
        }

        .story-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--calm-sage);
        }

        .story-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-quote {
            font-family: 'Italiana', serif;
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--deep-charcoal);
            line-height: 1.6;
        }

        .story-author {
            font-weight: 600;
            color: var(--calm-sage);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-member {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
            border: 4px solid var(--calm-sage);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-avatar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(230, 184, 162, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .team-member:hover .team-avatar::before {
            opacity: 1;
        }

        .team-member:hover .team-avatar img {
            transform: scale(1.1);
        }

        .team-member h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--deep-charcoal);
            font-weight: 600;
        }

        .team-member .role {
            color: var(--calm-sage);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .team-member p {
            font-size: 0.9rem;
            color: var(--deep-charcoal);
            opacity: 0.8;
            margin: 0;
        }

        /* Testimonials */
        .testimonials-section {
            background: var(--warm-beige);
            margin: 0 -50px;
            padding: 120px 50px;
        }

        .testimonial-carousel {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .testimonial-item {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-item.active {
            display: block;
        }

        .testimonial-quote {
            font-family: 'Italiana', serif;
            font-size: 1.8rem;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--deep-charcoal);
            line-height: 1.5;
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--calm-sage);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(163, 184, 160, 0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--calm-sage);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-top: 60px;
        }

        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(163, 184, 160, 0.1);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--deep-charcoal);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--warm-beige);
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--soft-ivory);
            font-family: 'Inter', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--calm-sage);
            box-shadow: 0 0 0 3px rgba(163, 184, 160, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--calm-sage);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--accent-blush);
            transform: translateY(-2px);
        }

        .contact-info {
            padding: 20px 0;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--deep-charcoal);
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(163, 184, 160, 0.1);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--calm-sage), var(--accent-blush));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--deep-charcoal);
            color: var(--soft-ivory);
            padding: 80px 50px 40px;
            margin-top: 120px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23A3B8A0"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23A3B8A0"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23A3B8A0"/></svg>') no-repeat center top;
            background-size: cover;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--accent-blush);
        }

        .footer-section a {
            color: var(--soft-ivory);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            opacity: 0.8;
        }

        .footer-section a:hover {
            color: var(--calm-sage);
            opacity: 1;
        }

        .newsletter-section {
            background: rgba(163, 184, 160, 0.1);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
        }

        .newsletter-section h3 {
            margin-bottom: 15px;
            color: var(--accent-blush);
        }

        .newsletter-section p {
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 400px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 12px 20px;
            border: 2px solid rgba(163, 184, 160, 0.3);
            border-radius: 25px;
            background: rgba(250, 249, 246, 0.9);
            color: var(--deep-charcoal);
            font-size: 14px;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--calm-sage);
        }

        .newsletter-btn {
            padding: 12px 25px;
            background: var(--calm-sage);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: var(--accent-blush);
            transform: translateY(-2px);
        }

        .newsletter-btn.unsubscribe {
            background: transparent;
            color: var(--accent-blush);
            border: 2px solid var(--accent-blush);
        }

        .newsletter-btn.unsubscribe:hover {
            background: var(--accent-blush);
            color: white;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(163, 184, 160, 0.3);
            font-family: 'Italiana', serif;
            font-size: 1.1rem;
            color: var(--calm-sage);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--calm-sage);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-blush);
        }

        /* Auth Modal */
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(46, 46, 46, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-content {
            background: white;
            padding: 50px;
            border-radius: 25px;
            width: 90%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 20px 60px rgba(46, 46, 46, 0.3);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--deep-charcoal);
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--calm-sage);
        }

        .auth-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 35px;
            color: var(--deep-charcoal);
        }

        .auth-switch {
            text-align: center;
            margin-top: 25px;
        }

        .auth-switch a {
            color: var(--calm-sage);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .auth-switch a:hover {
            color: var(--accent-blush);
        }

        /* Chat Button */
        .chat-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--calm-sage), var(--accent-blush));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(163, 184, 160, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .chat-button:hover {
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes pulse {
            0% { box-shadow: 0 10px 30px rgba(163, 184, 160, 0.3); }
            50% { box-shadow: 0 10px 30px rgba(163, 184, 160, 0.6); }
            100% { box-shadow: 0 10px 30px rgba(163, 184, 160, 0.3); }
        }

        /* Privacy/Terms Modal */
        .privacy-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(46, 46, 46, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .privacy-modal.active {
            display: flex;
        }

        .privacy-content {
            background: white;
            padding: 40px;
            border-radius: 25px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(46, 46, 46, 0.3);
        }

        .privacy-content h2 {
            font-family: 'Playfair Display', serif;
            color: var(--deep-charcoal);
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .privacy-content h3 {
            color: var(--calm-sage);
            margin: 25px 0 15px;
            font-size: 1.3rem;
        }

        .privacy-content p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: var(--deep-charcoal);
        }

        .privacy-content ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .privacy-content li {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-links, .auth-buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section {
                padding: 80px 20px;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-images {
                height: 300px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stories-section,
            .testimonials-section {
                margin: 0 -20px;
                padding: 80px 20px;
            }

            .story-card {
                min-width: 280px;
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .footer {
                padding: 60px 20px 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .auth-content {
                padding: 40px 30px;
            }

            .chat-button {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
    