/* =============================================================
   RADIANCE REALTY — MASTER STYLESHEET
   File: stylesheet.blade.php
   Version: 2.0
   Description: Complete CSS for all pages, components, and
                responsive breakpoints. Navy + Gold luxury theme.
================================================================

   TABLE OF CONTENTS
   -----------------
   01. CSS Variables & Tokens
   02. CSS Reset & Normalization
   03. Base Typography
   04. Utility Classes
   05. Header / Navbar
   06. Hero Slider
   07. Stats Bar
   08. Section: Our Projects
   09. Section: Our Approach
   10. Section: Why Choose Us
   11. Section: Contact Us
   12. Footer
   13. Animations & Keyframes
   14. Scroll Reveal
   15. Forms
   16. Buttons
   17. Cards
   18. Badges & Tags
   19. Page: Projects (projects.html)
   20. Page: Approach (approach.html)
   21. Page: Why Us (why-us.html)
   22. Page: Contact (contact.html)
   23. Inner Page Hero (sub-pages)
   24. Breadcrumb
   25. Pagination
   26. Modals
   27. Alerts & Toasts
   28. Tables
   29. Tabs & Accordions
   30. Responsive Overrides
================================================================ */


/* ================================================================
   01. CSS VARIABLES & TOKENS
================================================================ */

:root {
    /* --- Color Palette --- */
    --navy: #0a1628;
    --navy-mid: #0f2040;
    --navy-light: #162d50;
    --navy-hover: #1a3560;
    --navy-border: rgba(10, 22, 40, 0.15);

    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-lighter: #f0d898;
    --gold-dark: #a8883a;
    --gold-darker: #886e2e;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --gold-subtle: rgba(201, 168, 76, 0.08);
    --gold-border: rgba(201, 168, 76, 0.20);
    --gold-border-md: rgba(201, 168, 76, 0.35);

    --white: #ffffff;
    --off-white: #f8f6f2;
    --cream: #f4f1ea;
    --gray-100: #f5f4f0;
    --gray-200: #e8e4dc;
    --gray-300: #d4cfc4;
    --gray-400: #b8b2a6;
    --gray-500: #8a9ab5;
    --gray-600: #6b7c99;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;

    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.10);
    --success-border: rgba(34, 197, 94, 0.30);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.10);
    --warning: #f59e0b;
    --info: #3b82f6;

    /* --- Typography --- */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;

    --text-xs: 0.7rem;
    /* 11.2px */
    --text-sm: 0.8rem;
    /* 12.8px */
    --text-base: 0.875rem;
    /* 14px   */
    --text-md: 1rem;
    /* 16px   */
    --text-lg: 1.125rem;
    /* 18px   */
    --text-xl: 1.25rem;
    /* 20px   */
    --text-2xl: 1.5rem;
    /* 24px   */
    --text-3xl: 1.875rem;
    /* 30px   */
    --text-4xl: 2.25rem;
    /* 36px   */
    --text-5xl: 3rem;
    /* 48px   */
    --text-6xl: 3.75rem;
    /* 60px   */

    /* --- Spacing Scale --- */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    /* --- Border Radius --- */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* --- Shadows --- */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.10);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.14);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.18);
    --shadow-2xl: 0 24px 64px rgba(10, 22, 40, 0.24);
    --shadow-gold: 0 8px 28px rgba(201, 168, 76, 0.30);
    --shadow-navy: 0 8px 28px rgba(10, 22, 40, 0.35);

    /* --- Transitions --- */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --transition-fast: 0.15s var(--ease);
    --transition-base: 0.25s var(--ease);
    --transition-slow: 0.4s var(--ease);
    --transition-slower: 0.6s var(--ease);

    /* --- Z-index layers --- */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 1050;
    --z-modal: 1100;
    --z-toast: 1200;
    --z-tooltip: 1300;

    /* --- Layout --- */
    --container-max: 1400px;
    --header-h: 70px;
    --header-h-sm: 62px;
    --section-py: 100px;
    --section-py-sm: 70px;
    --section-py-xs: 50px;
}


/* ================================================================
   02. CSS RESET & NORMALIZATION
================================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    tab-size: 4;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: 400;
    line-height: 1.65;
    color: var(--navy);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ================================================================
   SECTION WIDTH FIX — Radiance Realty
   Paste this at the END of your stylesheet.blade.php
   Gives every section the same container width uniformly.
================================================================ */

/* ---- Universal container width lock ---- */
/* All Bootstrap .container inside any section will have
   the same max-width defined by --container-max (1280px) */

.container {
    max-width: var(--container-max) !important;
    width: 100% !important;
    padding-left: var(--space-6) !important;
    /* 24px left gutter */
    padding-right: var(--space-6) !important;
    /* 24px right gutter */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ---- All page sections same horizontal padding ---- */
/* Ensures no section bleeds wider or narrower than another */

#home,
#statsBar,
#our-projects,
#our-approach,
#why-choose-us,
#contact-us,
footer {
    width: 100%;
}

/* ---- statsBar special: its container was unconstrained ---- */
#statsBar .container {
    max-width: var(--container-max) !important;
}

/* ---- Wider screens: tighten the gutter slightly ---- */
@media (min-width: 1200px) {
    .container {
        padding-left: var(--space-8) !important;
        /* 32px */
        padding-right: var(--space-8) !important;
    }
}

/* ---- Mobile: smaller gutters ---- */
@media (max-width: 575.98px) {
    .container {
        padding-left: var(--space-4) !important;
        /* 16px */
        padding-right: var(--space-4) !important;
    }
}

/* Block elements */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
canvas,
summary {
    display: block;
}

/* Media */
img,
video,
svg,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
    border-style: none;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.5;
    margin: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border: none;
    background: none;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
    border: 1px solid var(--gray-300);
}

/* HR */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: var(--space-8) 0;
}

/* Pre / code */
pre,
code,
kbd,
samp {
    font-family: var(--font-mono);
    font-size: 0.9em;
}

pre {
    overflow: auto;
    background: var(--gray-100);
    padding: var(--space-4);
    border-radius: var(--radius-md);
}

/* Blockquote */
blockquote {
    padding: var(--space-4) var(--space-6);
    border-left: 3px solid var(--gold);
    background: var(--off-white);
    font-style: italic;
    color: var(--gray-700);
}

/* Sub / Sup */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Selection */
::selection {
    background: var(--gold-glow);
    color: var(--navy);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* ================================================================
   03. BASE TYPOGRAPHY
================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

h5 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

h6 {
    font-size: var(--text-md);
}

p {
    margin-bottom: var(--space-4);
    line-height: 1.75;
    color: var(--gray-700);
}

p:last-child {
    margin-bottom: 0;
}

strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

small {
    font-size: 0.85em;
}

.lead {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray-600);
}

.text-balance {
    text-wrap: balance;
}

