/* ABOUT PAGE PREMIUM STYLES - LIGHT MODE */

:root {
  --text-dark: #0a0a0a;
  --text-muted: #555555;
  --bg-cream: #faf7f2;
  --border-light: rgba(0, 0, 0, 0.08);
  --accent-orange: #ff6b1a;
  --accent-purple: #7c3aed;
  --font-serif: 'Playfair Display', serif;
}

body.light {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.about-page {
  padding-top: 120px;
  overflow: hidden;
}

.mono-label {
  font-family: monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.serif-i {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* Hero Section */
.about-hero {
  position: relative;
  padding: 60px 0 100px;
  border-bottom: 1px solid var(--border-light);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 40% at 20% 30%, rgba(255, 107, 26, 0.05), transparent 60%),
              radial-gradient(30% 30% at 85% 70%, rgba(124, 58, 237, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-w-width: 1400px;
  margin: 0 auto;
}

.about-title {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 18ch;
}

.about-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 40px;
}

.about-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 80px;
}

.btn-primary-orange {
  background-color: var(--accent-orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 26, 0.2);
}

.link-sub {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item p {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
}

/* Origin Section */
.origin-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.origin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.origin-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.origin-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.origin-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.origin-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
  padding: 160px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  background: radial-gradient(circle at center, #ffffff 0%, transparent 100%);
}

.quote-box {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -80px;
  left: -40px;
  font-family: var(--font-serif);
  font-size: 14rem;
  line-height: 1;
  color: rgba(255, 107, 26, 0.1);
  pointer-events: none;
}

.quote-text {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.quote-author {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quote-author .line {
  width: 40px;
  height: 1px;
  background: var(--accent-orange);
  margin-bottom: 10px;
}

.quote-author h5 {
  font-size: 18px;
  font-weight: 600;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
}

.value-card {
  background: #f6f3eb; /* Exact cream background from image */
  padding: 60px;
}

.value-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.value-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #0d0d0d;
  letter-spacing: -0.04em;
  font-family: var(--font-sans, 'Inter', sans-serif); /* Use a sans-serif for the very bold number */
}

.value-card h4 {
  font-size: 2.125rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  color: #0d0d0d;
}

.value-card p {
  color: #737373;
  line-height: 1.7;
  max-width: 480px;
  font-size: 1rem;
}

.value-card .mono-label {
  color: #a3a3a3;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-size: 10px;
}

/* Global Section */
.global-section {
  padding: 120px 0;
}

.map-container {
  background-color: #f4efeb;
  position: relative;
  overflow: hidden;
  height: 600px;
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 24px;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  background-image: url('../images/abstract_map_dark.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) contrast(0.8) sepia(0.2) hue-rotate(-20deg);
  opacity: 0.6;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.15) 1px, transparent 0);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.2);
  transform: translate(-50%, -50%);
}

.pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent-orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.pin-1 { top: 40%; left: 20%; } /* Beverly Hills */
.pin-2 { top: 45%; left: 48%; } /* Ireland */
.pin-3 { top: 55%; left: 68%; } /* Dubai */
.pin-4 { top: 60%; left: 75%; } /* Ahmedabad */

.pin-label {
  position: absolute;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .origin-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-title { font-size: 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .origin-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 40px 30px; }
}
/* Invitation Section */
.invitation-section {
  position: relative;
  padding: 120px 0 60px;
  background-color: #faf8f5;
  overflow: hidden;
}

.invitation-bg-gradients {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at left center, rgba(255, 107, 26, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at right center, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.invitation-title {
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 40px;
  max-width: 15ch;
  color: #111;
}

.invitation-title .serif-i {
  font-size: 1.05em;
}

.invitation-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  max-width: 500px;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.stage-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.stage-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.stage-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

.invitation-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
}

.contact-email {
  font-weight: 800;
  font-size: 1.2rem;
  color: #111;
  text-decoration: none;
}

.contact-buttons {
  display: flex;
  gap: 15px;
}

.btn-outline-green {
  background-color: #fff;
  color: #10b981;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #10b981;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background-color: #f0fdf4;
}

.invitation-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.i-stat {
  flex: 1;
}

.i-stat-val {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111;
}

@media (max-width: 1024px) {
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .invitation-contact { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .stages-grid { grid-template-columns: 1fr; }
  .invitation-stats { flex-direction: column; gap: 30px; }
}
/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mt-100 { margin-top: 100px !important; }
.text-center { text-align: center !important; }

/* Enhanced Map UI */
.map-connection-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.map-connection-path {
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.pin {
  z-index: 2;
}

.map-info-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 3;
}

.map-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.map-info-header h5 {
  font-size: 14px;
  font-weight: 700;
}

.map-info-time {
  font-size: 18px;
  font-weight: 800;
  font-family: monospace;
}

.map-info-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 15px;
}

.map-info-phone {
  font-size: 11px;
  font-weight: 700;
  color: #111;
}

.location-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.loc-tab {
  background: #faf8f5;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.loc-tab:hover {
  background: #fff;
}

.loc-tab.active {
  background: #fff;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.1);
}

.loc-tab-name {
  font-size: 12px;
  font-weight: 600;
}

.loc-tab-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-orange);
}
/* Clean inline styles */
.global-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
  color: #111;
}
.global-title-italic {
  font-weight: 300;
}
.pin-us { top: 40%; left: 25%; }
.pin-ie { top: 36%; left: 55%; }
.pin-ae { top: 45%; left: 68%; }
.pin-in { top: 53%; left: 78%; }

