/**
 * SunCatcher Power Private Limited - Main Stylesheet
 * Premium Corporate Solar EPC Website
 */

/* ===== CSS VARIABLES ===== */
:root {
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FEF3C7;
  --slate: #1E293B;
  --slate-mid: #334155;
  --slate-light: #64748B;
  --sky: #0EA5E9;
  --warm-white: #FFFBF2;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(30,41,59,0.10);
  --shadow-lg: 0 12px 48px rgba(30,41,59,0.16);
  --gradient-primary: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --glass-bg: rgba(255,251,242,0.95);
  --glass-border: rgba(255,255,255,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  padding: 8px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}





.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--slate);
  letter-spacing: -0.3px;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-mid);
  padding: 10px 16px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-dark);
  background: var(--amber-light);
}

.nav-cta {
  background: var(--amber);
  color: var(--slate) !important;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.nav-cta:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

/* Mobile Menu Button */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,251,242,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 40px 20px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  display: block;
  transform: translateX(0);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--slate);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--amber-light);
  color: var(--amber-dark);
}

.mobile-nav-link i {
  width: 24px;
  text-align: center;
}

.mobile-nav-cta {
  margin-top: 20px;
  text-align: center;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--amber);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-rays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.07;
  background: conic-gradient(from 0deg at 75% 30%,
    transparent 0deg, var(--amber) 2deg, transparent 4deg,
    transparent 30deg, var(--amber) 32deg, transparent 34deg,
    transparent 60deg, var(--amber) 62deg, transparent 64deg,
    transparent 90deg, var(--amber) 92deg, transparent 94deg,
    transparent 120deg, var(--amber) 122deg, transparent 124deg,
    transparent 150deg, var(--amber) 152deg, transparent 154deg,
    transparent 180deg, var(--amber) 182deg, transparent 184deg,
    transparent 210deg, var(--amber) 212deg, transparent 214deg,
    transparent 240deg, var(--amber) 242deg, transparent 244deg,
    transparent 270deg, var(--amber) 272deg, transparent 274deg,
    transparent 300deg, var(--amber) 302deg, transparent 304deg,
    transparent 330deg, var(--amber) 332deg, transparent 334deg
  );
  animation: rotateSun 60s linear infinite;
}

@keyframes rotateSun {
  to { transform: rotate(360deg); }
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--amber);
  color: var(--slate);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,158,11,0.4);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--amber);
  background: rgba(245,158,11,0.08);
  transform: translateY(-2px);
}

/* Solar Ticker */
.hero-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  max-width: 560px;
}

.ticker-cell {
  background: rgba(30,41,59,0.6);
  padding: 24px;
  position: relative;
}

.ticker-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ticker-value {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.ticker-unit {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

.ticker-live {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.creds-strip {
    background: var(--amber);
    padding: 20px 0;
}

.creds-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
}

.cred-icon {
    font-size: 20px;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--slate);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--amber-dark);
}

.section-body {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 600px;
  line-height: 1.75;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-panel {
  background: var(--slate);
  border-radius: 24px;
  padding: 48px;
  color: var(--white);
}

.about-panel-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--amber);
}

.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
}

.about-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}

.about-cert-row {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-cert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.about-cert-icon {
  color: var(--amber);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-text-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.about-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--amber-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.about-feature h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

/* ===== SERVICES SECTION ===== */
#services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--slate);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.65;
}

.service-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 14px;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '✓';
  color: var(--amber-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== WHY CHOOSE US ===== */
#why {
  background: var(--slate);
  color: var(--white);
}

#why .section-title {
  color: var(--white);
}

#why .section-body {
  color: rgba(255,255,255,0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.why-cell {
  background: var(--slate);
  padding: 44px;
  transition: background 0.3s ease;
}

.why-cell:hover {
  background: var(--slate-mid);
}

.why-cell-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(245,158,11,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.why-cell h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-cell p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== PROJECTS SECTION ===== */
#projects {
  background: var(--white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

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

.project-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.project-img {
  height: 180px;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-img-icon {
  font-size: 64px;
  opacity: 0.25;
}

.project-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-kwp-badge {
  background: var(--amber);
  color: var(--slate);
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 14px;
  line-height: 1;
}

.project-kwp-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.project-body {
  padding: 28px;
}

.project-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 8px;
}

.project-body h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.25;
}

.project-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

.project-specs {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-spec {
  font-size: 12px;
  color: var(--slate-light);
}

.project-spec strong {
  color: var(--slate-mid);
  font-weight: 600;
  display: block;
  font-size: 13px;
}

/* ===== GESCOM SECTION ===== */
#gescom {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 100px 0;
}

.gescom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gescom-content .section-title {
  color: var(--white);
}

.gescom-content .section-body {
  color: rgba(255,255,255,0.6);
}

.gescom-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.gescom-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

.gescom-badge:hover {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.2);
}

.gescom-badge-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(245,158,11,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.gescom-badge-text h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.gescom-badge-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.gescom-panel {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 24px;
  padding: 44px;
}

.gescom-panel-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 32px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
}

.process-step-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.process-step-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ===== SUBSIDY SECTION ===== */
#subsidy {
  background: var(--warm-white);
}

.subsidy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.subsidy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.subsidy-card:hover {
  box-shadow: var(--shadow);
}

.subsidy-card.featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, #FFFBF2 0%, #FEF3C7 100%);
}

.subsidy-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amber);
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subsidy-capacity {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subsidy-amount {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}

.subsidy-amount sup {
  font-size: 20px;
  vertical-align: super;
}

.subsidy-desc {
  font-size: 14px;
  color: var(--slate-light);
  margin-top: 12px;
}

.subsidy-scheme {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dark);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 18px;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-weight: 700;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
}

.testimonial-role {
  font-size: 13px;
  color: var(--slate-light);
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: var(--slate);
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

#contact .section-title {
  color: var(--white);
}

#contact .section-body {
  color: rgba(255,255,255,0.6);
}

.contact-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(245,158,11,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-row h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-row p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.contact-form-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 44px;
}

.contact-form-panel h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--amber);
}

.form-row select option {
  background: var(--slate);
  color: var(--white);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--slate);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.form-submit:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0F172A;
  padding: 72px 0 40px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.footer-reg {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.75;
}

.footer-reg p {
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--slate);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--amber);
}

.footer-regulatory {
  margin-top: 32px;
}

.footer-regulatory h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37,211,102,0.6);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--slate);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--amber);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--amber-dark);
  transform: translateY(-4px);
}

/* ===== PAGE SPECIFIC STYLES ===== */
.page-header {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23F59E0B" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

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

.page-header h1 {
  font-size: clamp(40px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
  color: var(--amber);
  font-weight: 600;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: var(--gradient-primary);
  padding: 48px;
  border-radius: 20px;
  text-align: center;
  color: var(--slate);
}

.cta-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}



