/* Global Styles & Design System */

:root {
  /* Harrods-Inspired Palette */
  --color-primary: #0B3B2E;
  /* Harrods Green */
  --color-secondary: #072A21;
  /* Deep Forest Green */
  --color-accent: #C6A75E;
  /* Harrods Gold */
  --color-neutral: #F6F5F1;
  /* Bone White */
  --color-dark-neutral: #111111;
  /* Charcoal Black */
  --color-text-on-dark: #F6F5F1;
  --color-text-on-light: #111111;

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  /* Using Outfit as a modern geometric sans */
  --font-size-base: 16px;
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.75rem;
  --font-size-body: 1.125rem;

  /* Spacing & Layout */
  --container-width: 1320px;
  --spacing-section: 6rem;
  --spacing-element: 1.5rem;
  --border-radius: 2px;
  /* Sharp/Subtle */
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-neutral);
  color: var(--color-dark-neutral);
  line-height: 1.6;
  font-size: var(--font-size-base);
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: var(--spacing-element);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-accent);
}

.text-white {
  color: var(--color-text-on-dark);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-neutral {
  background-color: var(--color-neutral);
}

.section-padding {
  padding: 5rem 0;
}

/* Typography Overrides */
h1 {
  font-size: var(--font-size-h1);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-h2);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-h3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-accent);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-text {
  color: var(--color-accent);
  padding: 0;
  border-bottom: 1px solid var(--color-accent);
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 59, 46, 0.95);
  /* Primary with opacity */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 167, 94, 0.2);
  /* Subtle gold border */
  padding: 1.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  letter-spacing: -0.02em;
  z-index: 2;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links .mobile-cta {
  display: none;
}

.mobile-name {
  display: none;
}

