/* ===========================
   وميض الشروق - Main Stylesheet
   =========================== */

/* === VARIABLES === */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0d2440;
  --primary-light: #24527d;
  --secondary: #c8922a;
  --secondary-light: #e6a832;
  --secondary-dark: #a67520;
  --white: #ffffff;
  --light: #f5f7fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --dark: #111827;
  --text: #2d3748;
  --text-muted: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
  --transition: all 0.35s ease;
  --radius: 10px;
  --radius-lg: 18px;
}

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

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

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

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-dark);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 4px 14px;
  background: rgba(200, 146, 42, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(200, 146, 42, 0.25);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.section-divider.right {
  margin-right: 0;
  margin-left: auto;
}

/* === BUTTONS === */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 42, 0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--primary-dark);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--primary-dark);
  transition: var(--transition);
  cursor: pointer;
}

.btn-dark-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* === LOGO IMAGE === */
.navbar-logo-img {
  height: 70px;
  width: auto;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  margin-bottom: 1.2rem;
  display: block;
}

/* Mobile menu header/footer - hidden on desktop */
.mobile-menu-header,
.mobile-menu-footer {
  display: none;
}

/* === NAVBAR === */
.main-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.75) 0%, rgba(10, 25, 47, 0.1) 100%);
}

.main-navbar.scrolled {
  background: var(--primary-dark);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200, 146, 42, 0.4);
}

.navbar-brand-text {
  line-height: 1.2;
}

.navbar-brand-text .brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.navbar-brand-text .brand-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-custom {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--secondary-light);
  background: rgba(255, 255, 255, 0.08);
}

.navbar-cta {
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.navbar-cta:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.45);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === HERO SLIDER === */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  padding: 0;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 25, 47, 0.85) 0%,
    rgba(10, 25, 47, 0.65) 50%,
    rgba(10, 25, 47, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-inner {
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(200, 146, 42, 0.2);
  border: 1px solid rgba(200, 146, 42, 0.5);
  border-radius: 30px;
  color: var(--secondary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--secondary-light);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Swiper custom styles */
.hero-section .swiper-pagination {
  bottom: 30px;
}

.hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
}

.hero-section .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 32px;
  border-radius: 5px;
}

.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
  font-size: 1rem;
  color: var(--white);
  font-weight: 900;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

.hero-scroll-hint i {
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === PAGE HEADER === */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.88) 0%, rgba(10, 25, 47, 0.70) 100%);
}

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

.page-header-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.breadcrumb-custom a {
  color: var(--secondary-light);
}

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

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.5);
}

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

section.compact {
  padding: 60px 0;
}

.bg-light-custom {
  background: var(--light);
}

.bg-primary-custom {
  background: var(--primary-dark);
}

/* === ABOUT BRIEF (HOME) === */
.about-brief {
  background: var(--white);
}

.about-brief-content .section-label {
  margin-bottom: 0.8rem;
}

.about-brief-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.about-feature-item i {
  width: 28px;
  height: 28px;
  background: rgba(200, 146, 42, 0.12);
  color: var(--secondary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stat-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.about-stat-badge .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  display: block;
}

.about-stat-badge .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-badge-accent {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary-dark);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-accent .badge-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.about-badge-accent .badge-text {
  color: var(--white);
}

.about-badge-accent .badge-text strong {
  display: block;
  font-size: 0.9rem;
}

.about-badge-accent .badge-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.1), rgba(26, 58, 92, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
  font-size: 1.6rem;
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--secondary-dark);
}

.service-link:hover i {
  transform: translateX(-4px);
}

/* === STATS SECTION === */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.stat-item .stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 146, 42, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--secondary-light);
}

.stat-item .counter {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-item .stat-suffix {
  font-size: 1.6rem;
  color: var(--secondary-light);
  font-weight: 900;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  display: block;
}

/* === WHY US SECTION === */
.why-us-section {
  background: var(--light);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateX(-4px);
}

.why-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.why-item-text {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.why-visual {
  position: relative;
}

.why-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-overlay-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  max-width: 260px;
}

.why-overlay-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-overlay-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.why-overlay-card .oc-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--white);
  color: var(--secondary-dark);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--white);
  transition: var(--transition);
}