/* Heading modifiers */
.heading-serif {
    font-family: var(--font-heading);
}

.heading-sans {
    font-family: var(--font-body);
}

.heading-light {
    color: var(--white);
}

.heading-gold {
    color: var(--gold);
}

.heading-muted {
    color: var(--gray-500);
}

/* Inline gold italic */
.title-italic {
    font-style: italic;
    color: var(--gold-light);
}


/* ================================================================
   04. UTILITY CLASSES
================================================================ */

/* --- Colors --- */
.text-navy {
    color: var(--navy) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-gold-light {
    color: var(--gold-light) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-muted-nav {
    color: var(--gray-500) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-navy-mid {
    background-color: var(--navy-mid) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-off-white {
    background-color: var(--off-white) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

/* --- Section Padding --- */
.section-pad {
    padding: var(--section-py) 0;
}

.section-pad-sm {
    padding: var(--section-py-sm) 0;
}

.section-pad-xs {
    padding: var(--section-py-xs) 0;
}

/* --- Section Label (eyebrow text above headings) --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-label.light {
    color: var(--gold-light);
}

.section-label.light::before,
.section-label.light::after {
    background: var(--gold-light);
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: var(--space-4);
}

.section-title.light {
    color: var(--white);
}

/* --- Section Subtitle / Paragraph --- */
.section-sub {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 0;
}

/* --- Gold Decorative Lines --- */
.gold-line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: var(--space-5) 0;
}

.gold-line-center {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: var(--space-5) auto;
}

.gold-line-full {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: var(--space-8) 0;
}

/* --- Dividers --- */
.divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: var(--space-8) 0;
}

.divider-navy {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* --- Aspect Ratios --- */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-photo {
    aspect-ratio: 4 / 3;
}

.aspect-portrait {
    aspect-ratio: 3 / 4;
}

/* --- Object Fit --- */
.obj-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.obj-contain {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* --- Position Helpers --- */
.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.inset-0 {
    inset: 0;
}

/* --- Overflow --- */
.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* --- Z-index helpers --- */
.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-10 {
    z-index: 10;
}

/* --- Display --- */
.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Opacity --- */
.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

/* --- Pointer --- */
.cursor-pointer {
    cursor: pointer;
}

.user-select-none {
    user-select: none;
}

/* --- Transition Helpers --- */
.transition {
    transition: all var(--transition-base);
}

/* --- Rounded Helpers --- */
.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* --- Shadow Helpers --- */
.shadow-gold {
    box-shadow: var(--shadow-gold);
}

.shadow-navy {
    box-shadow: var(--shadow-navy);
}

/* --- Max width helpers --- */
.max-w-xs {
    max-width: 320px;
}

.max-w-sm {
    max-width: 480px;
}

.max-w-md {
    max-width: 640px;
}

.max-w-lg {
    max-width: 800px;
}

.max-w-xl {
    max-width: 1024px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --- Spacing helpers --- */
.gap-xs {
    gap: var(--space-2);
}

.gap-sm {
    gap: var(--space-4);
}

.gap-md {
    gap: var(--space-6);
}

.gap-lg {
    gap: var(--space-8);
}

.gap-xl {
    gap: var(--space-12);
}

/* --- Gold Overlay --- */
.overlay-navy {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.85) 0%,
            rgba(10, 22, 40, 0.55) 50%,
            rgba(10, 22, 40, 0.35) 100%);
    pointer-events: none;
}

/* --- Gradient Text --- */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   FINAL OVERRIDE — Logo + Header Transparent
   Paste at the VERY END of stylesheet.blade.php
================================================================ */
/* ================================================================
   HEADER — FINAL CLEAN VERSION
   Replace everything from "FINAL OVERRIDE" comment to end of
   mobile @media blocks in your stylesheet.blade.php
   
   Fixes:
   ✅ Broken @media block (missing closing brace)
   ✅ flex:1 vs flex:0 conflict on logo
   ✅ Mobile menu open — dark bg when transparent, cream when scrolled
   ✅ All duplicate/conflicting rules removed
   ✅ Hamburger .show state bg properly set
================================================================ */


/* ================================================================
   HEADER BASE — transparent by default
================================================================ */

#siteHeader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

/* Scrolled state — cream background */
#siteHeader.scrolled {
    background: #f8f5ef !important;
    background-color: #f8f5ef !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.22) !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10) !important;
}


/* ================================================================
   NAVBAR INSIDE HEADER
================================================================ */

#siteHeader .navbar {
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    background-color: transparent !important;
    width: 100% !important;
}


/* ================================================================
   CONTAINER INSIDE HEADER
================================================================ */

#siteHeader .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
    min-height: 85px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow: visible !important;
}


/* ================================================================
   LOGO
================================================================ */

#siteHeader .navbar-logo-link {
    display: block !important;
    flex: 0 0 auto !important;
    width: 140px !important;
    height: 65px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

#siteHeader .navbar-logo-img {
    position: absolute !important;
    top: 70% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(3.0) !important;
    transform-origin: center center !important;
    width: 140px !important;
    height: 65px !important;
    max-width: none !important;
    max-height: none !important;
    min-height: unset !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
}


/* ================================================================
   NAV LINKS — white on transparent/dark hero
================================================================ */

#siteHeader .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    padding: 8px 16px !important;
    position: relative !important;
    white-space: nowrap !important;
    transition: color 0.25s ease !important;
    text-decoration: none !important;
}

/* Gold underline animation */
#siteHeader .navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 16px !important;
    right: 16px !important;
    height: 2px !important;
    background: #c9a84c !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.28s ease !important;
}

#siteHeader .navbar-nav .nav-link:hover,
#siteHeader .navbar-nav .nav-link.active {
    color: #c9a84c !important;
}

#siteHeader .navbar-nav .nav-link:hover::after,
#siteHeader .navbar-nav .nav-link.active::after {
    transform: scaleX(1) !important;
}

/* NAV LINKS — dark navy on scrolled/cream bg */
#siteHeader.scrolled .navbar-nav .nav-link {
    color: #0a1628 !important;
}

#siteHeader.scrolled .navbar-nav .nav-link:hover,
#siteHeader.scrolled .navbar-nav .nav-link.active {
    color: #c9a84c !important;
}


/* ================================================================
   SCHEDULE BUTTON
================================================================ */

.btn-schedule {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.13em !important;
    text-transform: uppercase !important;
    background: #c9a84c !important;
    color: #0a1628 !important;
    border: 1px solid #c9a84c !important;
    padding: 9px 22px !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease !important;
}

.btn-schedule:hover {
    background: transparent !important;
    color: #c9a84c !important;
    transform: translateY(-1px) !important;
}


/* ================================================================
   HAMBURGER TOGGLER
================================================================ */

#siteHeader .navbar-toggler {
    border: 1.5px solid rgba(201, 168, 76, 0.70) !important;
    border-radius: 6px !important;
    padding: 7px 10px !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