.nav-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links a {
  color: var(--color-text-on-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a.active {
  color: var(--color-accent);
}

.nav-cta {
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  color: var(--color-accent);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  /* Offset for fixed header */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--color-text-on-dark);
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(246, 245, 241, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image {
  position: relative;
  height: 600px;
  background-color: var(--color-secondary);
  /* Placeholder for image */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Property Cards */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.property-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 3rem;
}

.property-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-hot {
  background: #e74c3c;
  color: white;
}

.tag-new {
  background: var(--color-accent);
  color: var(--color-primary);
}

.tag-selling {
  background: #9b59b6;
  color: white;
}

.tag-exclusive {
  background: #2c3e50;
  color: white;
}

.tag-soldout {
  background: #6c757d;
  color: white;
}

.tag-featured {
  background: linear-gradient(135deg, var(--color-accent), #d4a84b);
  color: var(--color-primary);
}

.tag-discount {
  background: #27ae60;
  color: white;
}

.tag-upcoming {
  background: #e67e22;
  color: white;
}

.property-save {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.property-save:hover {
  transform: scale(1.1);
}

.property-save i {
  color: #e74c3c;
  font-size: 1rem;
}

.property-content {
  padding: 1.25rem;
}

.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.property-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.property-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

.property-location {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.property-location i {
  color: var(--color-accent);
  margin-right: 0.25rem;
}

.property-specs {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.property-specs span {
  font-size: 0.8rem;
  color: #555;
}

.property-specs i {
  color: var(--color-primary);
  margin-right: 0.25rem;
}

.property-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--color-neutral);
  border-radius: 4px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #333;
}

.highlight i {
  color: var(--color-accent);
  width: 16px;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.developer {
  font-size: 0.8rem;
  color: #888;
}

.btn-inquire {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: white;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-inquire:hover {
  background: #1da851;
  opacity: 1;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 100%;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  color: var(--color-accent);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--color-neutral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card>p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.service-features li i {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

.service-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Criteria Grid (Why These Projects) */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.criteria-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}

.criteria-item i {
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.criteria-item h4 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 1rem;
}

.criteria-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Footer */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-accent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--color-accent);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(246, 245, 241, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 245, 241, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(246, 245, 241, 0.5);
}

/* Responsiveness */
@media (max-width: 992px) {
  :root {
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --spacing-section: 4rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: block;
    z-index: 10;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .mobile-name {
    display: block;
    color: var(--color-text-on-dark);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: auto;
    margin-right: 1rem;
    letter-spacing: 0.02em;
  }

  .nav-links .mobile-cta {
    display: block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .menu-toggle {
    order: 3;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem !important;
  }

  .hero-text p {
    margin: 0 auto 2rem;
  }

  .hero-image {
    height: 350px !important;
    order: -1;
    margin: 1.5rem auto 0;
    max-width: 320px;
  }

  .hero-image img {
    object-position: center 20% !important;
    border-radius: 8px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Property grid tablet - 2 columns */
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.25rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Center all text on mobile */
  .section-padding,
  .section-padding .container,
  .section-padding h1,
  .section-padding h2,
  .section-padding h3,
  .section-padding h4,
  .section-padding p,
  article,
  article p,
  article h3 {
    text-align: center !important;
  }

  /* Center grid items content on mobile */
  [style*="display: grid"]>div,
  [style*="display: flex"][style*="align-items: flex-start"] {
    text-align: center;
  }

  /* Center inline styled elements */
  [style*="text-align: left"] {
    text-align: center !important;
  }

  /* Center blockquotes and highlighted text */
  [style*="border-left"] {
    border-left: none !important;
    border-top: 3px solid var(--color-accent) !important;
    padding-left: 0 !important;
    padding-top: 1rem !important;
    text-align: center !important;
  }

  /* Property cards keep left alignment */
  .property-card,
  .property-card * {
    text-align: left !important;
  }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

  .hero-content {
    gap: 1.5rem !important;
  }

  .hero-image {
    height: 280px !important;
  }

  /* Center hero text flex items (stars, buttons, trust text) */
  .hero-text [style*="display: flex"] {
    justify-content: center !important;
  }

  .hero-text {
    text-align: center !important;
  }

  .hero-text p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Fix all inline grid layouts */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns: 300px 1fr"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Fix inline gaps */
  [style*="gap: 4rem"],
  [style*="gap: 3rem"] {
    gap: 2rem !important;
  }

  /* Fix inline font sizes */
  [style*="font-size: 3.2rem"],
  [style*="font-size: 3rem"],
  [style*="font-size: 2.75rem"] {
    font-size: 2rem !important;
  }

  [style*="font-size: 2.5rem"],
  [style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }

  [style*="font-size: 1.25rem"],
  [style*="font-size: 1.2rem"] {
    font-size: 1.1rem !important;
  }

  /* Fix flex layouts in hero */
  [style*="display: flex"][style*="gap: 1rem"] {
    flex-direction: column;
    align-items: center;
  }

  /* Fix photo placeholders */
  [style*="height: 450px"],
  [style*="height: 400px"],
  [style*="height: 350px"] {
    height: 280px !important;
  }

  [style*="width: 250px"][style*="height: 300px"],
  [style*="width: 280px"][style*="height: 350px"] {
    width: 200px !important;
    height: 240px !important;
  }

  [style*="width: 200px"][style*="height: 200px"] {
    width: 150px !important;
    height: 150px !important;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-col ul {
    margin-bottom: 1.5rem;
  }

  /* Problem/Solution boxes */
  [style*="padding: 2.5rem"] {
    padding: 1.5rem !important;
  }

  /* Feature cards */
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Testimonials */
  [style*="grid-template-columns: repeat(3, 1fr)"]>div {
    margin-bottom: 1rem;
  }

  /* How it works steps */
  [style*="grid-template-columns: repeat(3, 1fr)"][style*="max-width: 900px"] {
    grid-template-columns: 1fr !important;
  }

  /* Buttons stacking */
  .btn {
    width: 100%;
    text-align: center;
  }

  /* Services grid responsive */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    text-align: left !important;
  }

  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* Social proof strip flags - force column on mobile */
  [style*="display: flex"][style*="gap: 4rem"] {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }

  [style*="display: flex"][style*="justify-content: center"][style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  [style*="font-size: 1.5rem"][style*="font-weight: 600"] {
    font-size: 1.1rem !important;
  }

  /* Flags strip - explicit class for mobile */
  .flags-strip {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .flags-strip span {
    font-size: 1rem !important;
  }

  /* Criteria grid responsive */
  .criteria-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .criteria-item {
    text-align: left !important;
  }

  .criteria-item h4,
  .criteria-item p {
    text-align: left !important;
  }

  /* Contact page columns */
  [style*="display: grid"][style*="gap: 4rem"][style*="max-width: 1000px"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Form name grid */
  form [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Property grid responsive */
  .property-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .property-specs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* WhatsApp floating button */
  .whatsapp-float {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-float i {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.5rem;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .hero-text h1 {
    font-size: 1.75rem !important;
  }

  .hero-image {
    height: 220px !important;
  }

  /* Article typography for About/Advisory pages */
  article {
    font-size: 1rem !important;
    line-height: 1.8 !important;
  }

  article p {
    margin-bottom: 1.5rem !important;
  }

  article h3 {
    margin: 2rem 0 1rem !important;
    font-size: 0.95rem !important;
  }

  /* CTA section */
  [style*="padding: 1.25rem 2.5rem"] {
    padding: 1rem 1.5rem !important;
    font-size: 0.9rem !important;
  }

  /* FAQ items */
  [style*="padding: 1.5rem 0"] h4 {
    font-size: 1rem !important;
  }

  /* Stats on landing page */
  [style*="font-size: 2rem"][style*="margin-bottom: 0.25rem"] {
    font-size: 1.5rem !important;
  }
}

/* Why Invest in Dubai Section */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.invest-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #eee;
  height: 100%;
}

.invest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.invest-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.invest-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.invest-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .invest-grid {
    grid-template-columns: 1fr;
  }
}

/* Flags Strip */
.flags-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.flag-item {
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flags-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 0 0.5rem;
  }

  .flag-item {
    font-size: 1rem;
  }
}
/* Investor Flags (Renamed for Cache Busting) */
.investor-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

.investor-flag {
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex: 0 1 auto;
  width: auto;
}

@media (max-width: 768px) {
  .investor-flags {
    gap: 0.75rem 1rem;
    padding: 0 0.5rem;
  }
  
  .investor-flag {
    font-size: 1rem;
  }
}

