/* ============================================
   MAJESTIC PETROL - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #081B33;
  --blue: #12385F;
  --gold: #CDA349;
  --gold-light: #e0c06e;
  --white: #FFFFFF;
  --light-gray: #F4F6F8;
  --dark-gray: #222222;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 24px rgba(8, 27, 51, 0.08);
  --shadow-lg: 0 12px 48px rgba(8, 27, 51, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-gray {
  background: var(--light-gray);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 163, 73, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 27, 51, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

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

.nav-logo-text span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-text small {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 27, 51, 0.92), rgba(18, 56, 95, 0.85)),
    linear-gradient(to bottom, transparent 60%, var(--navy));
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(205, 163, 73, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(205, 163, 73, 0.12);
  border: 1px solid rgba(205, 163, 73, 0.25);
  border-radius: 50px;
  margin-bottom: 2rem;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  padding: 3rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
}

/* --- Section Headers --- */
.section-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-image-box svg {
  width: 60%;
  height: 60%;
  opacity: 0.25;
}

.about-experience {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience h3 {
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}

.about-experience p {
  color: var(--navy);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 600;
}

.about-content .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(205, 163, 73, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
}

/* --- Vision & Mission --- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vm-card {
  padding: 3rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.vm-card-vision {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.vm-card-mission {
  background: var(--white);
  border: 1px solid rgba(18, 56, 95, 0.15);
}

.vm-card .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.vm-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.vm-card-vision h3 { color: var(--white); }
.vm-card-mission h3 { color: var(--navy); }

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.vm-card-vision p { color: rgba(255, 255, 255, 0.8); }
.vm-card-mission p { color: var(--text-light); }

.mission-list {
  list-style: none;
  margin-top: 1rem;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.mission-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(18, 56, 95, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(205, 163, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.value-card h4 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Products --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(18, 56, 95, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

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

.product-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.product-card-img svg {
  width: 48px;
  height: 48px;
  opacity: 0.8;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h4 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.product-card-body p {
  font-size: 0.88rem;
  margin: 0;
}

/* Product Accordion */
.product-accordion {
  background: var(--white);
  border: 1px solid rgba(18, 56, 95, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(18, 56, 95, 0.08);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--light-gray);
}

.accordion-header .arrow {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform var(--transition);
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.5rem;
}

.accordion-body-inner p {
  font-size: 0.9rem;
}

.accordion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.accordion-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(205, 163, 73, 0.1);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 50px;
}

/* --- Brokerage --- */
.brokerage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.brokerage-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.brokerage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.brokerage-icon {
  width: 48px;
  height: 48px;
  background: rgba(205, 163, 73, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.brokerage-card h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.brokerage-card p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* --- Industries --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.industry-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 56, 95, 0.08);
  transition: all var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(205, 163, 73, 0.3);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: rgba(205, 163, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.industry-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 56, 95, 0.08);
  background: var(--white);
  transition: all var(--transition);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(205, 163, 73, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.why-card h4 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* --- Sustainability --- */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sustain-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: all var(--transition);
}

.sustain-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.sustain-icon {
  width: 52px;
  height: 52px;
  background: rgba(205, 163, 73, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.sustain-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sustain-card p {
  font-size: 0.88rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* --- Process --- */
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 3.2rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(18, 56, 95, 0.15);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.process-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.process-step p {
  font-size: 0.78rem;
  margin: 0;
  color: var(--text-light);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(205, 163, 73, 0.06);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(18, 56, 95, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(18, 56, 95, 0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--dark-gray);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 163, 73, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-info-card h4 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  background: rgba(205, 163, 73, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-item span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.contact-info-item strong {
  display: block;
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin: 0;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(205, 163, 73, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* --- Loading --- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(205, 163, 73, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Language Switcher --- */
.lang-switcher {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.lang-switcher:hover {
  background: var(--gold);
  color: var(--navy);
}

/* --- RTL Support --- */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] body {
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}
html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
html[dir="rtl"] .about-grid {
  direction: rtl;
}
html[dir="rtl"] .about-grid .about-visual {
  order: 2;
}
html[dir="rtl"] .about-grid .about-content {
  order: 1;
}
html[dir="rtl"] .vm-grid {
  direction: rtl;
}
html[dir="rtl"] .vm-grid > div:first-child {
  order: 2;
}
html[dir="rtl"] .vm-grid > div:last-child {
  order: 1;
}
html[dir="rtl"] .vm-card ul {
  padding-right: 1.5rem;
  padding-left: 0;
}
html[dir="rtl"] .mission-list li::before {
  left: auto;
  right: -1.5rem;
}
html[dir="rtl"] .process-timeline {
  direction: rtl;
}
html[dir="rtl"] .contact-grid {
  direction: rtl;
}
html[dir="rtl"] .contact-grid .contact-form-card {
  order: 1;
}
html[dir="rtl"] .contact-grid .contact-sidebar {
  order: 2;
}
html[dir="rtl"] .contact-info-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-grid {
  direction: rtl;
}
html[dir="rtl"] .footer-contact-item {
  flex-direction: row-reverse;
  gap: 10px;
}
html[dir="rtl"] .footer-contact-icon {
  order: 2;
}
html[dir="rtl"] .accordion-header {
  text-align: right;
}
html[dir="rtl"] .accordion-header .arrow {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .form-row {
  direction: rtl;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
}