#siteHeader .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Gold lines icon — transparent state */
#siteHeader .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' d='M3 6h18M3 12h18M3 18h18'/%3E%3C/svg%3E") !important;
    width: 24px !important;
    height: 24px !important;
    display: block !important;
}

/* Dark lines icon — scrolled state */
#siteHeader.scrolled .navbar-toggler {
    border-color: rgba(10, 22, 40, 0.35) !important;
}

#siteHeader.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath stroke='%230a1628' stroke-width='2' stroke-linecap='round' d='M3 6h18M3 12h18M3 18h18'/%3E%3C/svg%3E") !important;
}


/* ================================================================
   MOBILE COLLAPSE MENU
   — Closed: transparent (hidden by Bootstrap, no bg needed)
   — Open (.show): dark navy bg on transparent state
   — Open (.show) + scrolled: cream bg
================================================================ */

#siteHeader .navbar-collapse {
    background: transparent !important;
}

/* Menu open — transparent/hero state */
#siteHeader .navbar-collapse.show {
    background: rgba(10, 22, 40, 0.96) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-top: 1px solid rgba(201, 168, 76, 0.15) !important;
}

/* Menu open — scrolled/cream state */
#siteHeader.scrolled .navbar-collapse.show {
    background: #f8f5ef !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-top: 1px solid rgba(201, 168, 76, 0.22) !important;
}


/* ================================================================
   MOBILE ≤ 991px
================================================================ */

@media (max-width: 991.98px) {

    /* Container: allow wrap so menu drops below logo+toggler row */
    #siteHeader .container {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        min-height: 64px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Logo — LEFT aligned, fixed width, no stretch */
    #siteHeader .navbar-logo-link {
        flex: 0 0 auto !important;
        margin-right: auto !important;
        width: 110px !important;
        height: 55px !important;
    }

    #siteHeader .navbar-logo-img {
        width: 110px !important;
        height: 55px !important;
        transform: translate(-50%, -50%) scale(2.5) !important;
    }

    /* Collapse takes full row */
    #siteHeader .navbar-collapse {
        width: 100% !important;
        flex-basis: 100% !important;
        padding: 6px 16px 16px !important;
        margin: 0 !important;
    }

    /* Nav list — vertical stack */
    #siteHeader .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
    }

    #siteHeader .navbar-nav .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    }

    #siteHeader .navbar-nav .nav-item:last-child {
        border-bottom: none !important;
    }

    /* Nav link style — open on dark bg */
    #siteHeader .navbar-nav .nav-link {
        padding: 13px 16px !important;
        display: flex !important;
        align-items: center !important;
        color: rgba(255, 255, 255, 0.92) !important;
    }

    /* Hide desktop underline animation on mobile */
    #siteHeader .navbar-nav .nav-link::after {
        display: none !important;
    }

    /* Active link — gold left border */
    #siteHeader .navbar-nav .nav-link.active {
        border-left: 3px solid #c9a84c !important;
        padding-left: 13px !important;
        background: rgba(201, 168, 76, 0.08) !important;
        color: #c9a84c !important;
    }

    #siteHeader .navbar-nav .nav-link:hover {
        background: rgba(201, 168, 76, 0.08) !important;
        color: #c9a84c !important;
    }

    /* Scrolled state — dark text on cream bg */
    #siteHeader.scrolled .navbar-nav .nav-link {
        color: #0a1628 !important;
    }

    #siteHeader.scrolled .navbar-nav .nav-item {
        border-bottom-color: rgba(10, 22, 40, 0.08) !important;
    }

    /* Schedule button — full width on mobile */
    .btn-schedule {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        margin: 14px 0 4px !important;
        padding: 13px 16px !important;
    }
}

@media (max-width: 767px) {
    #siteHeader .navbar-logo-img {
        transform: translate(-50%, -50%) scale(2.2) !important;
    }
}

@media (max-width: 480px) {
    #siteHeader .navbar-logo-link {
        width: 95px !important;
        height: 48px !important;
    }

    #siteHeader .navbar-logo-img {
        width: 95px !important;
        height: 48px !important;
        transform: translate(-50%, -50%) scale(2.0) !important;
    }
}

/* ================================================================
   06. HERO SLIDER
================================================================ */

#heroSlider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

/* Each slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.85) 0%,
            rgba(10, 22, 40, 0.55) 50%,
            rgba(10, 22, 40, 0.30) 100%);
    z-index: 1;
}

/* Slide backgrounds */
.hero-slide-1 {
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80');
}

.hero-slide-2 {
    background-image: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1920&q=80');
}

.hero-slide-3 {
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1920&q=80');
}

/* Content layer */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Inner animated block */
.hero-inner {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.hero-slide.active .hero-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Tag pill */
.hero-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.40);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(6px);
    background: rgba(201, 168, 76, 0.08);
}

/* Headline */
.hero-headline {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-5);
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

/* Sub text */
.hero-sub {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: var(--space-10);
    font-weight: 300;
}

/* Button group */
.hero-btns {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Hero buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.50);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--white);
    color: var(--white);
}

/* Prev / Next arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(10, 22, 40, 0.55);
    border: 1px solid rgba(201, 168, 76, 0.30);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    font-size: 1.2rem;
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.05);
}

.hero-arrow-prev {
    left: 32px;
}

.hero-arrow-next {
    right: 32px;
}

/* Dot indicators */
.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.5);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 44px;
    right: 44px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.hero-scroll span {
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.40), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Mobile hero adjustments */
@media (max-width: 767px) {
    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-sub {
        font-size: var(--text-md);
        max-width: 100%;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: var(--space-3);
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
    }
}


/* ================================================================
   07. STATS BAR
================================================================ */

#statsBar {
    background: var(--navy);
    padding: 28px 0;
    border-top: 1px solid var(--gold-border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 12px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 1.9rem;
    color: var(--gold);
    opacity: 0.85;
    flex-shrink: 0;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 16px 12px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-num {
        font-size: 1.6rem;
    }
}


/* ================================================================
   08. SECTION: OUR PROJECTS
================================================================ */

/* ================================================================
               PROJECTS SECTION
            ================================================================ */

#projects {
    background: var(--off-white);
    padding: 100px 0;
}

.projects-header {
    margin-bottom: var(--space-16);
}

.projects-header h2 {
    margin-bottom: var(--space-4);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-300);
    background: transparent;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--space-8);
}

/* Property Card */
.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Image wrapper */
.property-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    flex-shrink: 0;
}

.property-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.property-card:hover .property-img-wrap img {
    transform: scale(1.07);
}

/* For Sale badge */
.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    line-height: 1.4;
    z-index: 2;
}

.property-badge.featured {
    background: var(--error);
    color: var(--white);
}

/* Status badge */
.property-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    line-height: 1.4;
    z-index: 2;
}

