﻿/* ============================================
   COMMON BRAND VARIABLES
   ============================================ */

/* Extracting Brand Colors from Logo */
        :root {
            --brand-blue: #0b3fa8;    /* From "REAL" */
            --brand-pink: #d9166a;    /* From "ESTATE" */
            --brand-green: #37a837;   /* From "CONSULTANCY" */
            --brand-orange: #f28b00;  /* From "INVEST" */
            --text-dark: #333333;
            --bg-light: #ffffff;
        }

/* ============================================
   BODY / STICKY HEADER SUPPORT
   ============================================ */

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /* Padding top added so content doesn't hide behind the sticky header */
            padding-top: 100px; 
        }

/* ============================================
   HEADER CSS
   Includes Desktop + Responsive
   ============================================ */

/* Sticky Navbar Styling */
        .custom-navbar {
            background-color: var(--bg-light);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-bottom: 3px solid var(--brand-blue);
            transition: all 0.3s ease;
        }

        /* Logo Sizing */
        .navbar-brand img {
            max-height: 70px;
            width: auto;
            transition: 0.3s ease;
        }

        /* Navigation Links */
        .navbar-nav .nav-link {
            color: var(--brand-blue);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            padding: 10px 15px;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover, 
        .navbar-nav .nav-link:focus, 
        .navbar-nav .nav-link.active {
            color: var(--brand-pink);
        }

        /* Dropdown Styling */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 3px solid var(--brand-green);
            border-radius: 0 0 8px 8px;
        }
        .dropdown-item {
            font-weight: 500;
            color: var(--brand-blue);
            padding: 10px 20px;
            transition: background 0.3s, color 0.3s;
        }
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: var(--brand-orange);
        }

        /* Desktop Dropdown Hover */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        /* Right Side Contact Buttons */
        .contact-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-call {
            background-color: var(--brand-blue);
            color: white;
            border-radius: 25px;
            font-weight: 600;
            padding: 8px 18px;
            font-size: 0.9rem;
            transition: 0.3s;
            border: 2px solid var(--brand-blue);
        }
        .btn-call:hover {
            background-color: transparent;
            color: var(--brand-blue);
        }

        .btn-whatsapp {
            background-color: #25d366;
            color: white;
            border-radius: 25px;
            font-weight: 600;
            padding: 8px 18px;
            font-size: 0.9rem;
            transition: 0.3s;
            border: 2px solid #25d366;
        }
        .btn-whatsapp:hover {
            background-color: transparent;
            color: #25d366;
        }

        .btn-enquire {
            background-color: var(--brand-orange);
            color: white;
            border-radius: 25px;
            font-weight: 600;
            padding: 8px 18px;
            font-size: 0.9rem;
            transition: 0.3s;
            border: 2px solid var(--brand-orange);
        }
        .btn-enquire:hover {
            background-color: transparent;
            color: var(--brand-orange);
        }

        /* Custom Hamburger Toggler */
        .navbar-toggler {
            border: none;
            background: transparent !important;
            padding: 5px;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .toggler-icon-custom {
            font-size: 28px;
            color: var(--brand-pink);
            transition: transform 0.3s ease-in-out;
        }

        /* Mobile View Adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--bg-light);
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                margin-top: 15px;
            }
            .contact-actions {
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            .contact-actions .btn {
                width: 100%;
                text-align: center;
            }
            .dropdown-menu {
                border-left: 3px solid var(--brand-green);
                border-top: none;
                box-shadow: none;
                background-color: #f8f9fa;
            }
        }
        

/* ============================================
   FOOTER CSS
   Includes Desktop + Responsive
   ============================================ */

.seo-footer {
        background-color: #080e18; /* Deep dark blue background */
        color: #94a3b8;
        padding: 80px 0 30px 0;
        font-size: 0.88rem;
        border-top: 4px solid var(--brand-blue);
    }

    .seo-footer-heading {
        color: #ffffff;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Accent line under column headers */
    .seo-footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35px;
        height: 3px;
        background-color: var(--brand-orange);
        border-radius: 2px;
    }

    .seo-footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .seo-footer-list li {
        margin-bottom: 8px;
    }

    .seo-footer-list a {
        color: #cbd5e1;
        text-decoration: none;
        transition: all 0.25s ease;
        display: inline-block;
        line-height: 1.4;
    }

    .seo-footer-list a:hover {
        color: var(--brand-pink);
        transform: translateX(4px);
    }

    /* Bottom Copyright & Contact Bar */
    .footer-bottom-bar {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 50px;
        padding-top: 30px;
        font-size: 0.85rem;
    }

    .footer-contact-info a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        margin-right: 20px;
        transition: color 0.3s ease;
    }

    .footer-contact-info a:hover {
        color: var(--brand-orange);
    }

    .social-links a {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-left: 10px;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .social-links a:hover {
        background: var(--brand-blue);
        color: #ffffff;
    }

    /* Sub-heading within column lists */
    .seo-sub-group {
        color: var(--brand-green);
        font-weight: 700;
        margin-top: 12px;
        margin-bottom: 6px;
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
        .seo-footer {
            padding: 50px 0 20px 0;
        }
        .footer-bottom-bar {
            text-align: center;
        }
        .social-links {
            margin-top: 15px;
            justify-content: center;
            display: flex;
        }
    }
    * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: #1f2937;
            background: #ffffff;
            line-height: 1.7;
        }

        a {
            text-decoration: none;
        }

        /* =========================================
           BREADCRUMB
        ========================================= */

        .property-breadcrumb {
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            padding: 14px 0;
        }

        .breadcrumb {
            margin: 0;
            font-size: 14px;
        }

        .breadcrumb a {
            color: #2563eb;
        }

        .breadcrumb-item.active {
            color: #64748b;
        }


        /* =========================================
           HERO
        ========================================= */

        .property-hero {
            position: relative;
            padding: 90px 20px;
            background:
                linear-gradient(
                    rgba(8, 20, 40, 0.88),
                    rgba(8, 20, 40, 0.88)
                ),
                url("images/2-bhk-flats-hyderabad.jpg") center/cover no-repeat;
            color: #ffffff;
            text-align: center;
        }

        .property-hero-content {
            max-width: 900px;
            margin: auto;
        }

        .property-hero h1 {
            margin: 0 0 20px;
            font-size: clamp(34px, 5vw, 58px);
            line-height: 1.15;
            font-weight: 800;
        }

        .property-hero p {
            max-width: 760px;
            margin: 0 auto;
            font-size: 18px;
            color: #e2e8f0;
        }


        /* =========================================
           COMMON SECTION
        ========================================= */

        .property-section {
            padding: 75px 20px;
        }

        .property-container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
        }

        .section-title {
            margin-bottom: 18px;
            color: #0f172a;
            font-size: clamp(28px, 4vw, 40px);
            line-height: 1.25;
            font-weight: 800;
        }

        .section-description {
            max-width: 850px;
            color: #64748b;
            font-size: 17px;
        }


        /* =========================================
           INTRODUCTION
        ========================================= */

        .intro-section {
            background: #ffffff;
        }

        .intro-content {
            max-width: 950px;
        }

        .intro-content p {
            margin-bottom: 18px;
            color: #475569;
            font-size: 16px;
        }


        /* =========================================
           TYPES OF 2 BHK
        ========================================= */

        .types-section {
            background: #f8fafc;
        }

        .property-card {
            height: 100%;
            padding: 30px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.10);
        }

        .property-icon {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border-radius: 12px;
            background: #eff6ff;
            color: #2563eb;
            font-size: 24px;
        }

        .property-card h3 {
            margin-bottom: 12px;
            color: #0f172a;
            font-size: 21px;
            font-weight: 700;
        }

        .property-card p {
            margin: 0;
            color: #64748b;
            font-size: 15px;
        }


        /* =========================================
           POPULAR LOCATIONS
        ========================================= */

        .locations-section {
            background: #ffffff;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 35px;
        }

        .location-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            background: #ffffff;
            color: #1e40af;
            font-weight: 600;
            transition: all 0.25s ease;
        }

        .location-card i {
            color: #2563eb;
        }

        .location-card:hover {
            border-color: #2563eb;
            background: #eff6ff;
            transform: translateY(-3px);
        }


        /* =========================================
           BUYING CONSIDERATIONS
        ========================================= */

        .buying-section {
            background: #f8fafc;
        }

        .consideration-card {
            height: 100%;
            padding: 28px;
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
        }

        .consideration-card h3 {
            margin-bottom: 12px;
            color: #0f172a;
            font-size: 20px;
            font-weight: 700;
        }

        .consideration-card p {
            margin: 0;
            color: #64748b;
            font-size: 15px;
        }

        .consideration-icon {
            margin-bottom: 15px;
            color: #2563eb;
            font-size: 28px;
        }


        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 991px) {

            .property-hero {
                padding: 75px 20px;
            }

            .property-section {
                padding: 60px 20px;
            }

            .location-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 767px) {

            .property-breadcrumb {
                padding: 11px 15px;
            }

            .breadcrumb {
                font-size: 12px;
                overflow-x: auto;
                white-space: nowrap;
            }

            .property-hero {
                padding: 60px 18px;
            }

            .property-hero h1 {
                font-size: 32px;
            }

            .property-hero p {
                font-size: 15px;
                line-height: 1.6;
            }

            .property-section {
                padding: 50px 18px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-description {
                font-size: 15px;
            }

            .property-card {
                padding: 24px;
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .location-card {
                padding: 16px;
                font-size: 14px;
            }

            .consideration-card {
                padding: 24px;
            }

        }


        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 480px) {

            .property-hero {
                padding: 50px 15px;
            }

            .property-hero h1 {
                font-size: 28px;
            }

            .property-section {
                padding: 42px 15px;
            }

            .section-title {
                font-size: 25px;
            }

            .property-card h3,
            .consideration-card h3 {
                font-size: 18px;
            }

        }
