:root {
  --header-height: 80px;
  --primary-color: #6c5c46;
  --primary-light: #8e7c62;
  --bg-color: #ffffff;
  --bg-alt: #f2ece4;
  --text-color: #1a1a1a;
  --text-light: #555555;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", sans-serif;
  /* Default to Arabic font */
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
}

/* English Override */
html[lang="en"] body {
  font-family: "Playfair Display", serif;
  /* Headings */
}

html[lang="en"] p {
  font-family: "Inter", sans-serif, system-ui;
  /* Body text */
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition:
    transform 0.25s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 80px;
  /* Adjust based on image ratio */
  width: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

/* Reverse navbar order for Arabic desktop only */
@media (min-width: 992px) {
  html[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
  }
}

.main-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  background-color: var(--primary-color);
  transition: var(--transition);
  left: 0;
  right: 0;
  margin: auto;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.lang-switch {
  flex-shrink: 0;
}

.lang-switch button {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  transition: var(--transition);
}

.lang-switch button:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
  background: radial-gradient(circle at center, #6c5c46 0%, #3e3324 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

/* Hidden header state (hide on scroll down) */
.header--hidden {
  transform: translateY(-110%);
  box-shadow: none;
}

/* Overlay gradient using brand colors */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      rgba(108, 92, 70, 0.9),
      rgba(28, 28, 28, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
  width: 180px;
  max-width: 45%;
  height: auto;
  margin-bottom: 0;
  border-radius: 4px;
  /* Slight radius for the jpeg */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  /* Since the image likely has a white background and we are on dark, 
       we frame it nicely */
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.primary-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.primary-btn:hover {
  background-color: transparent;
  color: var(--white);
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
}

.text-content {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.alt-bg {
  background-color: var(--bg-alt);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(108, 92, 70, 0.2));
}

/* Cards */
.card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-top: 5px solid var(--primary-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.vision-card,
.mission-card {
  border-top: none;
  border-bottom: 5px solid var(--primary-color);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Responsive for values grid */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color);
}

.value-item:hover h4,
.value-item:hover p,
.value-item:hover i {
  color: var(--white);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.value-item h4 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--text-color);
}

/* Governance */
.gov-icon {
  text-align: center;
  color: var(--primary-light);
  opacity: 0.2;
}

/* Vision 2030 Special Section */
.vision-2030-bg {
  background: linear-gradient(135deg, #1aa35c 0%, #158c4f 100%);
  /* Saudi Green approximation */
  color: var(--white);
  text-align: center;
}

.vision-2030-bg h2 {
  color: var(--white);
}

.vision-2030-bg h2::after {
  background-color: var(--white);
}

/* Footer & Contact */
.dark-footer {
  background-color: #111;
  color: var(--white);
  padding-bottom: 40px;
}

.dark-footer h2 {
  color: var(--white);
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-item p {
  color: #ccc;
}

.social-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
  color: var(--primary-color);
}

.social-link:hover i {
  color: var(--white);
}

.footer-note {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 30px;
  color: #888;
}

footer {
  background-color: #000;
  color: #555;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Utils */
.center-align {
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RTL Specifics */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .main-nav ul {
  flex-direction: row-reverse;
  /* Since flex default is row, but in RTL context browsers handle it, but gap might need check. Actually standard flex with dir=rtl works fine usually. */
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 10px;
  }

  .main-nav ul {
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    /* Image on top on mobile usually looks better */
  }
}

/* Scroll Animations */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Criteria Section */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.criterion-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 4px solid var(--primary-light);
  transition: var(--transition);
}

.criterion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.c-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
  font-size: 1.2rem;
}

.criterion-card h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Expansion & Future Icons */
.exp-icon,
.future-icon {
  text-align: center;
  color: var(--primary-light);
  opacity: 0.2;
}

/* Competitive Advantage */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.adv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background-color: var(--primary-color);
}

.adv-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.adv-card h3 {
  color: var(--text-color);
}

.adv-card:hover i,
.adv-card:hover h3 {
  color: var(--white);
}

/* Partnership Message */
.message-box {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.message-box::before {
  content: "\201D";
  /* Quote mark */
  font-family: serif;
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}

.message-box h3 {
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  /* Or Tajawal for Arabic */
}

/* Closing Section */
.closing-section {
  background-color: var(--bg-color);
  /* White/Light */
  padding: 100px 0;
  text-align: center;
}

.closing-quote {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .scope-box,
  .gov-box {
    padding: 30px 20px;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.5s ease-out,
    visibility 0.5s ease-out;
}

.preloader-content {
  text-align: center;
  position: relative;
}

.preloader-logo {
  width: 400px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.loader-line {
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto;
  animation: lineGrow 2s ease-in-out forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes lineGrow {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* Scope & Governance Styles */
.scope-box,
.gov-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border-right: 5px solid transparent;
}

/* RTL Border alignment */
html[dir="rtl"] .scope-box,
html[dir="rtl"] .gov-box {
  border-right: 5px solid var(--primary-color);
  border-left: none;
}

/* LTR Border alignment */
html[dir="ltr"] .scope-box,
html[dir="ltr"] .gov-box {
  border-left: 5px solid var(--primary-color);
  border-right: none;
}

.scope-box:hover,
.gov-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.icon-header i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.icon-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.align-top {
  align-items: flex-start;
}

/* Ensure logo wrapper centers the image properly */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

/* Integration Section */
.integration-content,
.scope-content,
.governance-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.integration-icon,
.scope-icon,
.governance-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(108, 92, 70, 0.3);
  transition: var(--transition);
}

.integration-icon:hover,
.scope-icon:hover,
.governance-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(108, 92, 70, 0.4);
}

/* Enhanced Expansion Section */
.expansion-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.expansion-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.expansion-visual {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  height: 200px;
}

.expansion-icon-circle {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      #8e7c62 50%,
      var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(108, 92, 70, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: floatUp 3s ease-in-out infinite;
}

.expansion-decorative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.expansion-decorative .line {
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 3px;
}

.expansion-decorative .line-1 {
  top: 30px;
  right: 0;
  animation: lineMove 2s ease-in-out infinite;
}

.expansion-decorative .line-2 {
  bottom: 30px;
  left: 0;
  animation: lineMove 2s ease-in-out infinite 0.5s;
}

.expansion-decorative .line-3 {
  top: 50%;
  right: 10px;
  transform: rotate(45deg);
  animation: lineMove 2s ease-in-out infinite 1s;
}

.expansion-content {
  flex: 1;
}

.expansion-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.9;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

@keyframes lineMove {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(10px);
  }
}

/* Enhanced Vision 2030 Section */
.vision-2030-section {
  background: linear-gradient(135deg, #1aa35c 0%, #0e7a3f 50%, #064625 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.vision-2030-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.vision-2030-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.vision-2030-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.vision-2030-badge {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vision-2030-badge .badge-year {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.vision-2030-badge i {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: gold;
}

.vision-2030-content {
  flex: 1;
}

.vision-2030-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.vision-2030-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 80px;
  height: 3px;
  background: gold;
}

.vision-2030-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.95;
}

/* Enhanced Future Strategy Section */
.future-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
  position: relative;
}

.future-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.future-visual {
  flex-shrink: 0;
  position: relative;
  width: 180px;
  height: 180px;
}

.future-icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(108, 92, 70, 0.3);
}

.future-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.future-rings .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
}

.future-rings .ring-1 {
  width: 140px;
  height: 140px;
  animation: ringPulse 2s ease-out infinite;
}

.future-rings .ring-2 {
  width: 160px;
  height: 160px;
  animation: ringPulse 2s ease-out infinite 0.4s;
}

.future-rings .ring-3 {
  width: 180px;
  height: 180px;
  animation: ringPulse 2s ease-out infinite 0.8s;
}

@keyframes ringPulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.future-content {
  flex: 1;
}

.future-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* Contact Form Styles */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(108, 92, 70, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Ensure RTL text alignment for Arabic */
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group textarea {
  text-align: right;
}

html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group textarea {
  text-align: left;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(108, 92, 70, 0.4);
}

.submit-btn i {
  font-size: 1rem;
}

.contact-info-container {
  display: flex;
  align-items: center;
}

.contact-info-card {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-light) 100%);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.contact-details h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.social-links .social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links .social-link:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-5px);
}

.social-links .social-link i {
  font-size: 1.2rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {

  .expansion-wrapper,
  .future-wrapper,
  .vision-2030-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .vision-2030-content h2::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    order: 2;
  }

  .contact-info-container {
    order: 1;
  }
}

@media (max-width: 768px) {

  .expansion-visual,
  .future-visual {
    width: 150px;
    height: 150px;
  }

  .expansion-icon-circle {
    width: 100px;
    height: 100px;
  }

  .expansion-icon-circle i {
    font-size: 2rem;
  }

  .future-icon-circle {
    width: 80px;
    height: 80px;
  }

  .future-icon-circle i {
    font-size: 1.5rem;
  }

  .future-rings .ring-1 {
    width: 100px;
    height: 100px;
  }

  .future-rings .ring-2 {
    width: 120px;
    height: 120px;
  }

  .future-rings .ring-3 {
    width: 140px;
    height: 140px;
  }

  .vision-2030-badge {
    width: 120px;
    height: 120px;
  }

  .vision-2030-badge .badge-year {
    font-size: 1.5rem;
  }

  .contact-form-container,
  .contact-info-card {
    padding: 25px;
  }
}