.status-available {
    background: rgba(34, 197, 94, 0.90);
    color: #fff;
}

.status-sold {
    background: rgba(239, 68, 68, 0.90);
    color: #fff;
}

.status-pending {
    background: rgba(234, 179, 8, 0.90);
    color: #fff;
}

/* Card body */
.property-body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-location {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-location i {
    color: var(--gold);
    font-size: 0.75rem;
}

.property-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: var(--space-4);
    line-height: 1;
}

/* Meta row: beds/baths/sqft */
.property-meta {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-5);
    flex-wrap: wrap;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.property-meta-item i {
    color: var(--gold);
    font-size: 0.85rem;
}

.property-meta-item strong {
    color: var(--navy);
    font-weight: 600;
}

/* View Details button */
.btn-view-details {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-view-details:hover {
    background: var(--navy);
    color: var(--gold);
}

/* ================================================================
               PROJECTS STATS
            ================================================================ */

#projects-stats {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#projects-stats::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold-border-md);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-4);
    opacity: 0.85;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    display: block;
}

/* ================================================================
               FEATURED PROJECT SPOTLIGHT
            ================================================================ */

#spotlight {
    background: var(--white);
    padding: 100px 0;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.spotlight-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.spotlight-content h3 {
    margin-bottom: var(--space-4);
}

.spotlight-content p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.spotlight-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    padding: var(--space-6) 0;
    margin: var(--space-6) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.spotlight-meta-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: var(--space-2);
}

.spotlight-meta-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 13px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-learn-more:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
               CTA SECTION
            ================================================================ */

#cta-section {
    background: var(--navy-mid);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-border);
}

#cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 2.5rem;
}

.cta-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    margin-bottom: var(--space-8);
    line-height: 1.75;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
               RESPONSIVE
            ================================================================ */

@media (max-width: 1199.98px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-pad {
        padding: 60px 0;
    }

    .spotlight-meta {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .filter-tabs {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.65rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .property-name {
        font-size: 1rem;
    }

    .property-price {
        font-size: 1.3rem;
    }

    .section-pad {
        padding: 50px 0;
    }

    .page-hero {
        padding: 60px 0 40px;
    }
}

/* ================================================================
               ANIMATIONS
            ================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   09. SECTION: OUR APPROACH
================================================================ */

.tnc-hero {
    background: var(--navy);
    padding: 160px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-border);
}

.tnc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.tnc-hero::after {
    content: '\00A7';
    font-family: var(--font-heading);
    font-size: 22rem;
    color: rgba(255, 255, 255, 0.018);
    position: absolute;
    right: -40px;
    top: -40px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.tnc-hero-inner {
    position: relative;
    z-index: 1;
}

.tnc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tnc-breadcrumb a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.50);
    transition: color 0.25s;
}

.tnc-breadcrumb a:hover {
    color: var(--gold);
}

.tnc-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.tnc-breadcrumb .current {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.tnc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.tnc-eyebrow::before,
.tnc-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.tnc-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.tnc-hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.tnc-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.tnc-meta-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tnc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.50);
}

.tnc-meta-item i {
    color: var(--gold);
    font-size: 0.85rem;
}

.tnc-meta-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.12);
}


/* ================================================================
           TERMS LAYOUT — T&C specific
        ================================================================ */
.tnc-layout {
    background: var(--off-white);
    padding: 80px 0 100px;
}

.tnc-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}


/* ---- Sticky Sidebar TOC ---- */
.tnc-sidebar {
    position: sticky;
    top: 90px;
}

.tnc-toc-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tnc-toc-header {
    background: var(--navy);
    padding: 20px 24px;
    border-bottom: 2px solid var(--gold-border);
}

.tnc-toc-header h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.tnc-toc-body {
    padding: 16px 0;
}

.tnc-toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    font-size: 0.82rem;
    color: var(--gray-600);
    transition: all 0.22s;
    border-left: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.tnc-toc-link:hover {
    color: var(--navy);
    background: var(--off-white);
    border-left-color: var(--gold);
}

.tnc-toc-link.active {
    color: var(--gold-dark);
    font-weight: 600;
    background: var(--gold-subtle);
    border-left-color: var(--gold);
}

.tnc-toc-num {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    padding: 1px 7px;
    flex-shrink: 0;
    min-width: 28px;
    text-align: center;
}

/* Last updated badge */
.tnc-update-badge {
    margin: 16px 24px 0;
    padding: 10px 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: #166534;
}

.tnc-update-badge i {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Print / Download buttons */
.tnc-actions {
    margin: 16px 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tnc-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s;
    border: 1.5px solid var(--gray-300);
    background: transparent;
    color: var(--gray-600);
}

.tnc-action-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}


/* ================================================================
           TERMS CONTENT AREA — T&C specific
        ================================================================ */
.tnc-content-area {
    min-width: 0;
}

/* Acceptance notice banner */
.tnc-notice-banner {
    background: var(--navy-mid);
    border: 1px solid var(--gold-border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    /* margin-bottom: 40px; */
    display: flex;
    
    gap: 16px;
    align-items: flex-start;
}

.tnc-notice-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
}

.tnc-notice-text {
    flex: 1;
}

.tnc-notice-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.tnc-notice-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
}

/* Section cards */
.tnc-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
    scroll-margin-top: 90px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.tnc-section:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-lg);
}

.tnc-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 36px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.tnc-section-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 40px;
}

.tnc-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin: 0;
}

.tnc-section-icon {
    margin-left: auto;
    width: 40px;
    height: 40px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.tnc-section-body {
    padding: 32px 36px;
}

.tnc-section-body p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.82;
    margin-bottom: 18px;
}

.tnc-section-body p:last-child {
    margin-bottom: 0;
}

/* Subsection heading */
.tnc-sub-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 28px 0 12px;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
}

/* Bullet list inside T&C */
.tnc-list {
    margin: 0 0 18px 0;
    padding: 0;
}

.tnc-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.93rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.tnc-list li:last-child {
    border-bottom: none;
}

.tnc-list-bullet {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}

