@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-dark: #070d1d;
  --navy-base: #0B132B;
  --navy-light: #162244;
  --slate-dark: #2d3748;
  --slate-base: #4A5568;
  --slate-light: #a0aec0;
  --white: #ffffff;
  --off-white: #f7fafc;
  --emerald: #10B981;
  --emerald-hover: #059669;
  
  --font-main: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--off-white);
  color: var(--navy-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-dark);
}

.text-accent { color: var(--emerald); }
.text-slate { color: var(--slate-base); }
.text-white { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  background-color: var(--emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Layout Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  scroll-margin-top: 80px; /* Offset for fixed navbar */
}

.section-dark {
  background-color: var(--navy-base);
  color: var(--white);
}

.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--slate-base);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--slate-light);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--emerald);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(7, 13, 29, 0.9) 0%, rgba(11, 19, 43, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--slate-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Core Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.expertise-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.expertise-card p {
  color: var(--slate-base);
  font-size: 0.95rem;
}

/* Intelligence / Insights */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.insight-card {
  background: var(--navy-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.05);
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
}

.insight-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta {
  font-size: 0.8rem;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.insight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.insight-card p {
  color: var(--slate-light);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.insight-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.insight-link:hover {
  color: var(--emerald);
  gap: 0.75rem;
}

/* Project Spotlights */
.projects-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.project-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.project-spotlight:nth-child(even) {
  direction: rtl;
}

.project-spotlight:nth-child(even) > * {
  direction: ltr;
}

.project-content {
  max-width: 500px;
}

.project-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.project-content p {
  color: var(--slate-base);
  margin-bottom: 2rem;
}

.project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.5rem;
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--slate-base);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-visual {
  background: var(--navy-light);
  border-radius: 8px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.project-spotlight:hover .project-visual img {
  opacity: 1;
  transform: scale(1.05);
}

/* Trust Signals */
.trust-signals {
  position: relative;
  background-image: url('../images/map-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 8rem 0;
  scroll-margin-top: 80px; /* Offset for fixed navbar */
}

.trust-signals::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 13, 29, 0.85);
  z-index: 1;
}

.trust-content {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.trust-stat h3 {
  font-size: 3rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.trust-stat p {
  color: var(--slate-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.methodology {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
}

.methodology h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.methodology p {
  color: var(--slate-light);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Contact & Proposal Form Section */
.section-contact {
  background: radial-gradient(circle at 10% 20%, rgba(11, 19, 43, 1) 0%, rgba(7, 13, 29, 1) 90%);
  color: var(--white);
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.contact-info {
  max-width: 520px;
}

.contact-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald) !important; /* Keep emerald subtitle bright */
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.contact-title {
  font-size: 2.75rem;
  color: var(--white) !important; /* Force heading to be bright white */
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.75) !important; /* Highly visible light slate/white text */
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.detail-item h4 {
  font-size: 1rem;
  color: var(--white) !important; /* Bright white header for details */
  margin-bottom: 0.25rem;
}

.detail-item p {
  color: rgba(255, 255, 255, 0.6) !important; /* Highly readable B2B details */
  font-size: 0.95rem;
}

/* Premium Glassmorphic Form */
.contact-form-container {
  background: rgba(11, 19, 43, 0.85); /* Solid elegant dark navy base */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15); /* Visible premium silver border */
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 5; /* Raise container above section background */
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 6; /* Raise form above container background */
}

.premium-form.hidden {
  display: none !important; /* Extremely robust way to hide form and ensure no pointer event issues */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600; /* High legibility bold */
  color: var(--white); /* White labels for maximum readability */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 7; /* Raise labels above backdrop filter stack context */
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(7, 13, 29, 0.8); /* Solid dark input field background */
  border: 1px solid rgba(255, 255, 255, 0.25); /* Crisp visible input border */
  padding: 0.9rem 1.2rem;
  color: var(--white);
  border-radius: 6px;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  z-index: 7; /* Raise inputs above backdrop filter stack context */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5); /* High contrast gray placeholder */
}

.form-group select option {
  background-color: var(--navy-dark);
  color: var(--white);
}

.form-group select:invalid {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--emerald);
  background: rgba(7, 13, 29, 0.95);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

/* Custom Dropdown select wrapper */
.select-wrapper {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-wrapper::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--slate-light);
  right: 1.2rem;
  position: absolute;
  pointer-events: none;
}

/* Customize dropdown options for premium look */
.form-group select option {
  background-color: var(--navy-dark);
  color: var(--white);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.btn-submit i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translate(3px, -3px);
}

/* Success State Styles */
.form-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-success-container.hidden {
  display: none;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-icon-wrapper i {
  font-size: 3.5rem;
}

.form-success-container h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.form-success-container p {
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.btn-reset {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
}

@keyframes scaleUp {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-info {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

/* Footer */
.footer {
  background: #040812;
  color: rgba(255, 255, 255, 0.6) !important; /* Brighter slate/white body text for visibility */
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about .logo {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--white) !important;
}

.footer-about p {
  font-size: 0.95rem;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6) !important; /* Force high visibility */
}

.footer-heading {
  color: var(--white) !important; /* Force category headings to be bright white */
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55) !important; /* High contrast bright footer link color */
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--emerald) !important; /* High-end hover emerald color */
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: var(--white);
  border-radius: 4px 0 0 4px;
  outline: none;
  flex-grow: 1;
}

.newsletter-form button {
  background: var(--emerald);
  color: var(--white);
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
}

.newsletter-form button:hover {
  background: var(--emerald-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4) !important; /* Visible copyright text */
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55) !important; /* Visible privacy policy link */
}

/* Responsive */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .project-spotlight { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .methodology { padding: 2rem; }
  .nav-links { display: none; } /* Simplified for demo */
}

/* About Page Specific Styles */
.about-hero {
  position: relative;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 10rem 0 6rem 0; /* Extra top padding to clear the navbar */
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(7, 13, 29, 0.95) 0%, rgba(11, 19, 43, 0.85) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 600;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.about-hero-desc {
  font-size: 1.25rem;
  color: var(--slate-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.philosophy-text p {
  color: var(--slate-base);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Boutique Model Grid */
.boutique-section {
  background: var(--navy-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.boutique-section h2 {
  color: var(--white);
}

.boutique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.boutique-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3rem;
  transition: var(--transition-smooth);
}

.boutique-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.boutique-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.boutique-card-header i {
  font-size: 2rem;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
}

.boutique-card-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}

.boutique-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.boutique-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-light);
  font-size: 1.05rem;
}

.boutique-list li i {
  color: var(--emerald);
  font-size: 1.2rem;
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy-dark);
}

.pillar-card p {
  color: var(--slate-base);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About CTA */
.about-cta {
  background: radial-gradient(circle at 10% 20%, rgba(11, 19, 43, 1) 0%, rgba(7, 13, 29, 1) 90%);
  color: var(--white);
  text-align: center;
  padding: 8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.about-cta-content p {
  color: var(--slate-light);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .boutique-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}
