/* ==========================================================================
   ICON AXIS - LUXURY CORPORATE WEBSITE STYLESHEET
   Brand: Icon Axis (iconaxis.in) | Invest • Build • Design
   Colors: Dark Green (#0B3D2E), Luxury Gold (#D4AF37), Warm Luxury Beige (#F7F4EE)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary-dark: #0B3D2E;
  --primary-deep: #052017;
  --primary-medium: #0f4c3a;
  --primary-light: #16634d;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #F4E7BD;
  --accent-gold-dark: #A88620;
  --accent-gold-glow: rgba(212, 175, 55, 0.28);

  /* Warm Luxury Beige Palette (Replacing Pure White) */
  --bg-white: #F7F4EE;       /* Warm Luxury Cream Beige */
  --bg-beige-light: #FAF8F5; /* Light Champagne Cream */
  --bg-beige-card: #F2EFE7;  /* Card Beige */
  --bg-offwhite: #EBE6DC;    /* Deeper Soft Beige */
  --bg-warm-gray: #E4DDD0;   /* Warm Sand Beige */
  
  --bg-glass-light: rgba(247, 244, 238, 0.92);
  --bg-glass-dark: rgba(11, 61, 46, 0.95);
  
  /* Text Colors */
  --text-main: #1C2220;
  --text-muted: #525C58;
  --text-light: #E4EAE7;
  --text-gold: #D4AF37;

  /* Borders & Shadows */
  --border-light: rgba(11, 61, 46, 0.12);
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow-subtle: 0 10px 30px rgba(11, 61, 46, 0.04);
  --shadow-medium: 0 15px 40px rgba(11, 61, 46, 0.08);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.22);
  --shadow-hover: 0 25px 60px rgba(11, 61, 46, 0.16);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', 'Manrope', -apple-system, sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out-expo);
  --transition-smooth: 0.45s var(--ease-out-expo);
  --transition-slow: 0.85s var(--ease-out-expo);

  /* Layout */
  --container-max: 1320px;
  --header-height: 90px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-beige-light);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  cursor: default; /* Standard simple cursor */
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

/* Custom Selection */
::selection {
  background-color: var(--accent-gold);
  color: var(--primary-deep);
}

/* --------------------------------------------------------------------------
   3. PRELOADER SCREEN
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--primary-deep);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 250px;
  max-width: 85vw;
  height: auto;
  margin-bottom: 24px;
  animation: pulseGold 2s infinite ease-in-out;
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--accent-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.preloader-subtext {
  font-size: 0.85rem;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.preloader-line {
  width: 180px;
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  margin-top: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-line-inner {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  animation: loadLine 1.5s infinite ease-in-out;
}

@keyframes loadLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212,175,55,0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(212,175,55,0.7)); }
}

/* --------------------------------------------------------------------------
   4. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent-gold), #FFF);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   5. UTILITY CLASSES & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

.bg-offwhite { background-color: var(--bg-offwhite); }
.bg-white { background-color: var(--bg-white); }
.bg-warm-gray { background-color: var(--bg-warm-gray); }
.bg-dark-green {
  background-color: var(--primary-dark);
  color: var(--bg-beige-light);
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold-dark);
  margin-bottom: 16px;
}

.bg-dark-green .section-tag, .our-axis-section .section-tag {
  color: var(--accent-gold) !important;
}

.section-tag-line {
  width: 30px;
  height: 1px;
  background-color: currentColor;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.bg-dark-green .section-title, .our-axis-section .section-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.bg-dark-green .section-subtitle, .our-axis-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px auto 0 auto;
}

.gold-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.gold-divider-diamond {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  transform: rotate(45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--bg-beige-light);
  border: 1px solid var(--primary-dark);
  box-shadow: var(--shadow-medium);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-smooth);
}

.btn-primary:hover {
  color: var(--primary-deep);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--primary-deep);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--primary-dark);
  color: var(--bg-beige-light);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  border-color: var(--bg-white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--border-light);
}

.btn-outline-dark:hover {
  background-color: var(--primary-dark);
  color: var(--bg-beige-light);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   6. STICKY TRANSPARENT NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  height: 75px;
  background: rgba(11, 61, 46, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.navbar-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-logo-img {
  height: 54px;
  max-height: 100%;
  width: auto;
  transition: transform var(--transition-fast), height var(--transition-smooth);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}

.navbar.scrolled .navbar-logo-img {
  height: 42px;
}

.navbar-brand:hover .navbar-logo-img {
  transform: scale(1.05);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--accent-gold);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--accent-gold);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 32, 23, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #FFFFFF;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-deep);
  color: #FFFFFF;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 10s ease-out;
  filter: brightness(0.65) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 61, 46, 0.4) 0%, rgba(5, 32, 23, 0.85) 100%),
              linear-gradient(to bottom, rgba(5, 32, 23, 0.6) 0%, transparent 40%, rgba(5, 32, 23, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: rgba(252, 252, 252, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  margin: 0 auto 45px auto;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: var(--accent-gold);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* --------------------------------------------------------------------------
   8. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  padding-right: 20px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-description {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Banner split image showcase */