/* Highlight box (important notice) */
.tnc-highlight {
    background: var(--off-white);
    border: 1px solid var(--gold-border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin: 20px 0;
}

.tnc-highlight p {
    font-size: 0.88rem !important;
    color: var(--gray-700) !important;
    margin: 0 !important;
    font-style: italic;
}

.tnc-highlight strong {
    color: var(--navy);
}

/* Warning box */
.tnc-warning {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.20);
    border-left: 3px solid var(--error);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tnc-warning i {
    color: var(--error);
    flex-shrink: 0;
    margin-top: 2px;
}

.tnc-warning p {
    font-size: 0.88rem !important;
    color: #7f1d1d !important;
    margin: 0 !important;
}


/* ================================================================
           BOTTOM ACCEPTANCE SECTION — T&C specific
        ================================================================ */
.tnc-acceptance {
    background: var(--navy);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.tnc-acceptance::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.tnc-acceptance-inner {
    position: relative;
    z-index: 1;
}

.tnc-acceptance h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.tnc-acceptance h3 em {
    font-style: italic;
    color: var(--gold-light);
}

.tnc-acceptance p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.72;
    margin-bottom: 24px;
}

.tnc-acceptance-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-accept {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.28s;
    font-family: var(--font-body);
}

.btn-accept:hover {
    background: transparent;
    color: var(--gold);
}

.btn-contact-tnc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.28s;
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-contact-tnc:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ================================================================
           RESPONSIVE — T&C specific
        ================================================================ */
@media (max-width: 991.98px) {
    .tnc-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tnc-sidebar {
        position: static;
    }

    .tnc-toc-body {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 12px 16px;
    }

    .tnc-toc-link {
        padding: 7px 14px;
        border-left: none;
        border-radius: var(--radius-sm);
        background: var(--off-white);
    }

    .tnc-toc-link.active {
        background: var(--gold-subtle);
    }

    .header-nav {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .tnc-hero {
        padding: 120px 0 50px;
    }

    .tnc-layout {
        padding: 50px 0 70px;
    }

    .tnc-wrapper {
        padding: 0 16px;
    }

    .tnc-section-header {
        padding: 20px 22px;
        gap: 12px;
    }

    .tnc-section-body {
        padding: 24px 22px;
    }

    .tnc-acceptance {
        padding: 28px 22px;
    }

    .tnc-acceptance-btns {
        flex-direction: column;
    }

    .btn-accept,
    .btn-contact-tnc {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 575.98px) {
    .tnc-section-num {
        font-size: 1.2rem;
    }

    .tnc-section-title {
        font-size: 1.05rem;
    }

    .tnc-section-icon {
        display: none;
    }

    .tnc-meta-strip {
        gap: 14px;
    }

    .tnc-meta-divider {
        display: none;
    }
}

/* Scroll highlight animation */
.tnc-section.highlight-flash {
    animation: sectionFlash 0.6s ease forwards;
}

@keyframes sectionFlash {
    0% {
        border-color: var(--gold-border-md);
        box-shadow: 0 0 0 3px var(--gold-glow);
    }

    100% {
        border-color: var(--gray-200);
        box-shadow: none;
    }
}

/* ================================================================
                   OUR PHILOSOPHY
                ================================================================ */

#philosophy {
    background: var(--white);
    padding: 100px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.philosophy-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.philosophy-content h2 {
    margin-bottom: var(--space-5);
}

.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.philosophy-content ul {
    list-style: none;
    margin: var(--space-8) 0;
}

.philosophy-content li {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: flex-start;
}

.philosophy-content li:last-child {
    border-bottom: none;
}

.philosophy-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

.philosophy-content li strong {
    color: var(--navy);
    font-weight: 600;
}

/* ================================================================
                   4-STEP PROCESS
                ================================================================ */

#process {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

#process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.step-card {
    position: relative;
    padding: 36px 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    transition: all var(--transition-slow);
    height: 100%;
    overflow: hidden;
}

.step-card:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: var(--gold-border-md);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.10);
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 22px;
    user-select: none;
}

.step-icon-wrap {
    width: 58px;
    height: 58px;
    background: rgba(201, 168, 76, 0.10);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: all var(--transition-base);
}

.step-card:hover .step-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
}

.step-icon-wrap i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color var(--transition-base);
}

.step-card:hover .step-icon-wrap i {
    color: var(--navy);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
                   WHAT SETS US APART
                ================================================================ */

#features {
    background: var(--off-white);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: all var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--gold-border-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--gold);
}

.feature-icon-wrap i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: color var(--transition-base);
}

.feature-card:hover .feature-icon-wrap i {
    color: var(--navy);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
                   TRACK RECORD
                ================================================================ */

#track-record {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.track-record-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.track-record-header h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.counter-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.counter-item:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold-border-md);
    transform: translateY(-3px);
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-2);
    display: block;
}

.counter-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}

/* ================================================================
                   TESTIMONIALS
                ================================================================ */

#testimonials {
    background: var(--white);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold-border);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 28px;
    opacity: 0.35;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--space-3);
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-border);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ================================================================
                   CTA SECTION
                ================================================================ */

#cta-section {
    background: var(--navy-mid);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-border);
}

#cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 2.5rem;
}

.cta-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    margin-bottom: var(--space-8);
    line-height: 1.75;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
                   RESPONSIVE
                ================================================================ */

@media (max-width: 991.98px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-pad {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .counter-num {
        font-size: 2rem;
    }

    .section-pad {
        padding: 50px 0;
    }
}

/* ================================================================
                   ANIMATIONS
                ================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   10. SECTION: WHY CHOOSE US
================================================================ */

.breadcrumb-rr {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.breadcrumb-rr a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-rr a:hover {
    color: var(--gold);
}

.breadcrumb-rr .sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.breadcrumb-rr .current {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

/* ================================================================
           CORE VALUES
        ================================================================ */

#values {
    background: var(--white);
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.value-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.value-card:hover {
    background: var(--white);
    border-color: var(--gold-border-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: color var(--transition-base);
}

.value-card:hover .value-icon i {
    color: var(--navy);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
           WHY RADIANCE
        ================================================================ */

#why-radiance {
    background: var(--off-white);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.why-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-content h2 {
    margin-bottom: var(--space-5);
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.why-features {
    display: grid;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.why-feature-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.why-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
}

.why-feature-item strong {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.why-feature-item p {
    font-size: 0.9rem;
    margin: 4px 0 0 0;
    color: var(--gray-600);
}

/* ================================================================
           OUR TEAM
        ================================================================ */

#team {
    background: var(--white);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.team-img-wrap {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-body {
    padding: var(--space-6);
    border-top: 3px solid var(--gold);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.75rem;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    display: block;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================================
           WHY CHOOSE COMPARISON
        ================================================================ */

#comparison {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#comparison::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

.comparison-header h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
}

.comparison-row:first-child .comparison-cell {
    background: rgba(201, 168, 76, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 70px;
}

.comparison-row:first-child .comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-cell:first-child:first-child {
    background: transparent;
    border-right: none;
}

.comparison-header-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.comparison-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.70);
}

.comparison-check {
    color: var(--success);
    font-size: 1.3rem;
}

.comparison-cross {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.3rem;
}

/* ================================================================
           AWARDS & RECOGNITION
        ================================================================ */

#awards {
    background: var(--white);
    padding: 100px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.award-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.award-card:hover {
    border-color: var(--gold-border-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.award-badge {
    width: 80px;
    height: 80px;
    background: var(--gold-subtle);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 2rem;
    transition: all var(--transition-base);
}

.award-card:hover .award-badge {
    background: var(--gold);
    color: var(--navy);
}

.award-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-2);
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.award-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
           TESTIMONIALS
        ================================================================ */

#testimonials {
    background: var(--off-white);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold-border);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 28px;
    opacity: 0.35;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--space-3);
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-border);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ================================================================
           CTA SECTION
        ================================================================ */

#cta-section {
    background: var(--navy-mid);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-border);
}

#cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 2.5rem;
}

.cta-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    margin-bottom: var(--space-8);
    line-height: 1.75;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
           RESPONSIVE
        ================================================================ */

@media (max-width: 1199.98px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-cell:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-pad {
        padding: 60px 0;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell:first-child {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-pad {
        padding: 50px 0;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .why-features {
        gap: var(--space-4);
    }

    .value-card {
        padding: var(--space-5);
    }

    .team-img-wrap {
        height: 220px;
    }

    .award-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ================================================================
           ANIMATIONS
        ================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================================
   11. SECTION: CONTACT US
================================================================ */

#contact-us {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

/* Decorative quote mark */
#contact-us::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 28rem;
    color: rgba(255, 255, 255, 0.015);
    position: absolute;
    top: -80px;
    right: -30px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Contact info items */
.contact-info-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    margin-bottom: var(--space-8);
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--gold);
}

.contact-info-label {
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    display: block;
}

.contact-info-value {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Social links */
.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-8);
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Contact Form Container */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 42px;
    position: relative;
    z-index: 1;
}

/* Form labels */
.form-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: var(--space-2);
    display: block;
}

/* Form inputs */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--white) !important;
    border-radius: var(--radius-md) !important;
    padding: 13px 16px !important;
    font-size: var(--text-md) !important;
    font-family: var(--font-body) !important;
    line-height: 1.5;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.28) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(201, 168, 76, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12) !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.09) !important;
}

