/* css/energy-transition.css */
/* ====================================
   ENERGY TRANSITION PAGE SPECIFIC STYLES
   Fully Responsive - Chevron Caspian Theme
   ==================================== */

:root {
  --primary-color: #003E7E;
  --primary-dark: #002B57;
  --primary-light: #0A5BB5;
  --secondary-color: #E31E24;
  --secondary-dark: #B9151A;
  --secondary-light: #FF4A4F;
  --dark-color: #0F172A;
  --dark-alt: #1E293B;
  --gray-dark: #334155;
  --gray-medium: #64748B;
  --gray-light: #CBD5E1;
  --light-color: #F8FAFC;
  --white-color: #FFFFFF;
  --success-color: #10b981;
  --warning-color: #F59E0B;
  --danger-color: #DC2626;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', sans-serif;
  --max-width: 1280px;
  --section-padding: clamp(60px, 10vw, 100px) 0;
  --container-padding: 0 24px;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
/* ---------- HERO SECTION (Cinematic) ---------- */
.transition-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1080px;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.transition-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.transition-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
  animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.transition-hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  color: var(--white-color);
  z-index: 3;
  text-align: center;
  padding-top: env(safe-area-inset-top);
}

/* Responsive Hero Content */
@media (max-width: 768px) {
  .transition-hero-content {
    width: 95%;
    top: 55%;
  }
}
@media (max-width: 480px) {
  .transition-hero-content {
    top: 50%;
    width: 92%;
  }
}

.breadcrumb {
  margin-bottom: clamp(15px, 3vh, 25px);
  margin-top: clamp(10px, 4vh, 50px);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.breadcrumb a:hover { color: var(--secondary-color); }
.breadcrumb span {
  color: rgba(255,255,255,0.8);
  margin: 0 4px;
}
.breadcrumb .current {
  color: var(--secondary-color);
  font-weight: 500;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vh, 25px);
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(25px, 5vh, 40px);
  opacity: 0.95;
  color: var(--white-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
  padding: 0 10px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 25px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 120px;
  flex: 1 0 auto;
  max-width: 180px;
}
@media (max-width: 640px) {
  .hero-stat-item {
    min-width: 100px;
    padding: 10px 12px;
  }
  .hero-stats {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .hero-stat-item {
    min-width: calc(50% - 10px);
    max-width: none;
    flex: 1 1 40%;
  }
}

.hero-stat-value {
   font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* ---------- General Section Styles ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
}
.section-light { background-color: var(--light-color); }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}
@media (min-width: 768px) {
  .container { padding: 0 30px; }
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}
.section-subtitle {
  display: inline-block;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}
.section-header p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--gray-medium);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- Content Block ---------- */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
}
@media (min-width: 992px) {
  .content-block { grid-template-columns: 1fr 1fr; }
}

.content-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  height: 100%;
  min-height: 300px;
}
@media (max-width: 768px) {
  .content-image { min-height: 250px; }
}
.img-placeholder {
  width: 100%;
  height: 100%;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-placeholder:hover img { transform: scale(1.05); }

.content-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.content-text .lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  color: var(--gray-dark);
  margin-bottom: 20px;
}
.content-text p {
  margin-bottom: 20px;
  color: var(--gray-dark);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.approach-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.approach-stat {
  background: var(--light-color);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 120px;
  flex: 1;
}
.approach-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 5px;
}
.approach-stat-label {
  font-size: 0.8rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Pillars Grid ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background: var(--white-color);
  padding: 40px 25px 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  height: 100%;
}
.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--secondary-color);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: var(--light-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}
.pillar-card:hover .pillar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
  transform: rotate(5deg) scale(1.05);
}
.pillar-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
}
.pillar-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.pillar-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pillar-list li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--gray-dark);
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--gray-light);
}
.pillar-list li:last-child {
  border-bottom: none;
}
.pillar-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 600;
}

/* ---------- Infrastructure Grid (4 cards) ---------- */
.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .infrastructure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .infrastructure-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.infrastructure-card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.infrastructure-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.infrastructure-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.infrastructure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.infrastructure-card:hover .infrastructure-image img {
  transform: scale(1.1);
}
.infrastructure-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1;
}

.infrastructure-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.infrastructure-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.infrastructure-content p {
  color: var(--gray-medium);
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex: 1;
}

.infrastructure-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.infra-stat {
  background: var(--light-color);
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
  flex: 1;
}
.infra-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
}
.infra-stat-label {
  font-size: 0.65rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.infra-learn-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}
.infra-learn-more span {
  transition: transform 0.3s ease;
}
.infra-learn-more:hover {
  color: var(--primary-color);
}
.infra-learn-more:hover span {
  transform: translateX(5px);
}

