/* ==========================================================================
   AADHINI REALTY — REAL ESTATE & CORPORATION APPROVAL CONSULTING
   Unified Corporate Design System 2025
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   2. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --brand-terracotta: #eb5e28;
    --brand-terracotta-hover: #d44d18;
    --brand-dark-navy: #121820;
    --brand-charcoal: #1e2530;
    --brand-warm-cream: #fbf9f6;
    --brand-card-border: #eaedf1;
    --brand-muted-gray: #637381;
    --base-color: #eb5e28;
    --dark-gray: #121820;
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
    --alt-font: 'Outfit', sans-serif;
    --primary-font: 'Plus Jakarta Sans', sans-serif;
}

/* --------------------------------------------------------------------------
   3. Global Reset & Base Typography
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--body-font);
    color: #333d47;
    font-size: 16px;
    line-height: 1.75;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .alt-font {
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--brand-dark-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.375rem); line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.25; }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.35; }
h4 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); line-height: 1.4; }
h5 { font-size: 1.125rem; line-height: 1.5; }
h6 { font-size: 1rem; line-height: 1.5; }

p {
    margin-bottom: 1rem;
    color: #556270;
}

/* --------------------------------------------------------------------------
   4. Section Spacing & Layout Rhythm
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 85px 0;
}
.section-padding-sm {
    padding: 55px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 55px 0;
    }
    .section-padding-sm {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 45px 0;
    }
    .section-padding-sm {
        padding: 30px 0;
    }
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-dark-navy);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.075rem);
    line-height: 1.7;
    color: var(--brand-muted-gray);
    max-width: 680px;
}

/* --------------------------------------------------------------------------
   5. Background Helpers & Utilities
   -------------------------------------------------------------------------- */
.bg-warm-cream {
    background-color: var(--brand-warm-cream) !important;
}
.bg-corporate-dark {
    background-color: var(--brand-dark-navy) !important;
}
.bg-base-color-transparent {
    background-color: rgba(235, 94, 40, 0.12) !important;
}
.text-base-color {
    color: var(--brand-terracotta) !important;
}
.text-base-color-hover:hover {
    color: var(--brand-terracotta-hover) !important;
}

/* Logo Color Helper Tokens */
.text-logo-green {
    color: #43854a !important;
}
.text-logo-blue {
    color: #2e6289 !important;
}
.bg-logo-green-transparent {
    background-color: rgba(67, 133, 74, 0.12) !important;
}
.bg-logo-blue-transparent {
    background-color: rgba(46, 98, 137, 0.12) !important;
}
.badge-status-approved {
    background-color: #eaf5eb;
    color: #43854a;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(67, 133, 74, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.badge-status-obpas {
    background-color: #e8f4fa;
    color: #2e6289;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(46, 98, 137, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --------------------------------------------------------------------------
   6. Eyebrow Badges & Seals
   -------------------------------------------------------------------------- */
.eyebrow-badge {
    background-color: #fdf2ed;
    color: var(--brand-terracotta);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(235, 94, 40, 0.08);
}
.eyebrow-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--brand-terracotta);
}

.circular-trust-seal {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: var(--brand-dark-navy);
    color: #ffffff;
    border: 3px solid var(--brand-terracotta);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

.hero-rating-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}
@media (max-width: 767px) {
    .hero-rating-badge {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 30px;
        gap: 6px;
        margin-bottom: 18px !important;
    }
    .hero-rating-badge .text-warning {
        font-size: 11px;
        white-space: nowrap;
    }
}

/* --------------------------------------------------------------------------
   7. Primary & Action Buttons
   -------------------------------------------------------------------------- */
/* Primary Main Button: Corporate Dark */
.btn-corporate-dark {
    background-color: var(--brand-dark-navy) !important;
    border: 1.5px solid var(--brand-dark-navy) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(18, 24, 32, 0.25);
    text-decoration: none;
    cursor: pointer;
}
.btn-corporate-dark:hover {
    background-color: #1e2530 !important;
    border-color: var(--brand-terracotta) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 24, 32, 0.4);
}

