 body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --linen-white: #F9F9F6;
            --deep-olive: #7E8A77;
            --warm-gold: #D6B370;
            --charcoal-black: #2F2F2F;
            --matte-graphite: #4A4A4A;
        }

        html, body {
            height: 100%;
            font-family: 'Inter', sans-serif;
            background: var(--linen-white);
            color: var(--charcoal-black);
            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(--deep-olive), var(--warm-gold));
            z-index: 1000;
            transition: width 0.1s ease;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(249, 249, 246, 0.95);
            backdrop-filter: blur(20px);
            z-index: 999;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(126, 138, 119, 0.1);
        }

        .navbar.scrolled {
            background: rgba(249, 249, 246, 0.98);
            box-shadow: 0 4px 30px rgba(47, 47, 47, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--deep-olive);
            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(--charcoal-black);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--warm-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--deep-olive);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--charcoal-black);
            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(100% - 80px);
            background: rgba(249, 249, 246, 0.98);
            backdrop-filter: blur(20px);
            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(--charcoal-black);
            text-decoration: none;
            font-size: 1.5rem;
            margin: 20px 0;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .mobile-menu a:hover {
            color: var(--deep-olive);
        }

        .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(--deep-olive);
            background: transparent;
            color: var(--deep-olive);
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }

        .btn-signup {
            background: var(--deep-olive);
            color: var(--linen-white);
        }

        .btn-login:hover {
            background: var(--deep-olive);
            color: var(--linen-white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(126, 138, 119, 0.3);
        }

        .btn-signup:hover {
            background: var(--warm-gold);
            border-color: var(--warm-gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 179, 112, 0.3);
        }

        /* 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(--deep-olive), var(--warm-gold));
            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(--warm-gold);
            color: var(--warm-gold);
            border-radius: 20px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .logout-btn:hover {
            background: var(--warm-gold);
            color: white;
        }

        /* Hero Section */
        .hero {
            height: 100%;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            align-items: center;
            padding: 120px 50px 50px;
            max-width: 1400px;
            margin: 0 auto;
            gap: 60px;
            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.3" fill="%237E8A77" opacity="0.05"/><circle cx="80" cy="40" r="0.3" fill="%23D6B370" opacity="0.05"/><circle cx="40" cy="80" r="0.3" fill="%237E8A77" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.4;
            z-index: -1;
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 12s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 70%;
            right: 15%;
            animation-delay: 3s;
        }

        .floating-icon:nth-child(3) {
            bottom: 20%;
            left: 25%;
            animation-delay: 6s;
        }

        .floating-icon:nth-child(4) {
            top: 30%;
            right: 25%;
            animation-delay: 9s;
        }

        .hero-left {
            position: relative;
            z-index: 2;
        }

        .hero-left h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--charcoal-black);
            opacity: 0;
            animation: typewriter 2s ease 0.5s forwards;
        }

        .hero-left p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 40px;
            color: var(--charcoal-black);
            opacity: 0.8;
            opacity: 0;
            animation: fadeInUp 1s ease 1.5s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease 2s forwards;
        }

        .cta-primary, .cta-secondary {
            display: inline-block;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-primary {
            background: var(--matte-graphite);
            color: white;
            border: 2px solid var(--matte-graphite);
        }

        .cta-secondary {
            background: transparent;
            color: var(--deep-olive);
            border: 2px solid var(--deep-olive);
        }

        .cta-primary:hover {
            background: var(--warm-gold);
            border-color: var(--warm-gold);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(214, 179, 112, 0.4);
        }

        .cta-secondary:hover {
            background: var(--deep-olive);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(126, 138, 119, 0.4);
        }

        .hero-center {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .hero-image {
            width: 100%;
            max-width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(126, 138, 119, 0.1), rgba(214, 179, 112, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(47, 47, 47, 0.1);
            animation: parallaxFloat 8s ease-in-out infinite;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .hero-image::before {
            content: '🏠';
            font-size: 8rem;
            opacity: 0.3;
            position: absolute;
            z-index: 1;
        }

        .hero-right {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .marquee-container {
            background: rgba(126, 138, 119, 0.1);
            border-radius: 15px;
            padding: 30px 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(126, 138, 119, 0.2);
        }

        .marquee-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--deep-olive);
            margin-bottom: 15px;
            animation: marqueeSlide 3s ease-in-out infinite;
        }

        .trust-stats {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--charcoal-black);
            opacity: 0.7;
        }

        /* 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: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 30px;
            text-align: center;
            color: var(--charcoal-black);
            font-weight: 600;
        }

        .section p {
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            color: var(--charcoal-black);
            opacity: 0.8;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
            background: linear-gradient(135deg, rgba(249, 249, 246, 0.8), rgba(233, 220, 201, 0.3));
            padding: 60px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 60px rgba(47, 47, 47, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--charcoal-black);
            text-align: left;
            font-weight: 600;
        }

        .about-content p {
            text-align: left;
            margin-bottom: 30px;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background: rgba(30, 41, 59, 0.8);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--steel-gray);
            font-weight: 500;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: rgba(30, 41, 59, 0.8);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 212, 255, 0.3);
            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(--electric-cyan), var(--neon-purple));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
            background: rgba(30, 41, 59, 0.95);
            border-color: var(--electric-cyan);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
            animation: bounce 2s ease-in-out infinite;
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--pure-white);
            font-weight: 600;
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--steel-gray);
            margin-bottom: 25px;
        }

        .service-link {
            color: var(--electric-cyan);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link:hover {
            color: var(--neon-purple);
            gap: 15px;
        }

        .service-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .service-link:hover::after {
            transform: translateX(5px);
        }

        /* Portfolio Section */
        .portfolio-section {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 20, 25, 0.9));
            margin: 0 -50px;
            padding: 120px 50px;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        }

        .portfolio-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(47, 47, 47, 0.1);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(126, 138, 119, 0.8), rgba(214, 179, 112, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
        }

        .portfolio-title {
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            text-align: center;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 120px 50px;
            background: linear-gradient(135deg, rgba(126, 138, 119, 0.05), rgba(214, 179, 112, 0.05));
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-carousel {
            position: relative;
            margin-top: 60px;
        }

        .testimonial-item {
            display: none;
            padding: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(126, 138, 119, 0.1);
            box-shadow: 0 20px 60px rgba(47, 47, 47, 0.1);
            animation: fadeIn 0.5s ease;
        }

        .testimonial-item.active {
            display: block;
        }

        .testimonial-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--charcoal-black);
            line-height: 1.6;
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--deep-olive);
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
        }

        .star {
            color: var(--warm-gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .star:hover {
            transform: scale(1.2);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(126, 138, 119, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--deep-olive);
            transform: scale(1.3);
        }

        /* Why Choose Us Section */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .why-item {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(126, 138, 119, 0.1);
            transition: all 0.3s ease;
        }

        .why-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(126, 138, 119, 0.2);
        }

        .why-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            animation: bounce 2s ease-in-out infinite;
        }

        .why-item h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--charcoal-black);
            font-weight: 600;
        }

        .why-item p {
            font-size: 0.95rem;
            color: var(--charcoal-black);
            opacity: 0.8;
            margin: 0;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, rgba(233, 220, 201, 0.4), rgba(249, 249, 246, 0.9));
            margin: 0 -50px;
            padding: 120px 50px;
            position: relative;
        }

        .contact-section::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="arch" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,0 Q50,25 25,50 Q0,25 25,0" fill="none" stroke="%237E8A77" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23arch)"/></svg>') repeat;
            opacity: 0.3;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 50px;
            border-radius: 25px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(126, 138, 119, 0.2);
            box-shadow: 0 25px 60px rgba(47, 47, 47, 0.1);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--charcoal-black);
            font-family: 'Poppins', sans-serif;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(126, 138, 119, 0.2);
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(249, 249, 246, 0.8);
            font-family: 'Inter', sans-serif;
            color: var(--charcoal-black);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--deep-olive);
            box-shadow: 0 0 0 3px rgba(126, 138, 119, 0.1);
            background: rgba(255, 255, 255, 0.9);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--matte-graphite);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: var(--warm-gold);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(214, 179, 112, 0.4);
        }

        .submit-btn::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.3s ease;
        }

        .submit-btn:active::before {
            width: 300px;
            height: 300px;
        }

        .contact-info {
            padding: 20px 0;
        }

        .contact-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--charcoal-black);
            font-weight: 600;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(126, 138, 119, 0.1);
            transition: transform 0.3s ease;
        }

        .contact-detail:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--deep-olive), var(--warm-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .contact-text strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--charcoal-black);
        }

        .contact-text {
            color: var(--charcoal-black);
            opacity: 0.8;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--deep-olive), var(--charcoal-black));
            color: var(--linen-white);
            padding: 80px 50px 40px;
            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="%23D6B370"/><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="%23D6B370"/><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="%23D6B370"/></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: 'Poppins', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--warm-gold);
            font-weight: 600;
        }

        .footer-section a {
            color: var(--linen-white);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            opacity: 0.8;
            position: relative;
            padding-left: 0;
        }

        .footer-section a:hover {
            color: var(--warm-gold);
            opacity: 1;
            padding-left: 10px;
        }

        .footer-section a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--warm-gold);
            transition: width 0.3s ease;
        }

        .footer-section a:hover::before {
            width: 8px;
        }

        .newsletter-section {
            background: rgba(214, 179, 112, 0.1);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(214, 179, 112, 0.2);
        }

        .newsletter-section h3 {
            margin-bottom: 15px;
            color: var(--warm-gold);
        }

        .newsletter-section p {
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 12px 20px;
            border: 2px solid rgba(214, 179, 112, 0.3);
            border-radius: 25px;
            background: rgba(249, 249, 246, 0.9);
            color: var(--charcoal-black);
            font-size: 14px;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--warm-gold);
        }

        .newsletter-btn {
            padding: 12px 25px;
            background: var(--warm-gold);
            color: var(--charcoal-black);
            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(--linen-white);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(214, 179, 112, 0.3);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            color: var(--warm-gold);
        }

        /* Hero Slideshow */
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 0.3;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 20, 25, 0.6));
        }

        .slideshow-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slide-dot.active {
            background: var(--electric-cyan);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Privacy and Terms Modal */
        .legal-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .legal-modal.active {
            display: flex;
        }

        .legal-content {
            background: rgba(249, 249, 246, 0.98);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 80px rgba(47, 47, 47, 0.3);
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .legal-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: var(--charcoal-black);
            text-align: center;
            background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .legal-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--charcoal-black);
            font-weight: 600;
        }

        .legal-content p, .legal-content li {
            line-height: 1.7;
            margin-bottom: 15px;
            color: var(--charcoal-black);
        }

        .legal-content ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .close-legal {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--charcoal-black);
            transition: color 0.3s ease;
        }

        .close-legal:hover {
            color: var(--electric-cyan);
        }

        /* Service Details Modal */
        .service-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .service-modal.active {
            display: flex;
        }

        .service-content {
            background: rgba(249, 249, 246, 0.98);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 25px;
            width: 90%;
            max-width: 900px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 80px rgba(47, 47, 47, 0.3);
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .service-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--charcoal-black);
            text-align: center;
            background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-content .service-icon-large {
            font-size: 4rem;
            text-align: center;
            display: block;
            margin-bottom: 30px;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .feature-item {
            background: rgba(30, 41, 59, 0.1);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .feature-item h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--charcoal-black);
            font-weight: 600;
        }

        .pricing-section {
            background: rgba(0, 212, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .pricing-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--charcoal-black);
        }

        .close-service {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--charcoal-black);
            transition: color 0.3s ease;
        }

        .close-service:hover {
            color: var(--electric-cyan);
        }

        /* Subscription Management */
        .subscription-status {
            background: rgba(0, 212, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .subscription-status.subscribed {
            background: rgba(126, 138, 119, 0.1);
            border-color: rgba(126, 138, 119, 0.3);
        }

        .unsubscribe-btn {
            background: transparent;
            border: 2px solid var(--warm-gold);
            color: var(--warm-gold);
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .unsubscribe-btn:hover {
            background: var(--warm-gold);
            color: var(--charcoal-black);
        }

        /* Auth Modal */
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(47, 47, 47, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(10px);
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 25px;
            width: 90%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 25px 80px rgba(47, 47, 47, 0.3);
            border: 1px solid rgba(126, 138, 119, 0.2);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--charcoal-black);
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--deep-olive);
        }

        .auth-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 35px;
            color: var(--charcoal-black);
            font-weight: 600;
        }

        .auth-switch {
            text-align: center;
            margin-top: 25px;
        }

        .auth-switch a {
            color: var(--deep-olive);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .auth-switch a:hover {
            color: var(--warm-gold);
        }

        /* Chat Button */
        .chat-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--deep-olive), var(--warm-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 15px 40px rgba(126, 138, 119, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .chat-button:hover {
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes typewriter {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @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(-25px) rotate(10deg); }
        }

        @keyframes parallaxFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes marqueeSlide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes pulse {
            0% { box-shadow: 0 15px 40px rgba(126, 138, 119, 0.4); }
            50% { box-shadow: 0 15px 40px rgba(126, 138, 119, 0.7); }
            100% { box-shadow: 0 15px 40px rgba(126, 138, 119, 0.4); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-links, .auth-buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 100px 20px 50px;
                text-align: center;
            }

            .hero-left h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .section {
                padding: 80px 20px;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 20px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-grid,
            .portfolio-grid,
            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .portfolio-section,
            .contact-section {
                margin: 0 -20px;
                padding: 80px 20px;
            }

            .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;
            }
        }