/* Strategy Note */
/* Strategy Note - Premium White Card Style */
.strategy-note {
  background: #ffffff;
  color: var(--gray-dark);
  padding: 40px;
  border-radius: 18px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  box-shadow: var(--shadow-medium);
  margin-top: 40px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.strategy-note:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-heavy);
}

/* Icon Container */
.strategy-note-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: rgba(227,30,36,0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.strategy-note:hover .strategy-note-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotate(10deg) scale(1.05);
}

/* Content Styling */
.strategy-note-content h4 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.strategy-note-content p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
  color: var(--gray-medium);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .strategy-note {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px 25px;
  }
}
/* ---------- Projects Showcase ---------- */
.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.project-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 25px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  position: relative;
  border-left: 4px solid transparent;
}
.project-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--secondary-color);
}
@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
    padding: 25px;
  }
}
.project-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-light);
  line-height: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.project-card:hover .project-number {
  color: var(--secondary-color);
  transform: scale(1.1);
}
.project-content {
  flex: 1;
}
.project-category {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.project-content h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.project-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}
.project-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.project-meta strong {
  color: var(--primary-color);
}
.project-progress {
  margin-top: 10px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-medium);
  margin-bottom: 5px;
}
.progress-bar {
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  border-radius: 3px;
}

/* ---------- Commitments Grid ---------- */
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 640px) {
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .commitments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.commitment-card {
  background: var(--white-color);
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  text-align: center;
}
.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--secondary-color);
}
.commitment-check {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}.commitment-check i{
  font-size: 2rem;
}
.commitment-card:hover .commitment-check {
  background: var(--secondary-color);
  color: white;
  transform: rotate(360deg);
}
.commitment-check svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.commitment-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.commitment-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.commitment-target {
  display: inline-block;
  background: var(--light-color);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Regional Grid ---------- */
.regional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 992px) {
  .regional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.regional-card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  height: 100%;
}
.regional-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}
.regional-image {
  height: 200px;
  overflow: hidden;
}
.regional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.regional-card:hover .regional-image img {
  transform: scale(1.1);
}
.regional-content {
  padding: 30px;
}
.regional-content h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.regional-content p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}
.regional-contact {
  background: var(--light-color);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-dark);
  font-size: 0.9rem;
}
.contact-person:first-child {
  padding-top: 0;
}
.contact-person:last-child {
  padding-bottom: 0;
}
.contact-person svg {
  stroke: var(--secondary-color);
  flex-shrink: 0;
}
.regional-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.regional-link:hover {
  color: var(--primary-color);
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-info {
  padding-right: 30px;
}
.contact-info h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-description {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.detail-icon {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  box-shadow: var(--shadow-light);
  flex-shrink: 0;
}
.detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.contact-detail-item h4 {
  font-size: 1rem;
  color: var(--gray-medium);
  margin-bottom: 5px;
}
.contact-detail-item a,
.contact-detail-item span {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.contact-detail-item a:hover {
  color: var(--secondary-color);
}

/* Contact Form */
.contact-form-container {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-heavy);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gray-dark);
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-medium);
}
.checkbox-label input {
  width: auto;
  margin-top: 3px;
}
.btn-submit {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-submit:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: clamp(60px, 12vw, 120px) 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--white-color);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    background-attachment: fixed;
  }
}
.cta-section h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: clamp(15px, 3vh, 20px);
}
.cta-section p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(25px, 5vh, 40px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-buttons .btn,
  .cta-buttons .cc-btn {
    width: 100%;
    max-width: 280px;
  }
}

.btn {
  padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  background: var(--secondary-color);
  color: var(--white-color);
}
.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
.cc-btn-outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cc-btn-outline:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ---------- Animations ---------- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="slide-left"] { transform: translateX(-30px); }
[data-animate="slide-right"] { transform: translateX(30px); }
[data-animate="scale-in"] { transform: scale(0.9); }
@media (min-width: 768px) {
  [data-animate="slide-left"] { transform: translateX(-50px); }
  [data-animate="slide-right"] { transform: translateX(50px); }
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  color: var(--white-color);
}
.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 20px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ---------- Header ---------- */
.site-header.scrolled {
  background: rgba(0, 30, 60, 0.95);
  backdrop-filter: blur(10px);
}


/* ---------- Responsive Utilities ---------- */
@media (max-width: 768px) {
  .section-header h2:after {
    width: 40px;
  }
  
  .approach-stats {
    flex-direction: column;
  }
  
  .approach-stat {
    width: 100%;
  }
}