/* SEO Inline Contextual Links - Subtle Bold, No Underline */
.seo-inline-link {
  color: inherit;
  text-decoration: none !important;
  font-weight: 600;
  display: inline;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.seo-inline-link:hover {
  color: var(--accent-orange, #ff6b1a) !important;
  text-decoration: none !important;
  opacity: 0.9;
}


/* Added from about.html inline */

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-bottom: 20px;
}
.about-stat-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--flame, #ff6b1a), #ff8a3d);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 107, 26, 0.12);
  border-color: rgba(255, 107, 26, 0.2);
}
.about-stat-item:hover::before {
  opacity: 1;
}
.about-stat-item h3 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #111;
  line-height: 1;
  letter-spacing: -1px;
  font-family: var(--font-display, sans-serif);
}
.about-stat-item p {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #555;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
}
.about-stat-item p span {
  color: var(--flame, #ff6b1a);
  margin-right: 4px;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
  margin-top: 24px;
}
.stage-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 107, 26, 0.2);
}
.stage-card .mono-label {
  font-size: 11px;
  color: var(--flame, #ff6b1a);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
}
.stage-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
  line-height: 1.2;
}
.stage-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}
.invitation-contact-bar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 12px 12px 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.invitation-contact-bar .contact-email {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}
.invitation-contact-bar .contact-email:hover {
  color: var(--flame, #ff6b1a);
}
.invitation-contact-bar .contact-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.invitation-contact-bar .btn-primary-orange,
.invitation-contact-bar .btn-outline-green {
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.invitation-contact-bar .btn-primary-orange {
  background: linear-gradient(90deg, var(--flame, #ff6b1a), #ff8a3d);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3);
}
.invitation-contact-bar .btn-primary-orange:hover {
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.4);
  transform: translateY(-2px);
}
.invitation-contact-bar .btn-outline-green {
  border: 2px solid #00b96b;
  color: #00b96b;
  background: transparent;
}
.invitation-contact-bar .btn-outline-green:hover {
  background: #00b96b;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 185, 107, 0.2);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .invitation-contact-bar {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
    padding: 24px;
  }
  .invitation-contact-bar .contact-buttons {
    width: 100%;
    flex-direction: column;
  }
  .invitation-contact-bar .btn-primary-orange,
  .invitation-contact-bar .btn-outline-green {
    width: 100%;
    text-align: center;
  }
}