/* Dark select options */
.form-select option {
    background: var(--navy);
    color: var(--white);
}

textarea.form-control {
    resize: none;
}

/* Submit button */
.btn-submit {
    background: var(--gold);
    color: var(--navy);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
}

.btn-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Form success state */
.form-success {
    display: none;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    color: var(--success);
    font-size: var(--text-base);
    text-align: center;
    margin-top: var(--space-4);
}

/* Mobile contact */
@media (max-width: 575px) {
    .contact-form-wrap {
        padding: 28px 20px;
    }

    #contact-us::before {
        font-size: 16rem;
        top: 0;
        right: -20px;
    }
}


/* ================================================================
   12. FOOTER
================================================================ */

footer {
    background: var(--navy);
    border-top: 1px solid var(--gold-border);
}

.footer-main {
    padding: 80px 0 50px;
}

/* Brand */
.footer-brand {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    display: block;
    text-decoration: none;
}

.footer-brand span {
    color: var(--gold);
}

.footer-desc {
    font-size: var(--text-base);
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: var(--space-6);
}

/* Section headings */
.footer-heading {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--gold-border);
    display: block;
}

/* Nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: var(--text-base);
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::before {
    width: 14px;
}

/* Contact items */
.footer-contact-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: var(--text-base);
    color: var(--gray-500);
    line-height: 1.65;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
    flex-wrap: wrap;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.footer-bottom a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer mobile */
@media (max-width: 767px) {
    .footer-main {
        padding: 56px 0 36px;
    }

    .footer-desc {
        max-width: 100%;
    }
}
/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: var(--space-4);
}

/* Footer Logo */
.footer-logo-link {
    display: block;
    margin-bottom: var(--space-4);
    width: 140px;
    height: 65px;
    overflow: hidden;
    position: relative;
}

.footer-logo-img {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%) scale(3.0);
    transform-origin: center center;
    width: 140px;
    height: 65px;
    max-width: none;
    max-height: none;
    min-height: unset;
    object-fit: contain;
    display: block;
}


/* ================================================================
   13. ANIMATIONS & KEYFRAMES
================================================================ */

/* Scroll pulse for hero line */
@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.90);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

/* Shimmer loading */
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

/* Float */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Spin */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Gold shimmer text */
@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Page loader bar */
@keyframes loaderBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


/* ================================================================
   14. SCROLL REVEAL (toggled by JS IntersectionObserver)
================================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PURANA */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== REVEAL FIX — NO JS NEEDED ===== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.10s !important;
}

.delay-2 {
    transition-delay: 0.20s !important;
}

.delay-3 {
    transition-delay: 0.30s !important;
}

.delay-4 {
    transition-delay: 0.40s !important;
}

.delay-5 {
    transition-delay: 0.50s !important;
}

.delay-6 {
    transition-delay: 0.60s !important;
}


/* ================================================================
   15. FORMS (general / light theme pages)
================================================================ */

/* Light form (for pages with white bg) */
.form-light .form-label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: var(--space-2);
    display: block;
}

.form-light .form-control,
.form-light .form-select {
    background: var(--white) !important;
    border: 1.5px solid var(--gray-300) !important;
    color: var(--navy) !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 16px !important;
    font-size: var(--text-md) !important;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-light .form-control::placeholder {
    color: var(--gray-400) !important;
}

.form-light .form-control:focus,
.form-light .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px var(--gold-glow) !important;
    outline: none !important;
}

/* Form group spacing */
.form-group {
    margin-bottom: var(--space-5);
}

/* Input with icon */
.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    pointer-events: none;
}

.input-icon-wrap .form-control {
    padding-left: 42px !important;
}

/* Validation */
.is-valid-custom {
    border-color: var(--success) !important;
}

.is-invalid-custom {
    border-color: var(--error) !important;
}

.invalid-feedback-custom {
    font-size: var(--text-xs);
    color: var(--error);
    margin-top: 4px;
    display: block;
}


/* ================================================================
   16. BUTTONS (full system)
================================================================ */

/* Base button reset */
.btn-rr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all 0.28s ease;
    white-space: nowrap;
    line-height: 1.4;
}

/* Sizes */
.btn-rr-sm {
    font-size: var(--text-xs);
    padding: 7px 16px;
}

.btn-rr-md {
    font-size: var(--text-sm);
    padding: 11px 24px;
}

.btn-rr-lg {
    font-size: var(--text-base);
    padding: 14px 32px;
}

.btn-rr-xl {
    font-size: var(--text-md);
    padding: 16px 40px;
}

/* Variants */
.btn-rr-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-rr-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-rr-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-rr-navy:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    color: var(--gold);
    transform: translateY(-1px);
}

.btn-rr-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-rr-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-rr-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-rr-outline-navy:hover {
    background: var(--navy);
    color: var(--gold);
}

.btn-rr-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.50);
}

.btn-rr-outline-white:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--white);
    color: var(--white);
}

.btn-rr-ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: var(--gray-300);
}

.btn-rr-ghost:hover {
    background: var(--gray-100);
    color: var(--navy);
}

/* Full width */
.btn-rr-block {
    width: 100%;
}

/* Loading spinner state */
.btn-rr.loading {
    pointer-events: none;
    opacity: 0.75;
    position: relative;
}