/* Accent Button: Terracotta */
.btn-terracotta {
    background-color: var(--brand-terracotta) !important;
    border: 1.5px solid var(--brand-terracotta) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(235, 94, 40, 0.25);
    text-decoration: none;
    cursor: pointer;
}
.btn-terracotta:hover {
    background-color: var(--brand-terracotta-hover) !important;
    border-color: var(--brand-terracotta-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 94, 40, 0.4);
}

.btn-terracotta-outline {
    background-color: transparent !important;
    border: 1.5px solid var(--brand-terracotta) !important;
    color: var(--brand-terracotta) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-terracotta-outline:hover {
    background-color: var(--brand-terracotta) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 94, 40, 0.25);
}

.btn-dark-outline {
    background-color: transparent !important;
    border: 1.5px solid var(--brand-dark-navy) !important;
    color: var(--brand-dark-navy) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-dark-outline:hover {
    background-color: var(--brand-dark-navy) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 24, 32, 0.25);
}

/* --------------------------------------------------------------------------
   8. Cards (Service, Step, Testimonial)
   -------------------------------------------------------------------------- */
.service-card-corporate {
    background: #ffffff;
    border: 1px solid var(--brand-card-border);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.service-card-corporate:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(235, 94, 40, 0.35);
}
.service-card-corporate .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-card-corporate .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card-corporate:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.step-card-premium {
    background: #ffffff;
    border: 1px solid var(--brand-card-border);
    border-radius: 14px;
    padding: 38px 30px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.step-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(235, 94, 40, 0.35);
}
.step-number-box {
    width: 52px;
    height: 52px;
    background-color: #fdf2ed;
    color: var(--brand-terracotta);
    border-radius: 10px;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.testimonial-card-clean {
    background: #ffffff;
    border: 1px solid var(--brand-card-border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.testimonial-card-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    border-color: #d8dde4;
}

/* --------------------------------------------------------------------------
   9. Accordion Component
   -------------------------------------------------------------------------- */
.accordion-style-02 .accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid var(--brand-card-border) !important;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}
.accordion-style-02 .accordion-item:hover {
    border-color: #cbd3de !important;
}
.accordion-style-02 .accordion-button {
    padding: 20px 24px;
    background-color: #ffffff;
    color: #121820;
    font-size: 17px;
    font-weight: 700;
    border: none;
    box-shadow: none !important;
}
.accordion-style-02 .accordion-button:not(.collapsed) {
    background-color: #fcfdfe;
    color: var(--brand-terracotta);
    border-bottom: 1px solid var(--brand-card-border);
}
.accordion-style-02 .accordion-body {
    padding: 22px 24px;
    background-color: #ffffff;
    color: #556270;
    font-size: 15px;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   10. CTA Full-Width Gradient Banner
   -------------------------------------------------------------------------- */
.cta-gradient-banner {
    background: linear-gradient(135deg, #eb5e28 0%, #d44d18 100%);
    color: #ffffff;
    border-radius: 18px;
    padding: 60px 45px;
    box-shadow: 0 20px 50px rgba(235, 94, 40, 0.35);
}
@media (max-width: 767px) {
    .cta-gradient-banner {
        padding: 40px 25px;
        border-radius: 14px;
    }
}

/* --------------------------------------------------------------------------
   11. Form Inputs & Floating Elements
   -------------------------------------------------------------------------- */
input, select, textarea, .form-control {
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #dce2e8;
    padding: 12px 16px;
    color: #262b35;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus, select:focus, textarea:focus, .form-control:focus {
    border-color: var(--brand-terracotta);
    box-shadow: 0 0 0 3px rgba(235, 94, 40, 0.15);
    outline: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto !important;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1ebc57;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@media (max-width: 575px) {
    .whatsapp-float {
        bottom: 20px;
        right: 18px;
        left: auto !important;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* --------------------------------------------------------------------------
   12. Header, Top Bar & Navigation System
   -------------------------------------------------------------------------- */
header.header-with-topbar {
    position: relative;
    z-index: 1000;
}

header .header-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--brand-dark-navy) !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    white-space: nowrap !important;
    transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .header-top-bar [class*="col-"] {
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

header .header-top-bar span,
header .header-top-bar a {
    white-space: nowrap !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

header .header-top-bar i {
    font-size: 13.5px !important;
}

header .header-top-bar + .navbar {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff !important;
    transition: top 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

/* Prevent sticky disappearance or jumpy transforms */
header.sticky .navbar {
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
}

header.sticky .header-light {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Navbar Brand & Logo single view - active in all states */
header .navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
    font-size: 0 !important;
}

header .navbar-brand img,
header .navbar-brand img.default-logo,
header.sticky .navbar-brand img.default-logo,
header.sticky.sticky-active .navbar-brand img.default-logo {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

header .navbar-brand img.alt-logo,
header .navbar-brand img.mobile-logo,
header.sticky .navbar-brand img.alt-logo,
header.sticky .navbar-brand img.mobile-logo,
header.sticky.sticky-active .navbar-brand img.alt-logo,
header.sticky.sticky-active .navbar-brand img.mobile-logo {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-dark-navy);
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
    color: var(--brand-terracotta) !important;
}

/* Tablet & Mobile Nav Container Alignment (<992px) */
@media (max-width: 991px) {
    header .header-top-bar {
        display: none !important;
    }
    header .header-top-bar + .navbar,
    header nav.navbar {
        top: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    header nav.navbar .container {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    header nav.navbar .menu-order.left-nav {
        margin-left: auto !important;
        padding-left: 0 !important;
    }
    header nav.navbar .navbar-toggler {
        display: inline-block !important;
        position: relative !important;
        cursor: pointer;
    }
    header nav.navbar .navbar-toggler-line {
        background-color: var(--brand-dark-navy) !important;
    }
}

/* --------------------------------------------------------------------------
   13. Top Spacing & Layout Rhythm (Desktop, Tablet, Mobile)
   Ensures zero content hidden under fixed header on any screen size!
   -------------------------------------------------------------------------- */
/* Index Hero Container */
.hero-section-container {
    padding-top: 165px !important;
    padding-bottom: 75px !important;
}

/* Inner Pages Page Title Banner */
.page-title-section {
    padding-top: 170px !important;
    padding-bottom: 70px !important;
}

@media (max-width: 991px) {
    .hero-section-container {
        padding-top: 135px !important;
        padding-bottom: 60px !important;
    }
    .page-title-section {
        padding-top: 140px !important;
        padding-bottom: 55px !important;
    }
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
footer {
    background-color: var(--brand-dark-navy);
    font-size: 14px;
    line-height: 1.8;
}
footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.25s ease;
}
footer a:hover {
    color: var(--brand-terracotta) !important;
}

/* --------------------------------------------------------------------------
   15. Mobile Responsive Enhancements & Safe Viewport Rules (<768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    header .header-top-bar {
        display: none !important;
    }
    header .header-top-bar + .navbar,
    header nav.navbar {
        top: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    header .navbar-brand img,
    header .navbar-brand img.default-logo {
        height: 38px !important;
        max-height: 38px !important;
    }
    .hero-btn-group {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }
    .hero-btn-group .btn {
        width: 100% !important;
        text-align: center;
        justify-content: center;
        padding: 13px 20px !important;
        font-size: 15px !important;
    }
    .hero-main-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 16px !important;
    }
    .hero-subtitle {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
        margin-bottom: 24px !important;
    }
    .hero-section-container {
        padding-top: 105px !important;
        padding-bottom: 50px !important;
    }
    .page-title-section {
        padding-top: 105px !important;
        padding-bottom: 45px !important;
    }
    .page-title-section h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    .page-title-section p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}