/*
Theme Name: Twenty Twenty Five Child
Template: twentytwentyfive
Version: 1.0
*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-navy: #1e3a5f;
            --color-navy-dark: #152a45;
            --color-orange: #ff7733;
            --color-orange-light: #ff9966;
            --color-gold: #d4a574;
            --color-white: #ffffff;
            --color-light-bg: #f8f9fa;
            --color-text: #2c2c2c;
            --color-text-light: #666666;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(30, 58, 95, 0.1);
        }

        header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            color: var(--color-navy);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-orange);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--color-orange);
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
            color: var(--color-white) !important;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(255, 119, 51, 0.3);
            transition: all 0.3s ease;
        }

        .cta-btn::after {
            display: none;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 119, 51, 0.4);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--color-navy);
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(21, 42, 69, 0.85) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%231e3a5f" width="1920" height="1080"/><circle fill="%23ff7733" opacity="0.08" cx="400" cy="300" r="350"/><circle fill="%23ff7733" opacity="0.05" cx="1500" cy="700" r="500"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, rgba(30, 58, 95, 0.8), transparent);
        }

        .hero-content {
            text-align: center;
            color: var(--color-white);
            max-width: 1000px;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(255, 119, 51, 0.2);
            border: 1px solid var(--color-orange);
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeIn 1s ease-out 0.2s backwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            animation: fadeIn 1s ease-out 0.4s backwards;
        }

        .hero h1 span {
            color: var(--color-orange);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: 1px;
            animation: fadeIn 1s ease-out 0.6s backwards;
        }

        .hero-location {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            animation: fadeIn 1s ease-out 0.8s backwards;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            animation: fadeIn 1s ease-out 1s backwards;
        }

        .hero-feature {
            text-align: center;
        }

        .hero-feature-value {
            font-size: 2rem;
            font-weight: 600;
            color: var(--color-orange);
            display: block;
        }

        .hero-feature-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: fadeIn 1s ease-out 1.2s backwards;
        }

        .hero-cta {
            padding: 1.2rem 3rem;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
        }

        .hero-cta.primary {
            background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
            color: var(--color-white);
            box-shadow: 0 8px 25px rgba(255, 119, 51, 0.4);
        }

        .hero-cta.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 119, 51, 0.5);
        }

        .hero-cta.secondary {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
        }

        .hero-cta.secondary:hover {
            background: var(--color-white);
            color: var(--color-navy);
        }

        /* Section Common Styles */
        section {
            padding: 7rem 3rem;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(255, 119, 51, 0.1);
            color: var(--color-orange);
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-light);
            line-height: 1.8;
        }

        /* Overview Section */
        #overview {
            background: var(--color-white);
        }

        .overview-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .overview-content h3 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--color-navy);
            margin-bottom: 1.5rem;
        }

        .overview-content p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--color-text-light);
            margin-bottom: 1.5rem;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            padding: 2rem;
            background: var(--color-light-bg);
            border-left: 4px solid var(--color-orange);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateX(10px);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-navy);
            display: block;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--color-text-light);
            margin-top: 0.5rem;
        }

        .overview-image {
            height: 600px;
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(30, 58, 95, 0.3);
        }

        .overview-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            border: 2px solid rgba(255, 119, 51, 0.3);
            border-radius: 8px;
        }

        .overview-image::after {
            content: 'MAX ESTATE 105';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-heading);
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.1);
            letter-spacing: 5px;
            font-weight: 700;
        }

        /* Highlights Section */
        #highlights {
            background: var(--color-light-bg);
        }

        .highlights-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .highlight-card {
            background: var(--color-white);
            padding: 3rem 2.5rem;
            border-radius: 8px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .highlight-card:hover::before {
            transform: scaleX(1);
        }

        .highlight-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(255, 119, 51, 0.3);
        }

        .highlight-icon::before {
            content: '⬡';
            font-size: 2rem;
            color: var(--color-white);
        }

        .highlight-card h4 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            color: var(--color-navy);
            margin-bottom: 1rem;
        }

        .highlight-card p {
            color: var(--color-text-light);
            line-height: 1.8;
        }

        /* Pricing Section */
        #pricing {
            background: var(--color-navy);
            color: var(--color-white);
            position: relative;
            overflow: hidden;
        }

        #pricing::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 119, 51, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        #pricing .section-badge {
            background: rgba(255, 119, 51, 0.2);
        }

        #pricing .section-title,
        #pricing .section-subtitle {
            color: var(--color-white);
        }

        .pricing-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 3rem;
            transition: all 0.4s ease;
        }

        .pricing-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--color-orange);
            transform: translateY(-5px);
        }

        .pricing-card h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--color-orange);
        }

        .price-tag {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: var(--font-heading);
        }

        .price-details {
            opacity: 0.8;
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .price-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .price-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .price-features li::before {
            content: '✓';
            color: var(--color-orange);
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .price-cta {
            width: 100%;
            padding: 1rem;
            background: var(--color-orange);
            color: var(--color-white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .price-cta:hover {
            background: var(--color-orange-light);
            transform: translateY(-2px);
        }

        .pricing-note {
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Location Section */
        #location {
            background: var(--color-white);
        }

        .location-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .connectivity-list {
            list-style: none;
        }

        .connectivity-item {
            padding: 1.5rem;
            background: var(--color-light-bg);
            margin-bottom: 1rem;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .connectivity-item:hover {
            background: var(--color-white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transform: translateX(10px);
        }

        .connectivity-name {
            font-weight: 500;
            color: var(--color-navy);
            display: flex;
            align-items: center;
        }

        .connectivity-name::before {
            content: '📍';
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .connectivity-time {
            font-weight: 600;
            color: var(--color-orange);
            font-size: 1.1rem;
        }

        .location-map {
            height: 500px;
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(30, 58, 95, 0.3);
        }

        .location-map::before {
            content: 'SECTOR 105, NOIDA';
            font-family: var(--font-heading);
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.15);
            letter-spacing: 3px;
            font-weight: 700;
            text-align: center;
        }

        /* Amenities Section */
        #amenities {
            background: var(--color-light-bg);
        }

        .amenities-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .amenity-card {
            background: var(--color-white);
            padding: 2.5rem 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .amenity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .amenity-card::before {
            content: '◆';
            display: block;
            font-size: 2rem;
            color: var(--color-orange);
            margin-bottom: 1rem;
        }

        .amenity-card p {
            color: var(--color-navy);
            font-weight: 500;
        }

        /* Contact Section */
        #contact {
            background: var(--color-white);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            background: var(--color-light-bg);
            padding: 4rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 500;
            color: var(--color-navy);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--color-white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-orange);
            box-shadow: 0 0 0 3px rgba(255, 119, 51, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
            color: var(--color-white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 119, 51, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 119, 51, 0.4);
        }

        .rera-disclaimer {
            margin-top: 2.5rem;
            padding: 2rem;
            background: rgba(255, 119, 51, 0.05);
            border-left: 4px solid var(--color-orange);
            border-radius: 4px;
            font-size: 0.85rem;
            line-height: 1.7;
            color: var(--color-text-light);
        }

        .rera-disclaimer strong {
            color: var(--color-navy);
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--color-navy-dark);
            color: var(--color-white);
            padding: 4rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-about img {
            height: 50px;
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--color-orange);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--color-orange);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header-container {
                padding: 1rem 2rem;
            }

            section {
                padding: 5rem 2rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .overview-grid,
            .location-grid,
            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 75px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 75px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.3s ease;
                padding: 2rem;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 1.5rem;
                height: auto;
            }

            .hero {
                height: auto;
                min-height: 100vh;
                padding: 8rem 1.5rem 4rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-features {
                flex-direction: column;
                gap: 1.5rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                height: 45px;
            }

            section {
                padding: 3rem 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }