@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700&family=Cormorant+Garamond:wght@400;500;600&family=Tajawal:wght@400;500;700&display=swap');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

:root {

    /* Primary Font Stacks */
    --font-body: 'Inter', 'Tajawal', system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;

    /* Base Typography */
    --font-size-base: 16px;
    --font-size-base-mobile: 14px;
    --line-height-base: 1.5;
    --line-height-tight: 1.2;
    --line-height-loose: 1.6;
    
    /* Scale Ratio: Perfect Fourth (1.333) */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-md: 1rem;       /* 16px */
    --font-size-lg: 1.333rem;   /* 21px */
    --font-size-xl: 1.777rem;   /* 28px */
    --font-size-2xl: 2.369rem;  /* 38px */
    --font-size-3xl: 3.157rem;  /* 50px */
    
    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.02em;
    --letter-spacing-wider: 0.05em;

    --text-secondary: hsl(215 14% 27% / 1) !important;
    --text-tertiary: hsl(220 9% 36% / 1) !important;

    --color-gray-light: #F5F7FA;

    --gold: hsl(42 61% 52%);
    --gold: 42 61% 52%;
    --gold-light: 40 38% 63%;
    --gold-dark: 40 38% 43%;
    --secondary-bg: 42 50% 97.1%;
}

/* Complete typography CSS — Copy this block */

* {
    opacity: 1 !important;
}


html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body) !important;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-base);
    color: #111827;
    background-color: #FFFFFF;
}


.bg-almanza-gray-light {
    background-color: var(--color-gray-light);
}
















/* header / navbar */



  /* Desktop: parent active during submenu hover */
  .dropdown.parent-active > a,
  .nested-dropdown.parent-active > a {
    color: var(--gold-accent) !important;
    border-bottom-color: var(--gold-accent) !important;
  }
  
  /* Ensure no flickering */
  .dropdown > a, .nested-dropdown > a {
    transition: color 0.15s, border-color 0.15s;
  }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #FFFFFF;
      color: #1A2A3A;
    }

    /* Design System */
    :root {
      --navy-deep: #0A2540;
      --gold-accent: #C6A142;
      --gold-bright: #D4AE4A;
      --text-primary: #1A2A3A;
      --text-secondary: #4F5E6F;
      --border-light: #EAEDF2;
      --shadow-menu: 0 12px 28px rgba(0,0,0,0.06);
    }

    /* Demo Hero */
    .demo-hero {
      max-width: 1400px;
      margin: 2rem auto;
      padding: 2rem 3rem;
      background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
      border-radius: 28px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    /* Header */
    .almanza-header {
      background: rgba(255,255,255,1);
      border-bottom: 1px solid var(--border-light);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .top-bar {
      background: #F8FAFE;
      padding: 0.6rem 3rem;
      font-size: 0.7rem;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border-light);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .reg-text i { margin-right: 6px; color: var(--gold-accent); }
    .lang-switch a {
      text-decoration: none;
      color: var(--text-secondary);
      font-weight: 500;
      margin-left: 1.2rem;
      font-size: 0.75rem;
      transition: all 0.2s;
    }
    .lang-switch a:hover, .lang-switch .active-lang { color: var(--gold-accent); }

    .nav-container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 1rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* Logo */
    .logo-area { display: flex; align-items: baseline; gap: 1rem; }
    .logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 0.6rem;
    }
    .logo-icon {
      background: var(--navy-deep);
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.6rem;
      color: var(--gold-accent);
    }
    .logo-text {
      font-size: 1.55rem;
      font-weight: 600;
      color: var(--navy-deep);
    }
    .logo-text span { font-weight: 500; color: var(--gold-accent); }
    .tagline {
      font-size: 0.7rem;
      color: #6C7A8A;
      border-left: 1px solid var(--border-light);
      padding-left: 1rem;
    }

    /* Desktop Navigation (Hover works naturally) */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      list-style: none;
    }


    @media(min-width: 1000px){
      .nav-links {
        position: relative;
        top: 32px;
      }

      .nav-actions {
        position: relative;
        top: 28px;
      }
    }

    .nav-links li { position: relative; }
    .nav-links > li > a {
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      transition: all 0.2s;
      padding: 0.3rem 0;
      border-bottom: 2px solid transparent;
    }
    .nav-links > li > a:hover {
      color: var(--gold-accent);
      border-bottom-color: var(--gold-accent);
    }

    /* Dropdown menus - Desktop hover uses CSS, Mobile uses class toggles */
    .dropdown-menu {
        position: absolute;
        top: 112%;
        left: -0.5rem;
        background: #FFFFFF;
        min-width: 240px;
        border-radius: 0px;
        box-shadow: var(--shadow-menu);
        padding: 0.6rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        /* transition: opacity 0.2s, visibility 0.2s, transform 0.2s; */
        border: 1px solid var(--border-light);
        z-index: 1001;
        /* transition: none !important; */
    }
    /* .dropdown-menu {
      position: absolute;
      top: 110%;
      left: -1rem;
      background: #FFFFFF;
      min-width: 240px;
      border-radius: 16px;
      box-shadow: var(--shadow-menu);
      padding: 0.6rem 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      border: 1px solid var(--border-light);
      z-index: 1001;
    } */
    /* Desktop hover trigger */
    @media (min-width: 1101px) {
      .dropdown:hover > .dropdown-menu,
      .nested-dropdown:hover > .nested-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
    }
    .dropdown-menu li { list-style: none; }
    .dropdown-menu a {
      display: block;
      padding: 0.55rem 1.5rem;
      font-size: 1rem;
      font-weight: 450;
      color: var(--text-primary);
      /* transition: all 0.2s; */
    }
    .dropdown-menu a:hover {
      background: #F8FAFE;
      color: var(--gold-accent);
      /* padding-left: 1.8rem; */
    }

    /* Nested (Real Estate) */
    .nested-dropdown { position: relative; }
    .nested-dropdown > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nested-dropdown > a::after {
      content: "\f0da";
      font-family: "Font Awesome 6 Free";
      font-weight: 600;
      font-size: 0.75rem;
      color: #8E9AAB;
      margin-left: 0.8rem;
    }
    .nested-menu {
      position: absolute;
      top: 0;
      left: 100%;
      background: #FFFFFF;
      min-width: 220px;
      border-radius: 0px;
      box-shadow: var(--shadow-menu);
      padding: 0.6rem 0;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-6px);
      /* transition: opacity 0.2s, visibility 0.2s, transform 0.2s; */
      border: 1px solid var(--border-light);
      z-index: 1002;
    }
    .nested-menu a { white-space: nowrap; }

    /* Right CTAs */
    .nav-actions { display: flex; align-items: center; gap: 1rem; }
    .portal-btn {
      background: transparent;
      border: 1px solid var(--gold-accent);
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--gold-accent);
      text-decoration: none;
      transition: all 0.2s;
    }
    .portal-btn:hover { background: var(--gold-accent); color: var(--navy-deep); }
    .consult-btn {
      background: var(--gold-accent);
      color: var(--navy-deep);
      padding: 0.5rem 1.4rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.8rem;
      text-decoration: none;
    }
    .consult-btn:hover { background: var(--gold-bright); _transform: translateY(-1px); }

    /* .mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--navy-deep); } */


    .mobile-toggle {
        display: none;
        font-size: 2.5rem;
        cursor: pointer;
        color: var(--navy-deep);
        position: relative;
        top: 16px;
        right: 8px;
    }

    .header_contacts_stef {
      position: absolute;
      left: 320px;
      top: 24px;
    }

    /* ========== MOBILE STYLES (critical for dropdown toggling) ========== */
    @media (max-width: 1100px) {
      .mobile-toggle { display: block; }
      .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 0 2rem;
        box-shadow: 12px 0 30px rgba(0,0,0,0.08);
        transition: left 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        overflow-y: auto;
        z-index: 1100;
        gap: 0;
      }
      .nav-links.active { left: 0; }
      .nav-links li { width: 100%; margin: 0; }
      .nav-links > li > a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-bottom: none;
      }
      
      /* Reset all dropdowns for mobile: static positioning, block display, hidden by default */
      .dropdown-menu, .nested-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: #F8FAFE;
        border: none;
        border-radius: 0;
        width: 100%;
        display: none; /* hidden until toggled */
      }
      
      /* When active class is added, display the submenu */
      .dropdown.active-menu > .dropdown-menu,
      .nested-dropdown.active-nested > .nested-menu {
        display: block;
      }
      
      .dropdown-menu a, .nested-menu a {
        padding: 0.8rem 1rem 0.8rem 2.5rem;
        font-size: 0.9rem;
      }
      
      /* Adjust nested indicator for mobile */
      .nested-dropdown > a::after {
        content: "\f0d7";
        float: right;
      }
      .tagline { display: none; }

      .header_contacts_stef { display: none; }
    }

    

    @media (max-width: 680px) {
      .top-bar { flex-direction: column; text-align: center; padding: 0.5rem 1rem; }
      .nav-container { padding: 0.8rem 1rem; }
      .logo-text { font-size: 1.3rem; }
      .logo-icon { width: 32px; height: 32px; font-size: 1.3rem; }
    }
 

    .dropdown {
      position: relative;
    }
    .dropdown > a::after {
      content: "\f0d7";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 0.7rem;
      margin-left: 0.4rem;
      color: var(--text-mid);
      position: relative;
      top: -3px;
    }

















    /* hero section */



    /* ========== HERO SECTION (FULLSCREEN VIDEO BACKGROUND) ========== */
    .hero-video-section {
      position: relative;
      width: 100%;
      height: 100vh;               /* Full viewport height */
      min-height: 700px;
      overflow: hidden;
      isolation: isolate;
    }

    /* Video wrapper - ensures full bleed */
    .hero-video-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    /* Video element - covers entire area, maintains aspect ratio */
    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      object-fit: cover;
      /* subtle slow zoom effect (cinematic) */
      animation: slowZoom 20s ease-in-out infinite alternate;
    }

    /* Gentle slow zoom for premium feel */
    @keyframes slowZoom {
      0% { transform: translate(-50%, -50%) scale(1); }
      100% { transform: translate(-50%, -50%) scale(1.08); }
    }

    /* Dark overlay (institutional richness + text contrast) */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10,26,47,0.75) 0%, rgba(0,0,0,0.4) 100%);
      z-index: 1;
    }

    /* Content container - centered over video */
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      height: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Text styling - premium, crisp */
    .hero-pre-headline {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: #C6A142;
      margin-bottom: 1.2rem;
      background: rgba(0,0,0,0.3);
      display: inline-block;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      backdrop-filter: blur(4px);
    }

    .hero-headline {
      /* font-family: 'Cormorant Garamond', serif; */
      font-size: 3.2rem;
      font-weight: 600;
      line-height: 1.2;
      color: #FFFFFF;
      text-shadow: 0 2px 12px rgba(0,0,0,0.25);
      margin-bottom: 1.2rem;
      max-width: 900px;
    }

    .hero-headline span {
      color: #C6A142;
      font-style: italic;
    }

    .hero-subheadline {
      font-family: 'Inter', sans-serif;
      font-size: 1.2rem;
      font-weight: 400;
      line-height: 1.5;
      color: rgba(255,255,255,0.95);
      max-width: 650px;
      margin-bottom: 2rem;
      text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }

    /* Dual CTAs */
    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .hero-video-section .btn-primary {
      background: #C6A142;
      color: #0A2540;
      padding: 0.9rem 2.2rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s ease;
      letter-spacing: 0.3px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-video-section .btn-primary:hover {
      background: #D4AE4A;
      /* transform: translateY(-2px); */
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

    .hero-video-section .btn-secondary {
      background: transparent;
      border: 1.5px solid #FFFFFF;
      color: #FFFFFF;
      padding: 0.9rem 2.2rem;
      border-radius: 60px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s ease;
      backdrop-filter: blur(4px);
    }

    .hero-video-section .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      /* transform: translateY(-2px); */
      border-color: #C6A142;
    }

    /* scroll indicator (bouncing chevron) */
    .hero-video-section .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      cursor: pointer;
      animation: bounce 2s infinite ease;
      background: rgba(0,0,0,0.4);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      transition: all 0.2s;
    }

    .hero-video-section .scroll-indicator:hover {
      background: rgba(198,161,66,0.7);
    }

    .hero-video-section .scroll-indicator i {
      color: white;
      font-size: 1.2rem;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .hero-headline {
        font-size: 2.1rem;
      }
      .hero-subheadline {
        font-size: 1rem;
      }
      .hero-pre-headline {
        font-size: 0.7rem;
        letter-spacing: 3px;
      }
      .hero-video-section .btn-primary, .hero-video-section .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
      }
      .scroll-indicator {
        width: 32px;
        height: 32px;
        bottom: 1rem;
      }
      
      ul.nested-menu {
    	padding-left: 24px;
    }
    }

    /* optional fallback if video fails */
    .hero-video-section .no-video-fallback {
      display: none;
    }
  
























    /* OUR SERVICES */


    
/* SECTION */
.services-section {
  background: #f4f7fa;
  padding: 80px 0;
}

/* CONTAINER */
.services-section .container {
  width: 1240px;
  margin: auto;
}

/* HEADER */
.services-section .services-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.services-section .services-header h2 {
  /* font-size: 28px; */
  /* color: #1f3a5f; */
  margin-bottom: 10px;
}

/* .services-section .services-header p {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.6;
} */

/* GRID */
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.services-section .service-card {
  background: #ffffff;
  border: 1px solid #d6dde6;
  transition: all 0.25s ease;
}

.services-section .service-card:hover {
  /* transform: translateY(-4px); */
  border-color: #C6A142;
}

/* IMAGE */
.services-section .service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.services-section .service-content {
  padding: 18px;
}

.services-section .service-content h3 {
  /* font-size: 16px;
  color: #1f2d3d; */
  margin-bottom: 8px;
}

.services-section .service-content p {
  /* font-size: 13px;
  color: #5a6a7a;
  line-height: 1.5; */
  margin-bottom: 10px;
}

.services-section .service-content a {
  /* font-size: 13px; */
  color: #C6A142;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-section .container {
    width: 100%;
  }

  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
  
  .container, .px-4 {
    	padding-right: 1.5rem !important;
    	padding-left: 1.5rem !important;
    }
}


















/* SECTION */
.clients-section {
  padding: 100px 0 !important;
}

.clients-section .container {
  width: 1240px !important;
  margin: auto !important;
}

/* =========================
   LAYOUT
========================= */
.clients-section .clients-wrapper {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 40px !important;
}

/* =========================
   LEFT PANEL
========================= */
.clients-section .clients-intro {
  position: sticky !important;
  top: 100px !important;
}

.clients-section .clients-intro h2 {
  font-size: 32px !important;
  color: #1f3a5f !important;
  margin-bottom: 16px !important;
}

.clients-section .clients-intro p {
  font-size: 15px !important;
  color: #5a6a7a !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

/* subtle divider */
.clients-section .clients-intro .line {
  width: 60px !important;
  height: 2px !important;
  background: #1f3a5f !important;
}

/* =========================
   GRID RIGHT
========================= */
.clients-section .clients-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 22px !important;
}

/* CARD */
.clients-section .client-card {
  position: relative !important;
  height: 240px !important;
  overflow: hidden !important;
  border: 1px solid #d6dde6 !important;
  background: #000 !important;
}

/* IMAGE */
.clients-section .client-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: 0.4s ease !important;
}

/* DARK OVERLAY */
.clients-section .client-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(10, 25, 45, 0.85),
    rgba(10, 25, 45, 0.2)
  ) !important;
}

/* CONTENT */
.clients-section .client-content {
  position: absolute !important;
  bottom: 0 !important;
  padding: 20px !important;
  color: #fff !important;
  transform: translateY(20px) !important;
  transition: 0.3s ease !important;
}

.clients-section .client-content h3 {
  font-size: 17px !important;
  margin-bottom: 6px !important;
}

.clients-section .client-content p {
  font-size: 13px !important;
  opacity: 0.9 !important;
  line-height: 1.5 !important;
}

/* LINK */
.clients-section .client-content a {
  display: inline-block !important;
  margin-top: 8px !important;
  font-size: 13px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 0 !important;
  transition: 0.3s ease !important;
}

/* HOVER EFFECT */
.clients-section .client-card:hover img {
  transform: scale(1.08) !important;
}

.clients-section .client-card:hover .client-content {
  transform: translateY(0) !important;
}

.clients-section .client-card:hover a {
  opacity: 1 !important;
}

.clients-section .client-card:hover {
  border-color: #1f3a5f !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
 .clients-section .container {
    width: 90% !important;
  }

  .clients-section .clients-wrapper {
    grid-template-columns: 1fr !important;
  }

  .clients-section .clients-intro {
    position: static !important;
  }

 .clients-section .clients-grid {
    grid-template-columns: 1fr !important;
  }
}









/* additional custom creative touches */
    .hero-pattern .card-hover-effect {
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .hero-pattern .card-hover-effect:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 30px 45px -20px rgba(0,0,0,0.25);
    }
    .hero-pattern .gold-gradient-text {
      background: linear-gradient(135deg, #C6A142 0%, #E4BC6A 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-pattern .hero-pattern {
      background-image: radial-gradient(circle at 10% 20%, rgba(198,161,66,0.03) 0%, rgba(10,37,64,0.02) 90%);
    }
    .hero-pattern .image-overlay-gradient {
      background: linear-gradient(145deg, rgba(10,37,64,0.6) 0%, rgba(0,0,0,0.2) 100%);
    }



























    /* ========== FULL-WIDTH PREMIUM CTA – REPORT A CONCERN (NO MARGINS) ========== */
    .report-cta-fullwidth {
      width: 100%;
      position: relative;
      margin: 0;
      padding: 0;
    }

    /* Main card — spans edge to edge, no border radius on sides */
    .report-cta-fullwidth .cta-card-full {
      position: relative;
      background: linear-gradient(135deg, #0A2540 0%, #0C2D4A 100%);
      width: 100%;
      overflow: hidden;
      box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }

    /* Abstract background patterns (luxury institutional) */
    .report-cta-fullwidth .cta-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.06;
      background-image: 
        repeating-linear-gradient(45deg, rgba(198,161,66,0.4) 0px, rgba(198,161,66,0.4) 2px, transparent 2px, transparent 12px),
        radial-gradient(circle at 30% 40%, rgba(198,161,66,0.2) 1px, transparent 1px);
      background-size: 30px 30px, 40px 40px;
      pointer-events: none;
    }

    .report-cta-fullwidth .cta-glow-right {
      position: absolute;
      top: -30%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(198,161,66,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .report-cta-fullwidth .cta-glow-left {
      position: absolute;
      bottom: -25%;
      left: -5%;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(198,161,66,0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    /* gold diagonal accent line */
    .report-cta-fullwidth .gold-accent-line {
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 4px;
      background: linear-gradient(90deg, transparent, #C6A142, #C6A142, transparent);
      opacity: 0.6;
    }

    /* container for inner content — centered but full-width background */
    .report-cta-fullwidth .cta-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 4rem 3rem;
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
    }

    /* left text area */
    .report-cta-fullwidth .cta-text-block {
      flex: 2;
      min-width: 280px;
    }

    .report-cta-fullwidth .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      padding: 0.45rem 1.2rem;
      border-radius: 60px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #C6A142;
      margin-bottom: 1.2rem;
      border: 0.5px solid rgba(198,161,66,0.4);
    }

    .report-cta-fullwidth .cta-eyebrow i {
      font-size: 0.7rem;
    }

    .report-cta-fullwidth .cta-main-title {
      /* font-family: 'Cormorant Garamond', serif; */
      font-size: 3.2rem;
      font-weight: 600;
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      letter-spacing: -0.4px;
    }

    .report-cta-fullwidth .cta-main-title span {
      color: #C6A142;
      border-bottom: 3px solid #C6A142;
      display: inline-block;
      padding-bottom: 4px;
    }

    .report-cta-fullwidth .cta-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      max-width: 600px;
      margin-bottom: 1.6rem;
      line-height: 1.6;
    }

    /* trust badges row */
    .report-cta-fullwidth .trust-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 0.5rem;
    }

    .report-cta-fullwidth .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.07);
      backdrop-filter: blur(4px);
      padding: 0.4rem 1rem;
      border-radius: 60px;
      font-size: 0.7rem;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.3px;
      border: 0.5px solid rgba(255,255,255,0.1);
    }

    .report-cta-fullwidth .trust-pill i {
      color: #C6A142;
      font-size: 0.7rem;
    }

    /* right CTA area */
    .report-cta-fullwidth .cta-action-box {
      flex: 1;
      min-width: 260px;
      text-align: center;
    }

    .report-cta-fullwidth .btn-report-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.9rem;
      background: #C6A142;
      color: #0A2540;
      font-weight: 700;
      font-size: 1rem;
      padding: 1rem 2.2rem;
      border-radius: 60px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
      width: 100%;
      max-width: 280px;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
    }

    .report-cta-fullwidth .btn-report-gold i {
      transition: transform 0.2s ease;
    }

    .report-cta-fullwidth .btn-report-gold:hover {
      background: #D4AE4A;
      transform: translateY(-3px);
      box-shadow: 0 18px 35px -8px rgba(0,0,0,0.35);
      gap: 1.1rem;
    }

    .report-cta-fullwidth .btn-report-gold:hover i {
      transform: translateX(6px);
    }

    .report-cta-fullwidth .confidential-footer-note {
      margin-top: 1.2rem;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }

    .report-cta-fullwidth .confidential-footer-note i {
      color: #C6A142;
    }

    /* responsive */
    @media (max-width: 900px) {
      .report-cta-fullwidth .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
      }
      .report-cta-fullwidth .cta-main-title {
        font-size: 2.5rem;
      }
      .report-cta-fullwidth .cta-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
      .report-cta-fullwidth .trust-badge-row {
        justify-content: center;
      }
      .report-cta-fullwidth .btn-report-gold {
        max-width: 100%;
      }
      .report-cta-fullwidth .confidential-footer-note {
        justify-content: center;
      }
    }

    @media (max-width: 550px) {
      .report-cta-fullwidth .cta-main-title {
        font-size: 1.8rem;
      }
      .report-cta-fullwidth .cta-desc {
        font-size: 0.85rem;
      }
      .report-cta-fullwidth .trust-pill {
        font-size: 0.65rem;
      }
      .report-cta-fullwidth .cta-eyebrow {
        font-size: 0.6rem;
      }
    }

    /* demo note */
    .report-cta-fullwidth .site-context {
      max-width: 1280px;
      margin: 2rem auto;
      padding: 1rem 2rem;
      text-align: center;
      color: #5A6B7F;
      font-size: 0.75rem;
      border-top: 1px solid #E4E9F0;
    }




























:root {
  --primary: #0b1f33;
  --secondary: #1f3a5f;
  --accent: #c8a96a;
  --border: #e4e7ec;
  --text: #2b2f33;
  --muted: #6b7280;
  --bg: #f9fafb;
}


/* SECTION */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  display: flex;
  justify-content: center;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

/* CARD */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* LEFT CONTENT */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-left {
  padding: 50px 60px;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-title {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}

/* BUTTON */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-button:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-button span {
  transition: transform 0.25s ease;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-button:hover span {
  transform: translateX(4px);
}

/* RIGHT PANEL */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-right {
  background: var(--primary);
  color: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* subtle pattern */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 60%);
}

/* content */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-assurance {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-highlight {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* divider */
.ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 18px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-card {
    grid-template-columns: 1fr;
  }

  .ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-left,
  .ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-right {
    padding: 40px 25px;
  }

  .ywujwwhjwkwwhsjjwjjwwjjw.cta-section .cta-title {
    font-size: 24px;
  }
}


/* .bg-scondary {
  background-color: var(--secondary) !important;
} */


.bg-secondary {
    background-color: hsl(var(--secondary-bg)) !important;
}






@media(max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem !important;
    }
}