.btn-rr.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 8px;
    display: inline-block;
}


/* ================================================================
   17. CARDS (general purpose)
================================================================ */

/* Info / Feature card */
.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    border-color: var(--gold-border-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Dark card */
.dark-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: all 0.3s ease;
    height: 100%;
}

.dark-card:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: var(--gold-border-md);
    transform: translateY(-4px);
}

/* Icon card */
.icon-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-card-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.info-card:hover .icon-card-icon,
.dark-card:hover .icon-card-icon {
    background: var(--gold);
}

.info-card:hover .icon-card-icon i,
.dark-card:hover .icon-card-icon i {
    color: var(--navy);
}

.icon-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-2);
}

.dark-card .icon-card-title {
    color: var(--white);
}

.icon-card-desc {
    font-size: var(--text-base);
    color: var(--gray-500);
    line-height: 1.75;
    margin: 0;
}

/* Testimonial card */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold-border);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 28px;
    opacity: 0.35;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--space-3);
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: var(--text-md);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-border);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    font-size: var(--text-md);
    line-height: 1.2;
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--gray-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ================================================================
   18. BADGES & TAGS
================================================================ */

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    line-height: 1.4;
}

.tag-gold {
    background: var(--gold-subtle);
    color: var(--gold-dark);
    border: 1px solid var(--gold-border);
}

.tag-navy {
    background: rgba(10, 22, 40, 0.08);
    color: var(--navy);
    border: 1px solid var(--navy-border);
}

.tag-green {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.tag-red {
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.30);
}

.tag-white {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.20);
}


/* ================================================================
   19. PAGE: PROJECTS (projects.html / /projects)
================================================================ */

.projects-page-hero {
    background: var(--navy);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-border);
}

.projects-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid layout for project listing */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-8);
}

@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* Sidebar filter panel */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.filter-sidebar-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--gray-200);
}

/* Price range slider */
.range-slider-wrap {
    padding: var(--space-2) 0 var(--space-4);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-base);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Checkbox filters */
.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    cursor: pointer;
}

.filter-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}

.filter-checkbox-label {
    font-size: var(--text-base);
    color: var(--gray-600);
    transition: color var(--transition-base);
}

.filter-checkbox-item:hover .filter-checkbox-label {
    color: var(--navy);
}

.filter-checkbox-count {
    margin-left: auto;
    font-size: var(--text-xs);
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}


/* ================================================================
   20. PAGE: APPROACH (approach.html)
================================================================ */

.approach-timeline {
    position: relative;
    padding-left: 48px;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.10));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-12);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.timeline-label {
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-2);
    display: block;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-3);
    line-height: 1.25;
}

.timeline-desc {
    font-size: var(--text-md);
    color: var(--gray-600);
    line-height: 1.78;
    max-width: 540px;
}


/* ================================================================
   21. PAGE: WHY US (why-us.html)
================================================================ */

/* Team member cards */
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.team-img-wrap {
    height: 280px;
    overflow: hidden;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-body {
    padding: var(--space-5) var(--space-6);
    border-top: 3px solid var(--gold);
}

.team-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: var(--text-sm);
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    display: block;
}

.team-bio {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.team-social {
    display: flex;
    gap: var(--space-2);
}

.team-social a {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Awards section */
.award-item {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--gray-200);
}

.award-item:last-child {
    border-bottom: none;
}

.award-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.award-title {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.award-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}


/* ================================================================
   22. PAGE: CONTACT (contact.html)
================================================================ */

.contact-page-map {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.contact-page-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* FAQ accordion */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.open {
    border-color: var(--gold-border-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--navy);
    transition: color 0.25s ease;
    background: transparent;
    width: 100%;
    text-align: left;
    border: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-6) var(--space-5);
    font-size: var(--text-md);
    color: var(--gray-600);
    line-height: 1.78;
}

.faq-item.open .faq-answer {
    display: block;
}


/* ================================================================
   23. INNER PAGE HERO (sub-pages)
================================================================ */

.page-hero {
    background-image: url('/frontend/assets/images/hero/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 185px 0;
    position: relative;
    color: #fff;
}

/* Dark overlay (optional but recommended) */
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.page-hero-sub {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.70);
    max-width: 540px;
    line-height: 1.75;
    margin: 0;
}


/* ================================================================
   24. BREADCRUMB
================================================================ */

.breadcrumb-rr {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.breadcrumb-rr a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-rr a:hover {
    color: var(--gold);
}

.breadcrumb-rr .sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: var(--text-sm);
}

.breadcrumb-rr .current {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 500;
}


/* ================================================================
   25. PAGINATION
================================================================ */

.pagination-rr {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-12);
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--navy);
    font-size: var(--text-base);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.page-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.page-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* ================================================================
   26. MODALS
================================================================ */

.modal-rr .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.modal-rr .modal-header {
    background: var(--navy);
    border-bottom: 1px solid var(--gold-border);
    padding: var(--space-5) var(--space-6);
}

.modal-rr .modal-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--white);
    font-weight: 700;
}

.modal-rr .modal-body {
    padding: var(--space-6) var(--space-8);
}

.modal-rr .modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: var(--space-4) var(--space-8);
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end;
}

.modal-rr .btn-close {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    opacity: 1;
    filter: invert(1);
    width: 32px;
    height: 32px;
}

/* Property detail modal */
.property-modal-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    display: block;
}


/* ================================================================
   27. ALERTS & TOASTS
================================================================ */

.alert-rr {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.alert-rr i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: #15803d;
}

.alert-error {
    background: var(--error-bg);
    border: 1px solid rgba(239, 68, 68, 0.30);
    color: #b91c1c;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.10);
    border: 1px solid rgba(245, 158, 11, 0.30);
    color: #92400e;
}

.alert-info {
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.30);
    color: #1d4ed8;
}

/* Toast notification */
.toast-rr {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--navy);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    color: var(--white);
    font-size: var(--text-base);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-toast);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 280px;
    max-width: 360px;
    animation: fadeInRight 0.35s ease forwards;
}

.toast-rr i {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-rr.hiding {
    animation: fadeInRight 0.3s ease reverse forwards;
}


/* ================================================================
   28. TABLES
================================================================ */

.table-rr {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-base);
    color: var(--navy);
}

.table-rr th {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--navy);
    padding: var(--space-4) var(--space-5);
    text-align: left;
    border-bottom: 2px solid var(--gold-border);
    white-space: nowrap;
}

.table-rr td {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    vertical-align: middle;
}

.table-rr tr:hover td {
    background: var(--off-white);
}

.table-rr tr:last-child td {
    border-bottom: none;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}


/* ================================================================
   29. TABS & ACCORDIONS
================================================================ */

/* Tabs */
.tabs-rr {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-8);
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-rr::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--gray-500);
    padding: var(--space-3) var(--space-5);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: -2px;
    transition: all 0.25s ease;
}