.about-showcase-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
  height: 520px;
}

.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
  position: relative;
}

.split-img-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.split-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-showcase-card:hover .split-img-box img {
  transform: scale(1.08);
}

.split-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(5, 32, 23, 0.85);
  color: var(--accent-gold);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
}

.showcase-overlay-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  background: rgba(11, 61, 46, 0.94);
  backdrop-filter: blur(12px);
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-gold);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.showcase-overlay-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   9. OUR SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 45px 40px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent-gold), var(--primary-dark));
  transition: height var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::before {
  height: 100%;
}

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

.service-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  border-color: var(--primary-dark);
  transform: rotate(-5deg) scale(1.05);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(11, 61, 46, 0.2);
  transition: color var(--transition-fast);
}

.service-card:hover .service-number {
  color: var(--accent-gold);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.subservices-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.subservice-pill {
  font-size: 0.82rem;
  padding: 6px 14px;
  background-color: var(--bg-offwhite);
  color: var(--primary-dark);
  border-radius: 20px;
  border: 1px solid rgba(11, 61, 46, 0.08);
  transition: all var(--transition-fast);
}

.service-card:hover .subservice-pill {
  border-color: rgba(212, 175, 55, 0.4);
}

.subservice-pill:hover {
  background-color: var(--primary-dark);
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   10. BRAND PILLARS ("OUR AXIS") BANNER - IMPROVED HIGH VISIBILITY
   -------------------------------------------------------------------------- */
.our-axis-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  padding: 100px 0;
  overflow: hidden;
}

.our-axis-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.7;
}

.our-axis-section .section-title {
  color: #FFFFFF !important;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

.our-axis-section .section-tag {
  color: var(--accent-gold) !important;
  font-weight: 800;
  letter-spacing: 4px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.pillar-card {
  text-align: center;
  padding: 45px 30px;
  background: rgba(247, 244, 238, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(247, 244, 238, 0.12);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.pillar-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 24px auto;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.pillar-subtitle {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. PORTFOLIO SHOWCASE & GALLERY
   -------------------------------------------------------------------------- */
.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 26px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-medium);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-smooth);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 32, 23, 0.95) 0%, rgba(5, 32, 23, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.portfolio-item-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.portfolio-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(15px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.8);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 100001;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   12. WHY CHOOSE US (ANIMATED STATS & COUNTERS)
   -------------------------------------------------------------------------- */
.stats-section {
  background: var(--bg-offwhite);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 40px 20px;
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-number span {
  color: var(--accent-gold-dark);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --------------------------------------------------------------------------
   13. WORKING PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-gold), var(--primary-dark), var(--accent-gold));
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content-box {
  width: 45%;
  background-color: var(--bg-white);
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-smooth);
}

.timeline-step:hover .timeline-content-box {
  transform: scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.timeline-step-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  border: 3px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}

.timeline-step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.timeline-step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonials-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-card {
  background: var(--bg-white);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.quote-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
  margin: 0 auto 20px auto;
  opacity: 0.8;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.6;
  color: var(--primary-dark);
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.client-role {
  font-size: 0.85rem;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: var(--bg-white);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--primary-dark);
  color: var(--accent-gold);
  border-color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   15. TRUSTED PARTNERS MARQUEE
   -------------------------------------------------------------------------- */
.partners-section {
  padding: 50px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.partners-title {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.partners-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.75;
}

.partner-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   16. INSIGHTS & NEWS SECTION
   -------------------------------------------------------------------------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insight-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-smooth);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}

.insight-img-box {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.insight-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insight-card:hover .insight-img-box img {
  transform: scale(1.08);
}

.insight-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.insight-content {
  padding: 25px 24px;
}

.insight-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.insight-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.insight-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   17. CONTACT & GOOGLE MAPS SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 1.05rem;
  color: #FFFFFF;
}

.contact-form-box {
  background-color: var(--bg-white);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(11, 61, 46, 0.15);
  background-color: var(--bg-beige-light);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Map visual frame */
.map-placeholder-box {
  margin-top: 50px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.map-placeholder-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   18. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-deep);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.footer-column-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* --------------------------------------------------------------------------
   19. FLOATING ACTION BUTTONS (WHATSAPP & BACK TO TOP)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-gold);
  color: var(--primary-deep);
}

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