.btn-white-custom:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.btn-outline-white-custom:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* === FOOTER === */
.main-footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand {
  margin-bottom: 1.5rem;
}

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

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--secondary);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-right: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item .contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 146, 42, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .contact-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-contact-item .contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

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

/* === ABOUT PAGE === */
.about-intro {
  background: var(--white);
}

.about-intro-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.vmv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.vmv-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.vmv-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}

.vmv-icon.blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.vmv-icon.gold {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
  color: var(--white);
}

.vmv-icon.dark {
  background: linear-gradient(135deg, #1a1a2e, #2d3748);
  color: var(--white);
}

.vmv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.vmv-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

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

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.value-item .val-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.value-item span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* Company Data */
.company-data-section {
  background: var(--primary-dark);
  padding: 80px 0;
}

.data-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.data-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 146, 42, 0.4);
  transform: translateY(-3px);
}

.data-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 146, 42, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary-light);
  margin-bottom: 1rem;
}

.data-card h5 {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.data-card p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  word-break: break-all;
}

/* === SERVICES PAGE === */
.services-detailed .service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.services-detailed .service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-5px);
}

.service-detail-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}

.service-detail-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 146, 42, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-light);
  margin-bottom: 1rem;
  border: 1px solid rgba(200, 146, 42, 0.3);
}

.service-detail-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.service-detail-body {
  padding: 28px;
}

.service-detail-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-sub-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.service-sub-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === CONTACT PAGE === */
.contact-section {
  background: var(--white);
  padding: 90px 0;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-5px);
}

.contact-info-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
}

.contact-info-icon.blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.contact-info-icon.gold {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
  color: var(--white);
}

.contact-info-icon.green {
  background: linear-gradient(135deg, #1a5f3c, #27ae60);
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--secondary);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--secondary-dark);
}

.map-section {
  background: var(--light);
  padding: 0;
}

#map {
  width: 100%;
  height: 500px;
}

/* === VIDEO SECTION === */
.video-section {
  padding: 90px 0;
  background: var(--light);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-thumb-link {
  display: block;
  position: relative;
}

.video-thumb-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.video-play-btn i {
  font-size: 5.5rem;
  color: #fff;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-thumb-link:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.5);
}

.video-thumb-link:hover .video-play-btn i {
  color: #ff0000;
  transform: scale(1.12);
}

/* === CONTAINER === */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === UTILITY === */
.text-secondary-custom {
  color: var(--secondary) !important;
}

.text-primary-custom {
  color: var(--primary-dark) !important;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  border: 2px solid rgba(255,255,255,0.1);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vmv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    z-index: 1001;
    overflow-y: auto;
  }

  .mobile-menu-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding: 28px 24px 20px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  .mobile-menu-logo {
    height: 64px;
    width: auto;
    display: block;
  }

  .mobile-menu-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    font-weight: 400;
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }

  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    direction: ltr;
    justify-content: flex-end;
  }

  .mobile-contact-item:hover {
    color: var(--secondary-light);
  }

  .mobile-contact-item i {
    width: 22px;
    height: 22px;
    background: rgba(200, 146, 42, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .navbar-menu.open {
    right: 0;
  }

  .nav-link-custom {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 0;
    border-right: 3px solid transparent;
  }

  .nav-link-custom:hover {
    background: rgba(255, 255, 255, 0.06);
    border-right-color: rgba(200, 146, 42, 0.5);
  }

  .nav-link-custom.active {
    background: rgba(200, 146, 42, 0.1);
    border-right-color: var(--secondary);
    color: var(--secondary-light);
  }

  .navbar-cta {
    width: calc(100% - 48px);
    text-align: center;
    margin: 12px 24px 4px;
    border-radius: var(--radius);
    border-right: none;
  }

  .navbar-cta:hover {
    border-right: none;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1002;
  }

  .navbar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .navbar-overlay.active {
    display: block;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .vmv-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-badge {
    right: 10px;
  }

  .about-badge-accent {
    left: 10px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 65px 0;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vmv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .about-stat-badge, .about-badge-accent {
    display: none;
  }

  .about-img-main, .why-img {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .container-custom {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .navbar-logo-img {
    height: 44px;
    max-width: 160px;
    object-fit: contain;
    object-position: right center;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-dark-custom {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