.tab-btn:hover {
    color: var(--navy);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    font-weight: 600;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Accordion */
.accordion-rr {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-item-rr {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item-rr:last-child {
    border-bottom: none;
}

.accordion-btn-rr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease, background 0.25s ease;
}

.accordion-btn-rr:hover {
    background: var(--gray-100);
}

.accordion-btn-rr.open {
    color: var(--gold);
    background: var(--off-white);
}

.accordion-btn-rr .acc-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--gray-500);
}

.accordion-btn-rr.open .acc-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.accordion-body-rr {
    display: none;
    padding: 0 var(--space-6) var(--space-5);
    font-size: var(--text-md);
    color: var(--gray-600);
    line-height: 1.78;
}

.accordion-item-rr.open .accordion-body-rr {
    display: block;
}


/* ================================================================
   30. RESPONSIVE OVERRIDES — all breakpoints
================================================================ */

/* ---- XL: 1400px+ ---- */
@media (min-width: 1400px) {
    :root {
        --section-py: 120px;
    }

    .container {
        max-width: var(--container-max);
    }
}

/* ---- LG: 1200px – 1399px ---- */
@media (max-width: 1199.98px) {
    .why-img-badge {
        right: 0;
    }
}

/* ---- MD: 992px – 1199px ---- */
@media (max-width: 991.98px) {
    :root {
        --section-py: 80px;
    }

    #heroSlider {
        height: 90vh;
        min-height: 580px;
    }

    .step-connector {
        display: none;
    }

    .why-img-wrap img {
        height: 400px;
    }

    .why-img-badge {
        right: 12px;
        bottom: 20px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- SM: 768px – 991px ---- */
@media (max-width: 767.98px) {
    :root {
        --section-py: 70px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-sub {
        font-size: var(--text-md);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.7rem, 5vw, 2.4rem);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .approach-step {
        padding: 26px 20px;
    }

    .why-img-wrap img {
        height: 320px;
    }

    .why-img-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: var(--space-4);
        width: fit-content;
    }

    .counters-row .row>*+* {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .counter-item+.counter-item::before {
        display: none;
    }

    .footer-main {
        padding: 56px 0 36px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .contact-form-wrap {
        padding: 24px 16px;
    }

    .approach-cta-strip {
        flex-direction: column;
        padding: 24px 20px;
    }

    .filter-sidebar {
        position: static;
    }
}

/* ---- XS: < 576px ---- */
@media (max-width: 575.98px) {
    :root {
        --section-py: 56px;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .hero-arrow-prev {
        left: 10px;
    }

    .hero-arrow-next {
        right: 10px;
    }

    .hero-controls {
        bottom: 28px;
    }

    .hero-scroll {
        display: none;
    }

    h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .section-label {
        font-size: 0.68rem;
    }

    .stat-item {
        padding: 14px 8px;
    }

    .stat-num {
        font-size: 1.7rem;
    }

    .property-meta {
        flex-wrap: wrap;
        gap: var(--space-3);
    }

    .counters-row {
        padding: 24px 12px;
    }

    .counter-num {
        font-size: 1.8rem;
    }

    .contact-info-item {
        gap: var(--space-2);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    #contact-us::before {
        display: none;
    }

    .btn-rr-lg {
        padding: 12px 24px;
    }

    .btn-rr-xl {
        padding: 13px 28px;
    }

    .toast-rr {
        left: 16px;
        right: 16px;
        min-width: unset;
        bottom: 16px;
    }

    .modal-rr .modal-body {
        padding: var(--space-5);
    }

    .tabs-rr {
        gap: 0;
    }

    .tab-btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }
}

/* ---- Print ---- */
@media print {

    #siteHeader,
    footer,
    .hero-arrow,
    .hero-controls {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: inherit;
        text-decoration: underline;
    }

    .section-pad {
        padding: 30pt 0;
    }
}


/* constact us page css  */

/* ================================================================
               CONTACT INFO CARDS
            ================================================================ */

#contact-info {
    background: var(--white);
    padding: 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.contact-info-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--gold-border-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: all var(--transition-base);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-info-icon i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: color var(--transition-base);
}

.contact-info-card:hover .contact-info-icon i {
    color: var(--navy);
}

.contact-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    display: block;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* ================================================================
               CONTACT FORM SECTION
            ================================================================ */

#contact-form-section {
    background: var(--off-white);
    padding: 50px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.form-content p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.form-features {
    display: grid;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.form-feature-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.form-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
}

.form-feature-item strong {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-feature-item p {
    font-size: 0.9rem;
    margin: 4px 0 0 0;
    color: var(--gray-600);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-2);
    display: block;
}

.form-control,
.form-select {
    background: var(--white) !important;
    border: 1.5px solid var(--gray-300) !important;
    color: var(--navy) !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    line-height: 1.5;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.form-control::placeholder {
    color: var(--gold) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12) !important;
    outline: none !important;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-group-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.form-group-2col .form-group {
    margin-bottom: 0;
}

/* Submit Button */
.btn-submit {
    background: var(--gold);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
}

.btn-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.form-success {
    display: none;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    color: var(--success);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: var(--space-5);
}

.form-success.show {
    display: block;
}

/* ================================================================
               OFFICES
            ================================================================ */

#offices {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#offices::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.office-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.office-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold-border-md);
    transform: translateY(-4px);
}

.office-city {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.office-address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.75;
    margin-bottom: var(--space-4);
}

.office-contact-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    margin-bottom: var(--space-3);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.60);
}

.office-contact-item i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.office-contact-item a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color var(--transition-base);
}

.office-contact-item a:hover {
    color: var(--gold);
}

.office-hours {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.50);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--space-4);
}

/* ================================================================
               FAQ
            ================================================================ */

#faq {
    background: var(--white);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.faq-content h3 {
    margin-bottom: var(--space-4);
}

.faq-content p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--gray-600);
}

.faq-list {
    display: grid;
    gap: var(--space-4);
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.open {
    border-color: var(--gold-border-md);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--transition-base);
    background: transparent;
    width: 100%;
    text-align: left;
    border: none;
}

.faq-question:hover {
    background: var(--off-white);
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--navy);
    transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-6) var(--space-5);
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.78;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ================================================================
               CTA SECTION
            ================================================================ */

#cta-section {
    background: var(--navy-mid);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-border);
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 2.5rem;
}

.cta-content h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    margin-bottom: var(--space-8);
    line-height: 1.75;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    padding: 15px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
               RESPONSIVE
            ================================================================ */

@media (max-width: 1199.98px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-pad {
        padding: 60px 0;
    }

    .form-group-2col {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: var(--space-6);
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-pad {
        padding: 50px 0;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .form-features {
        gap: var(--space-3);
    }

    .form-feature-item {
        gap: var(--space-3);
    }
}

/* ================================================================
               ANIMATIONS
            ================================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}