/* ═══════════════════════════════════════════════════════════
   El Alamya Modern Contracting - Awwwards Edition CSS
   Premium GSAP-Powered Animations with Curtain Reveals
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES - BRAND COLORS FROM LOGO
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Brand Colors from Logo */
  --primary-teal: #1b8a93; /* Main teal from logo circle */
  --primary-teal-dark: #156b73; /* Darker teal for hover states */
  --primary-teal-light: #2aa4ae; /* Lighter teal for accents */

  --secondary-orange: #e67e22; /* Orange from logo curves */
  --secondary-orange-dark: #d35400; /* Darker orange for hover */
  --secondary-orange-light: #f39c12; /* Lighter orange/gold */

  --accent-gold: #f39c12; /* Gold/yellow from logo */
  --accent-gold-dark: #e67e22; /* Darker gold */

  /* Neutral Colors */
  --neutral-dark: #1a1a1a;
  --neutral-light: #f8f9fa;
  --neutral-grey: #6c757d;

  /* UI Colors */
  --glass-bg: rgba(27, 138, 147, 0.45); /* Teal glass */
  --glass-border: rgba(27, 138, 147, 0.2);

  /* Typography */
  --font-display: "Cairo", "Tajawal", sans-serif;
  --font-body: "Cairo", "Tajawal", sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(27, 138, 147, 0.08);
  --shadow-heavy: 0 10px 40px rgba(27, 138, 147, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--neutral-light);
  color: var(--neutral-dark);
  overflow-x: hidden;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

/* Lenis Smooth Scroll Base */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE NAVBAR WITH MOBILE MENU
   ═══════════════════════════════════════════════════════════ */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 95%;
  max-width: 1400px;

  /* background: var(--glass-bg); */
  /* background: rgb(27 138 147 / 67%); */
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  padding: 15px 40px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background;
}

.floating-nav.scrolled {
  top: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  padding: 12px 35px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease, transform 0.3s ease;
}

.floating-nav.scrolled .nav-logo-img {
  height: 50px;
}

/* Fixed logo size when scrolled > 100px */
.floating-nav.scroll-down .nav-logo-img {
  height: 60px;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links a {
  color: var(--neutral-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

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

.nav-links a::after:not(.ravel_logo) {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-orange);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after:not(.ravel_logo) {
  width: 100%;
}

.ravel_logo img {
  border-radius: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.nav-links a.ravel_logo:hover img {
  transform: scale(1.1);
  display: inline-block;
}

/* Navigation Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(126, 126, 126, 0.103);
  padding: 6px;
  border-radius: 30px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.7);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn i {
  font-size: 14px;
}

.lang-btn:hover {
  color: white;
  background: var(--accent-gold);
}

.lang-btn.active {
  background: var(--secondary-orange);
  color: white;
}

/* CTA Button */
.nav-cta {
  background: var(--secondary-orange);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #ff8555;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  color: white;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 31, 68, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 10000;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-links li {
  margin: 15px 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu .ravel_logo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu .ravel_logo img {
  height: 60px;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  display: inline-block;
}

.mobile-nav-link:hover {
  color: var(--secondary-orange);
  transform: translateX(10px);
}

.mobile-cta-btn {
  display: inline-block;
  background: var(--secondary-orange);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  background: #ff8555;
  transform: scale(1.05);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - MASSIVE TYPOGRAPHY & CURTAIN REVEAL
   ═══════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--primary-teal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Background Image Container with Curtain Reveal */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;

  /* CURTAIN REVEAL - Initial State: Hidden by clip-path */
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 31, 68, 0.95) 0%,
    rgba(26, 26, 26, 0.85) 100%
  );
  pointer-events: none;
}

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

/* MASSIVE TYPOGRAPHY (Heavy Civil Style) */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  /* Ensure proper Arabic rendering */
  direction: rtl;
  text-align: right;
}

.hero-title .highlight {
  color: var(--accent-gold);
  display: block;
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 900;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
  /* Ensure proper Arabic rendering */
  direction: rtl;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .hero-subtitle,
  .hero-title,
  .hero-content {
    text-align: center;
  }
}

/* Magnetic CTA Button */
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--secondary-orange);
  color: white;
  padding: 20px 50px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  will-change: transform;
  border: none;
  cursor: pointer;
}

.magnetic-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.magnetic-btn:hover::before {
  left: 100%;
}

.magnetic-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   HERO FLOATING LOGO - PREMIUM DESIGN
   ═══════════════════════════════════════════════════════════ */
.hero-logo-container {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0;
  /* Initial state for animation */
}

@media (max-width: 1200px) {
  .hero-logo-container {
    left: 5%;
  }
}

@media (max-width: 991px) {
  .hero-logo-container {
    display: none;
  }
}

.hero-logo-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  padding: 20px;
}

@media (max-width: 1200px) {
  .hero-logo-wrapper {
    width: 300px;
    height: 300px;
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .hero-logo-wrapper {
    width: 220px;
    height: 220px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .hero-logo-wrapper {
    width: 160px;
    height: 160px;
    padding: 8px;
  }
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(27, 138, 147, 0.5))
    drop-shadow(0 5px 15px rgba(230, 126, 34, 0.3));
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-wrapper:hover .hero-logo {
  filter: drop-shadow(0 20px 50px rgba(27, 138, 147, 0.7))
    drop-shadow(0 8px 25px rgba(230, 126, 34, 0.5));
  transform: scale(1.08);
}

/* Animated Glow Effect */
.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(27, 138, 147, 0.4) 0%,
    rgba(230, 126, 34, 0.3) 40%,
    rgba(243, 156, 18, 0.2) 60%,
    transparent 75%
  );
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 1;
  filter: blur(15px);
}

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

/* Rotating Border Effect */
.hero-logo-wrapper::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(
    45deg,
    var(--primary-teal),
    var(--secondary-orange),
    var(--accent-gold),
    var(--primary-teal)
  );
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
  animation: rotate-border 8s linear infinite;
  filter: blur(12px);
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Particle Effect (Optional Decorative Elements) */
.hero-logo-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  border: 2px solid rgba(27, 138, 147, 0.2);
  border-radius: 50%;
  animation: expand-ring 4s ease-out infinite;
}

@keyframes expand-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION - MASONRY GRID WITH CURTAIN REVEAL
   ═══════════════════════════════════════════════════════════ */
.services-section {
  padding: 60px 0;
  background: white;
}
@media screen and (max-width: 767px) {
  .services-section {
    padding: 30px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--primary-teal);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(26, 26, 26, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Card with Image Reveal */
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 450px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* CURTAIN REVEAL - Initial State */
  clip-path: inset(0 100% 0 0);
  will-change: transform, clip-path;
}

.service-card:hover .service-card-img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 31, 68, 0.85) 70%
  );
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.5s ease;
  pointer-events: none;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 107, 53, 0.9) 0%,
    rgba(10, 31, 68, 0.95) 100%
  );
}

.service-icon {
  font-size: 48px;
  color: var(--secondary-orange);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: white;
}

.service-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.service-card:hover .service-description {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO SECTION - SWIPER WITH CURTAIN REVEAL
   ═══════════════════════════════════════════════════════════ */
.portfolio-section {
  padding: 60px 0;
  background: var(--neutral-light);
}

.portfolio-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-soft); */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* CURTAIN REVEAL - Initial State */
  clip-path: inset(100% 0 0 0);
  will-change: transform, clip-path;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.portfolio-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.portfolio-swiper {
  height: 100%;
}

.portfolio-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-swiper .swiper-slide img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 20px 16px;
}

.portfolio-name a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-teal);
  margin-bottom: 20px;
  display: block;
}
.portfolio-name a:hover {
  color: var(--accent-gold);
}

.portfolio-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--secondary-orange);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION - ASYMMETRICAL LAYOUT
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 60px 0;
  background: var(--primary-teal);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--secondary-orange);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION - SWIPER SLIDER
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(27, 138, 147, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(230, 126, 34, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--primary-teal);
}

.section-badge i {
  font-size: 1.2rem;
  color: var(--secondary-orange);
}

/* Testimonials Wrapper */
.testimonials-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(27, 138, 147, 0.1);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-teal) 0%,
    var(--secondary-orange) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 20px 60px rgba(27, 138, 147, 0.15); */
}

/* Quote Icon */
.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--secondary-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
  opacity: 0.15;
  transform: rotate(15deg) scale(1.1);
}

.testimonial-quote-icon i {
  font-size: 3rem;
  color: white;
}

/* Testimonial Content */
.testimonial-content {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  padding-right: 30px;
}

.testimonial-text::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 4rem;
  color: var(--primary-teal);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Rating Stars */
.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-top: 20px;
  align-items: center;
}

.testimonial-rating i {
  color: var(--secondary-orange);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1;
}

/* Ensure Bootstrap Icons are visible */
.testimonial-rating i.bi {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.testimonial-card:hover .testimonial-rating i {
  transform: scale(1.1);
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 25px;
  border-top: 2px solid rgba(27, 138, 147, 0.1);
  position: relative;
  z-index: 2;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary-teal);
  box-shadow: 0 4px 15px rgba(27, 138, 147, 0.2);
  transition: all 0.4s ease;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--secondary-orange)
  );
  padding: 3px;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
  border-color: var(--secondary-orange);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 5px;
  line-height: 1.2;
}

.author-position {
  color: rgba(26, 26, 26, 0.6);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

/* Testimonials Navigation */
.testimonials-navigation {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.testimonials-button-prev,
.testimonials-button-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-teal);
}

.testimonials-button-prev:hover,
.testimonials-button-next:hover {
  background: var(--primary-teal);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(27, 138, 147, 0.3);
}

.testimonials-button-prev i,
.testimonials-button-next i {
  font-size: 1.5rem;
  color: var(--primary-teal);
  transition: color 0.3s ease;
}

.testimonials-button-prev:hover i,
.testimonials-button-next:hover i {
  color: white;
}

.testimonials-button-prev.swiper-button-disabled,
.testimonials-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Swiper Pagination */
.testimonials-pagination {
  margin-top: 40px !important;
  position: relative !important;
  bottom: auto !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-teal);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 40px;
  border-radius: 6px;
  background: var(--secondary-orange);
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-navigation {
    left: -40px;
    right: -40px;
  }

  .testimonial-card {
    padding: 35px;
    min-height: 380px;
  }
}

@media screen and (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-navigation {
    position: relative;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 25px;
    min-height: auto;
  }

  .testimonial-quote-icon {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }

  .testimonial-quote-icon i {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-right: 20px;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
  }

  .author-name {
    font-size: 1.1rem;
  }

  .author-position {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 576px) {
  .section-badge {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonials-button-prev,
  .testimonials-button-next {
    width: 45px;
    height: 45px;
  }
}

/* Add Review Button */
.btn-add-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--secondary-orange)
  );
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(27, 138, 147, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-add-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-add-review:hover::before {
  left: 100%;
}

.btn-add-review:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
  color: white;
}

.btn-add-review i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-add-review:hover i {
  transform: rotate(90deg);
}

/* Review Modal Styling */
.modal {
  z-index: 99999;
}
.review-modal {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.review-modal .modal-header {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--secondary-orange)
  );
  color: white;
  border-bottom: none;
}

.review-modal .modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}

.review-modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.review-modal .btn-close:hover {
  opacity: 1;
}

.review-modal .modal-body {
  padding: 20px;
  background: #f8f9fa;
}

.review-modal .form-label {
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-input {
  border: 2px solid rgba(27, 138, 147, 0.2);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: white;
}

.review-input:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(27, 138, 147, 0.1);
  outline: none;
}

.review-input::placeholder {
  color: #adb5bd;
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
  font-size: 1.5rem;
}

.star-rating-input input[type="radio"] {
  display: none;
}

.star-rating-input label {
  cursor: pointer;
  color: #ddd;
  transition: all 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input[type="radio"]:checked ~ label {
  color: var(--secondary-orange);
  transform: scale(1.1);
}

.star-rating-input label:active {
  transform: scale(0.95);
}

.review-input.form-control {
  min-height: calc(1em + 0.75rem + 1px * 2);
  max-height: calc(5em + 0.75rem + 1px * 1);
}

/* Modal Footer */
.review-modal .modal-footer {
  background: white;
  border-top: 2px solid #e9ecef;
  gap: 15px;
}

.btn-secondary-modal {
  padding: 8px 30px;
  border-radius: 10px;
  border: 2px solid #6c757d;
  background: white;
  color: #6c757d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-modal:hover {
  background: #6c757d;
  color: white;
  transform: translateY(-2px);
}

.btn-submit-review {
  padding: 8px 35px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--secondary-orange)
  );
  color: white;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 138, 147, 0.3);
}

.btn-submit-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-submit-review:active {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  آثص ُيهف .review-modal .modal-footer {
    gap: 2px;
  }
  .btn-secondary-modal,
  .btn-submit-review {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

/* Modal Animation */
.modal.fade .modal-dialog {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .review-modal .modal-body {
    padding: 20px;
  }

  .review-modal .modal-header {
    padding: 20px;
  }

  .review-modal .modal-title {
    font-size: 1.25rem;
  }

  .star-rating-input {
    font-size: 1.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION - FLOATING CARDS
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 60px 0;
  background: white;
}

.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .contact-card {
    padding: 20px;
  }
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-label {
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 10px;
  display: block;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(10, 31, 68, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--secondary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info-card {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 25px;
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 5px;
}

.contact-info-text p {
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

.contact-info-text a {
  color: rgba(26, 26, 26, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--secondary-orange);
}

.contact-info-text {
}
.email-list {
}

.email-list a {
  color: rgba(26, 26, 26, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 0;
  position: relative;
  display: block;
}

.email-list a::before {
  content: unset;
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.email-list a:hover::before {
  opacity: 1;
}

.email-list a:hover {
  color: var(--secondary-orange);
  padding-right: 5px;
}

/* QR Code Section */
.qr-codes-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.qr-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  max-width: 200px;
}

.qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(27, 58, 95, 0.12);
}

.qr-card img {
  width: 140px;
  height: 140px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.qr-label {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--neutral-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-orange);
  transform: translateX(-5px);
}

.footer-links a:hover i {
  transform: translateX(-3px);
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-list li i {
  color: var(--secondary-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list li div {
  flex: 1;
}

.footer-contact-list li strong {
  color: white;
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.footer-contact-list li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-list li a {
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--secondary-orange);
  text-decoration: underline;
}

/* Social Links */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link.black_type {
  color: #1a1a1a;
}

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

.social-link.black_type:hover {
  background: var(--secondary-orange);
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS & TITLES - GLOBAL STYLES
   ═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-teal);
  margin-bottom: 15px;
  line-height: 1.2;
  /* Ensure visibility by default - prevent GSAP hiding */
  opacity: 1 !important;
  transform: none !important;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--neutral-grey);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT US SECTION - COMPANY OVERVIEW
   ═══════════════════════════════════════════════════════════ */
.about-section {
  padding: 60px 0;
  background: white;
  position: relative;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 25px;
  /* Ensure visibility by default */
  opacity: 1;
  transform: none;
}

.section-badge i {
  font-size: 16px;
}

/* About Content */
.about-content {
  margin-top: 30px;
  /* Ensure visibility by default */
  opacity: 1;
  transform: none;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-teal);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 20px;
}

.highlight-text {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-right: 4px solid var(--secondary-orange);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--primary-teal);
}

/* About Features */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  /* Ensure visibility by default */
  opacity: 1;
  transform: none;
}

.feature-item:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--secondary-orange),
    var(--accent-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* About Image */
.about-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.about-image-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
}

/* Decorative Shape */
.about-shape {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--secondary-orange),
    var(--accent-gold)
  );
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

/* Responsive About Section */
@media (max-width: 992px) {
  .about-image-wrapper {
    min-height: 400px;
  }

  .about-features {
    margin-top: 25px;
  }
}

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

  .lead-text {
    font-size: 1.05rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-image-wrapper {
    min-height: initial;
    height: 200px;
    /* margin-bottom: 30px; */
  }
}

/* ═══════════════════════════════════════════════════════════
   RAVEL PARTNERSHIP SECTION - PREMIUM SPLIT LAYOUT
   ═══════════════════════════════════════════════════════════ */
.ravel-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.bg_pattern {
  position: relative;
}
.bg_pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -700px;
  width: 100%;
  height: 100%;
  background: url(../imgs/pattern-01.svg) no-repeat;
  background-size: 80%;
  opacity: 0.03;
  filter: invert(1);
}
.bg_pattern.bg_pattern_rev::before {
  left: auto;
  right: -500px;
  background-size: 30%;
  background-position: center;
  top: auto;
  bottom: 0;
}

/* Premium Badge */
.ravel-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--secondary-orange), #ff8555);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 25px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  animation: badge-pulse 3s ease-in-out infinite;
}

.ravel-badge i {
  font-size: 18px;
}

@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  }
}

/* Main Title */
.ravel-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary-teal);
  line-height: 1.2;
  margin-bottom: 25px;
}

.ravel-title-highlight {
  display: block;
  background: linear-gradient(
    135deg,
    var(--secondary-orange),
    var(--accent-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.ravel-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 35px;
  max-width: 500px;
}

.ravel-description strong {
  color: var(--primary-teal);
  font-weight: 700;
}

/* Benefits List */
.ravel-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.ravel-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.8);
}

.ravel-benefits li i {
  font-size: 24px;
  color: var(--secondary-orange);
  flex-shrink: 0;
}

/* CTA Section */
.ravel-cta {
  margin-top: 40px;
}

.ravel-btn {
  background: var(--primary-teal);
  padding: 18px 45px;
}

.ravel-btn:hover {
  background: var(--secondary-orange);
}

/* Image Container */
.ravel-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* Decorative Circle */
.ravel-circle {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(212, 175, 55, 0.1)
  );
  z-index: 0;
  animation: circle-float 6s ease-in-out infinite;
}

@keyframes circle-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.05);
  }
}

/* Main Image Box */
.ravel-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  height: 500px;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ravel-image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

/* Image Overlay */
.ravel-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 31, 68, 0.3) 0%,
    rgba(255, 107, 53, 0.2) 100%
  );
  background-color: #fff;
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ravel-image-box:hover .ravel-image-overlay {
  opacity: 0.2;
}

/* Main Image */
.ravel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ravel-image-box:hover .ravel-image {
  transform: scale(1.08);
}

/* Floating Stats Card */
.ravel-stats-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 30px;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  padding: 25px 35px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);

  animation: stats-float 4s ease-in-out infinite;
}

@keyframes stats-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.ravel-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.ravel-stat-label {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 600;
}

.ravel-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(26, 26, 26, 0.15);
}

/* Responsive Ravel Section */
@media (max-width: 992px) {
  .ravel-image-container {
    min-height: 400px;
  }

  .ravel-image-box {
    height: 400px;
  }

  .ravel-circle {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
  }

  .ravel-stats-card {
    bottom: 20px;
    left: 20px;
    padding: 20px 25px;
    gap: 20px;
  }

  .ravel-stat-number {
    font-size: 2rem;
  }
}

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

  .ravel-badge {
    font-size: 12px;
    padding: 10px 20px;
  }

  .ravel-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .ravel-description {
    font-size: 1rem;
  }

  .ravel-image-container {
    min-height: 350px;
    margin-top: 40px;
  }

  .ravel-image-box {
    height: 350px;
  }

  .ravel-stats-card {
    /* flex-direction: column; */
    /* gap: 15px; */
    padding: 18px 22px;
  }

  .ravel-stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Tablet View (< 1200px) */
@media (max-width: 1199px) {
  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .floating-nav {
    padding: 12px 30px;
  }
}

/* Small Tablet View (< 992px) - Show Mobile Menu */
@media (max-width: 991px) {
  .floating-nav {
    padding: 12px 20px;
    border-radius: 50px;
  }

  /* Hide desktop menu */
  .nav-links {
    display: none;
  }

  /* Show mobile toggle */
  .mobile-menu-toggle {
    display: flex;
  }

  .lang-btn {
    padding: 8px;
    width: 35px;
    height: 35px;
    justify-content: center;
  }

  .nav-cta {
    padding: 10px 20px;
    font-size: 13px;
  }

  .nav-actions {
    gap: 12px;
  }
}

/* Mobile View (< 768px) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .floating-nav {
    padding: 10px 20px;
  }

  .service-card {
    height: 350px;
  }

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

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .hero-title .highlight {
    font-size: clamp(3rem, 8vw, 6rem);
  }

  .portfolio-image-wrapper {
    height: 300px;
  }
  .floating-nav {
    width: 92%;
    padding: 10px 15px;
    top: 15px;
  }

  .floating-nav.scrolled {
    top: 10px;
  }

  .nav-logo-img {
    height: 35px;
  }
  .floating-nav.scroll-down .nav-logo-img {
    height: 35px;
  }

  /* Hide desktop CTA on very small screens */
  .nav-cta {
    display: none;
  }

  /* Simplify language switcher */
  .language-switcher {
  }

  .lang-btn {
    padding: 6px;
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .hero-title .highlight {
    font-size: clamp(3rem, 8vw, 6rem);
  }

  .service-card {
    height: 350px;
  }

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

  .portfolio-image-wrapper {
    height: 300px;
  }

  .mobile-nav-link {
    font-size: 1.5rem;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
  .floating-nav {
    padding: 8px 12px;
    border-radius: 40px;
  }

  .nav-logo-img {
    height: 30px;
  }
  .floating-nav.scroll-down .nav-logo-img {
    height: 30px;
  }

  .mobile-menu-toggle {
    padding: 4px;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
  }

  .mobile-nav-link {
    font-size: 1.3rem;
  }

  .mobile-cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ═════════════════════════════════════════════════════════ */

/* GPU Acceleration for smooth animations */
.hero-bg,
.service-card-img,
.portfolio-card,
.magnetic-btn {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Reduce paint for better performance */
.service-card-overlay,
.hero-overlay {
  contain: layout style paint;
}

.px_5 {
  padding: 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .px_5 {
    padding: 0 0rem;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(27, 58, 95, 0.8);
  width: 40px !important;
  height: 40px !important;
  padding: 10px;
  margin-top: 0 !important;
  border-radius: 50%;
  z-index: 10;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(27, 58, 95, 0.95);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Main Projects Slider Navigation - Larger buttons */
.projects-nav-next,
.projects-nav-prev {
  width: 50px !important;
  height: 50px !important;
  background: rgba(27, 58, 95, 0.9) !important;
}

.projects-nav-next::after,
.projects-nav-prev::after {
  font-size: 22px !important;
}

.projects-nav-next {
  /* left: auto !important;
  right: -60px; */
}

.projects-nav-prev {
  /* right: auto !important;
  left: -60px; */
}

/* Adjust on smaller screens */
@media screen and (max-width: 1200px) {
  .nav_custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .projects-nav-next,
  .projects-nav-prev {
    position: static;
  }
}

/* ═══════════════════════════════════════════════════════════
   CLIENTS CAROUSEL SECTION - PREMIUM STYLING
   ═══════════════════════════════════════════════════════════ */
.swiper-client {
  padding: 2rem 0;
  position: relative;
}

.swiper-client .swiper-wrapper {
  align-items: center;
}

.swiper-client .swiper-slide {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-teal-light),
    var(--primary-teal)
  );
  padding: 3px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-client .swiper-slide:hover {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    var(--secondary-orange),
    var(--accent-gold)
  );
  box-shadow: 0 8px 30px rgba(27, 138, 147, 0.3);
}

.swiper-client .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: white;
  z-index: 1;
}

.swiper-client .client-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  filter: grayscale(100%);
}

.swiper-client .swiper-slide:hover .client-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .swiper-client .swiper-slide {
    width: 120px !important;
    height: 120px !important;
  }
}

@media (max-width: 480px) {
  .swiper-client .swiper-slide {
    width: 100px !important;
    height: 100px !important;
  }

  .swiper-client .client-img {
    padding: 15px;
  }
}

@media screen and (max-width: 1399px) {
  .nav-links {
    gap: 16px;
  }
  .nav-cta {
    padding: 12px 16px;
    font-size: 13px;
  }
  .ravel_logo img {
    height: 30px;
  }
  .nav-logo-img {
    height: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .nav-logo-img {
    height: 60px;
  }
  .ravel_logo img {
    height: 25px;
  }
  .lang-btn {
    gap: 3px;
    padding: 6px 8px;
    font-size: 10px;
  }
}
@media screen and (max-width: 1099px) {
  .nav-cta {
    padding: 8px 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .magnetic-btn {
    gap: 10px;
    padding: 16px 20px;
    font-size: 16px;
  }
  .ravel-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .ravel-benefits li {
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 580px) {
  .section-title {
    font-size: clamp(1.5rem, 3vw, 1.5rem);
    margin-bottom: 10px;
  }
  .about-content p {
    font-size: 0.8rem;
  }
  .contact-info-text p,
  .feature-text p {
    font-size: 0.8rem;
  }
  .service-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .portfolio-name {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  .contact-info-text h4 {
    font-size: 1rem;
  }
  .email-list {
    flex-direction: column;
    align-items: start;
  }
  .qr-card {
    padding: 1rem;
    max-width: 140px;
  }
  .qr-card img {
    width: 100px;
    height: 100px;
  }
}

/* ═══════════════════════════════════════════════════════════
       ABOUT PAGE CUSTOM STYLES
       ═══════════════════════════════════════════════════════════ */

/* About Hero Section */
.about-hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
}

.about-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-content {
  color: #fff;
  font-size: 1.4rem;
}
.about-hero-content p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(26, 84, 144, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(26, 84, 144, 0.08);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a5490, #e67e22);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.15);
}

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

.value-icon-wrapper {
  margin-bottom: 25px;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(26, 84, 144, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 15px;
  line-height: 1.3;
}

.value-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

/* Principles Section */
.principles-section {
  padding: 100px 0;
  position: relative;
}

.principle-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.principle-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.03) 0%,
    rgba(230, 126, 34, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.principle-item:hover {
  transform: translateY(-10px);
  border-color: #1a5490;
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.15);
}

.principle-item:hover::before {
  opacity: 1;
}

.principle-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26, 84, 144, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
}

.principle-item:hover .principle-number {
  color: rgba(230, 126, 34, 0.2);
  transform: scale(1.1);
}

.principle-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(26, 84, 144, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.principle-item:hover .principle-icon {
  transform: scale(1.15) rotate(360deg);
}

.principle-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.principle-description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Mission Section */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.mission-content-box {
  padding: 40px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.mission-box-highlight {
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.03) 0%,
    rgba(230, 126, 34, 0.03) 100%
  );
  border: 2px solid rgba(26, 84, 144, 0.1);
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a5490;
  line-height: 1.3;
}

.mission-text {
  margin-bottom: 30px;
}

.mission-text .lead-text {
  font-size: 1.2rem;
  line-height: 2;
  color: #333;
}

.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(26, 84, 144, 0.03);
  border-radius: 15px;
  border-right: 4px solid #e67e22;
  transition: all 0.3s ease;
}

.goal-item:hover {
  background: rgba(26, 84, 144, 0.06);
  transform: translateX(-5px);
}

.goal-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e67e22;
  font-size: 1.5rem;
}

.goal-item p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.mission-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.mission-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border-radius: 50px;
  border: 2px solid #1a5490;
  font-weight: 700;
  color: #1a5490;
  transition: all 0.3s ease;
}

.mission-feature:hover {
  background: #1a5490;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 84, 144, 0.25);
}

.mission-feature i {
  font-size: 1.3rem;
}

/* Management Section */
.management-section {
  padding: 100px 0;
  position: relative;
}

.management-content {
  position: relative;
}

.management-content .lead-text {
  font-size: 1.25rem;
  line-height: 2;
  color: #333;
  font-weight: 500;
}

.management-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
}

.management-highlights {
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(26, 84, 144, 0.03);
  border-radius: 15px;
  margin-bottom: 20px;
  border-right: 4px solid #1a5490;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(26, 84, 144, 0.06);
  transform: translateX(-5px);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #e67e22;
  flex-shrink: 0;
}

.highlight-item h5 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 8px;
}

.highlight-item p {
  margin: 0;
  font-size: 1.05rem;
  color: #555;
}

.management-image-wrapper {
  position: relative;
}

.management-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.management-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.management-image-box:hover .management-image {
  transform: scale(1.05);
}

.management-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #1a5490, #e67e22);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

/* Active nav link */
.nav-links a.active {
  color: #e67e22;
  font-weight: 700;
}

.mobile-nav-link.active {
  color: #e67e22;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-hero-content p {
    font-size: .9rem;
  }

  .about-hero-section {
    padding: 120px 0 80px;
    min-height: 60vh;
  }

  .about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .values-section,
  .principles-section,
  .mission-section,
  .management-section {
    padding: 70px 0;
  }

  .value-title,
  .principle-title {
    font-size: 1.5rem;
  }

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

  .management-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .value-card,
  .principle-item,
  .mission-content-box {
    padding: 30px 20px;
  }

  .principle-number {
    font-size: 2.5rem;
    top: 15px;
    left: 15px;
  }

  .mission-features {
    flex-direction: column;
  }

  .mission-feature {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
       PROJECTS PAGE CUSTOM STYLES
       ═══════════════════════════════════════════════════════════ */
       
/* Banner Section - 300px Height */
.projects-banner {
  position: relative;
  background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/imgs/banners/banner-01.jpg") center/cover;
  opacity: 0.15;
}

.projects-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.9) 0%,
    rgba(13, 58, 107, 0.95) 100%
  );
}

.projects-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.projects-banner-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Projects Grid Section */
.projects-grid-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Project Grid Card */
.project-grid-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 84, 144, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.15);
}

/* Project Images */
.project-grid-images {
  position: relative;
  overflow: hidden;
}

.project-main-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-grid-card:hover .project-main-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.95) 0%,
    rgba(230, 126, 34, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-grid-card:hover .project-overlay {
  opacity: 1;
}

.view-gallery-btn {
  background: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a5490;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project-grid-card:hover .view-gallery-btn {
  transform: translateY(0);
}

.view-gallery-btn:hover {
  background: #1a5490;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.4);
}

.view-gallery-btn i {
  font-size: 1.3rem;
}

.project-image-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(26, 84, 144, 0.95);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.project-image-count i {
  font-size: 1rem;
}

/* Project Info */
.project-grid-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-grid-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 20px;
  line-height: 1.4;
}

.project-grid-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.project-grid-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
  padding: 10px;
  background: rgba(26, 84, 144, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.project-grid-meta .meta-item:hover {
  background: rgba(26, 84, 144, 0.08);
  transform: translateX(-3px);
}

.project-grid-meta .meta-item i {
  color: #e67e22;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.project-grid-meta .meta-item span {
  line-height: 1.5;
}

/* Modal Styles */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  color: white;
  border: none;
  padding: 20px 30px;
}

.modal-title {
  font-weight: 800;
  font-size: 1.5rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.modal-body {
  padding: 30px;
}

.project-modal-gallery img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-modal-gallery img:hover {
  transform: scale(1.05);
}

/* Tabs Override */
.portfolio-filters-container {
  display: flex;
  justify-content: center;
}

/* Active Nav Link */
.nav-links a.active {
  color: #e67e22;
  font-weight: 700;
}

.mobile-nav-link.active {
  color: #e67e22;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .projects-banner {
    padding-top: 110px;
    padding-bottom: 30px;
  }

  .projects-banner-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
  }

  .projects-grid-section {
    padding: 60px 0;
  }

  .project-main-image {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .projects-banner-subtitle {
    font-size: 1rem;
  }

  .project-grid-meta {
    grid-template-columns: 1fr;
  }

  .project-main-image {
    height: 200px;
  }

  .view-gallery-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
       SERVICES PAGE CUSTOM STYLES
       ═══════════════════════════════════════════════════════════ */

/* Services Banner */
.services-banner {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.services-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.92) 0%,
    rgba(13, 58, 107, 0.95) 100%
  );
}

.services-banner .container {
  position: relative;
  z-index: 2;
}

.services-banner .banner-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  margin: 0 0 15px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-banner .banner-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

/* Services Content Section */
.services-content-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

/* Service Detail Card */
.service-detail-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(26, 84, 144, 0.2);
}

/* Service Image */
.service-detail-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.15) rotate(2deg);
}

/* Service Icon */
.service-detail-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.4);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
}

.service-detail-card:hover .service-detail-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 15px 45px rgba(230, 126, 34, 0.5);
}

/* Service Content */
.service-detail-content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-detail-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 18px;
  line-height: 1.4;
}

.service-detail-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

/* Service Features List */
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px;
  background: rgba(26, 84, 144, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-right: 3px solid transparent;
}

.service-features-list li:hover {
  background: rgba(26, 84, 144, 0.06);
  border-right-color: #e67e22;
  transform: translateX(-5px);
}

.service-features-list li i {
  color: #e67e22;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-features-list li:last-child {
  margin-bottom: 0;
}

/* Additional Services Section */
.additional-services-section {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 2px solid rgba(26, 84, 144, 0.1);
}

/* Additional Service Card */
.additional-service-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(26, 84, 144, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.additional-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a5490, #e67e22);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.additional-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.15);
  border-color: rgba(26, 84, 144, 0.1);
}

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

/* Additional Service Icon */
.additional-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(26, 84, 144, 0.25);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.additional-service-card:hover .additional-service-icon {
  transform: scale(1.15) rotate(360deg);
}

.additional-service-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.4;
}

.additional-service-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
  margin: 0;
}

/* Why Choose Section */
.why-choose-section {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 2px solid rgba(26, 84, 144, 0.1);
}

/* Why Choose Card */
.why-choose-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(26, 84, 144, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.03) 0%,
    rgba(230, 126, 34, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.15);
  border-color: #1a5490;
}

.why-choose-card:hover::before {
  opacity: 1;
}

/* Why Choose Number */
.why-choose-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(26, 84, 144, 0.06);
  line-height: 1;
  transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-number {
  color: rgba(230, 126, 34, 0.15);
  transform: scale(1.1);
}

/* Why Choose Icon */
.why-choose-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(26, 84, 144, 0.25);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.15) rotate(360deg);
}

.why-choose-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.why-choose-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .services-banner {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .services-banner .banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .services-banner .banner-subtitle {
    font-size: 1.2rem;
  }

  .services-content-section {
    padding: 70px 0;
  }

  .service-detail-card {
    margin-bottom: 30px;
  }

  .service-detail-image {
    height: 240px;
  }

  .additional-services-section,
  .why-choose-section {
    margin-top: 60px;
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .services-banner {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .services-banner .banner-subtitle {
    font-size: 1rem;
  }

  .services-content-section {
    padding: 50px 0;
  }

  .service-detail-content {
    padding: 25px;
  }

  .service-detail-title {
    font-size: 1.1rem;
  }

  .service-detail-description {
    font-size: 0.8rem;
  }

  .service-detail-image {
    height: 200px;
  }

  .service-detail-icon {
    width: 65px;
    height: 65px;
    font-size: 1.8rem;
  }

  .additional-service-card,
  .why-choose-card {
    padding: 30px 20px;
  }

  .why-choose-number {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════
       CONTACT PAGE CUSTOM STYLES
       ═══════════════════════════════════════════════════════════ */

/* Contact Banner */
.contact-banner {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 84, 144, 0.92) 0%,
    rgba(13, 58, 107, 0.95) 100%
  );
}

/* Contact Page Section */
.contact-page-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: white;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.1);
  height: 100%;
}

.form-header {
  margin-bottom: 35px;
}

.form-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a5490;
  margin: 20px 0 15px;
  line-height: 1.3;
}

.form-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1a5490;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.contact-form .form-label i {
  font-size: 1.2rem;
  color: #e67e22;
}

.contact-form .form-control {
  padding: 15px 20px;
  border: 2px solid rgba(26, 84, 144, 0.1);
  border-radius: 12px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: rgba(26, 84, 144, 0.02);
}

.contact-form .form-control:focus {
  border-color: #1a5490;
  box-shadow: 0 0 0 0.2rem rgba(26, 84, 144, 0.15);
  background: white;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Submit Button */
.submit-btn {
  position: relative;
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 84, 144, 0.4);
}

.submit-btn .btn-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(-5px);
}

.submit-btn .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e67e22 0%, #1a5490 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.submit-btn:hover .btn-bg {
  opacity: 1;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  background: white;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.1);
  height: 100%;
}

.info-header {
  margin-bottom: 35px;
}

.info-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a5490;
  margin: 20px 0 15px;
  line-height: 1.3;
}

.info-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Contact Info Items */
.info-cards-container {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(26, 84, 144, 0.03);
  border-radius: 15px;
  margin-bottom: 20px;
  border-right: 4px solid transparent;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(26, 84, 144, 0.06);
  border-right-color: #e67e22;
  transform: translateX(-5px);
}

.info-icon-wrapper {
  flex-shrink: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 8px 20px rgba(26, 84, 144, 0.25);
  transition: transform 0.3s ease;
}

.contact-info-item:hover .info-icon {
  /* transform: scale(1.1) rotate(360deg); */
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 8px;
}

.info-value {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

.info-value a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.info-value a:hover {
  color: #e67e22;
}

.email-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* QR Codes Section */
.qr-codes-section {
  margin-bottom: 35px;
  padding-top: 30px;
  border-top: 2px solid rgba(26, 84, 144, 0.1);
}

.qr-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 20px;
  text-align: center;
}

.qr-codes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.qr-code-card {
  background: rgba(26, 84, 144, 0.03);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.qr-code-card:hover {
  background: white;
  border-color: #1a5490;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.15);
}

.qr-code-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.qr-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  color: #1a5490;
  font-size: 1.05rem;
}

.qr-label i {
  font-size: 1.3rem;
  color: #e67e22;
}

/* Social Media Section */
.social-media-section {
  padding-top: 30px;
  border-top: 2px solid rgba(26, 84, 144, 0.1);
}

.social-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 20px;
  text-align: center;
}

.social-links-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link-item {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(26, 84, 144, 0.25);
}

.social-link-item:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-banner {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .contact-page-section {
    padding: 70px 0;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 35px 25px;
    margin-bottom: 30px;
  }

  .form-title,
  .info-title {
    font-size: 1.8rem;
  }

  .qr-codes-grid {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .contact-banner {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .contact-page-section {
    padding: 50px 0;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px 20px;
  }

  .form-title,
  .info-title {
    font-size: 1.5rem;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }

  .info-icon-wrapper {
    margin: 0 auto;
  }

  .qr-codes-grid {
    grid-template-columns: 1fr;
  }

  .social-links-grid {
    flex-wrap: wrap;
  }

  .submit-btn {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
}

/* ═══════════════════════════════════════════════════════════
       PROJECT DETAILS PAGE CUSTOM STYLES
       ═══════════════════════════════════════════════════════════ */

/* Project Details Section */
.project-details-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Back Button */
.back-button-wrapper {
  margin-bottom: 40px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: white;
  border: 2px solid rgba(26, 84, 144, 0.2);
  border-radius: 50px;
  color: #1a5490;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(26, 84, 144, 0.1);
}

.back-button:hover {
  background: #1a5490;
  color: white;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(26, 84, 144, 0.2);
}

.back-button i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.back-button:hover i {
  transform: translateX(5px);
}

/* Project Gallery Wrapper */
.project-gallery-wrapper {
  background: white;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.1);
}

/* Main Gallery Swiper */
.project-gallery-main {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.project-gallery-main .swiper-slide {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.project-gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}



/* Navigation Arrows */
.project-gallery-main .swiper-button-next,
.project-gallery-main .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.project-gallery-main .swiper-button-next svg,
.project-gallery-main .swiper-button-prev svg {
  color: var(--neutral-dark);
}
.project-gallery-main .swiper-button-next:after,
.project-gallery-main .swiper-button-prev:after {
  font-size: 1.3rem;
  color: #1a5490;
  font-weight: 900;
}

.project-gallery-main .swiper-button-next:hover,
.project-gallery-main .swiper-button-prev:hover {
  background: #1a5490;
}

.project-gallery-main .swiper-button-next:hover:after,
.project-gallery-main .swiper-button-prev:hover:after {
  color: white;
}

/* Pagination */
.project-gallery-main .swiper-pagination {
  bottom: 20px;
}

.project-gallery-main .swiper-pagination-fraction {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}



/* Thumbnail Gallery */
.project-gallery-thumbs {
  padding: 10px 0;
}

.project-gallery-thumbs .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  height: 100px;
}

.project-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #1a5490;
  transform: scale(1.05);
}

.project-gallery-thumbs .swiper-slide:hover {
  opacity: 1;
}

/* Project Info Wrapper */
.project-info-wrapper {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(26, 84, 144, 0.1);
  height: 100%;
  top: 100px;
}

/* Project Header */
.project-header {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(26, 84, 144, 0.1);
}

.project-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1a5490;
  margin: 20px 0 10px;
  line-height: 1.3;
}

.project-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e67e22;
  margin: 0;
  line-height: 1.4;
}

/* Project Meta Cards */
.project-meta-cards {
  margin-bottom: 30px;
}

.meta-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(26, 84, 144, 0.03);
  border-radius: 15px;
  margin-bottom: 15px;
  border-right: 4px solid transparent;
  transition: all 0.3s ease;
}

.meta-card:hover {
  background: rgba(26, 84, 144, 0.06);
  border-right-color: #e67e22;
  transform: translateX(-5px);
}

.meta-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(26, 84, 144, 0.25);
}

.meta-content {
  flex: 1;
}

.meta-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a5490;
  margin-bottom: 5px;
}

.meta-value {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}

/* Project Description Card */
.project-description-card {
  background: rgba(26, 84, 144, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  border: 2px solid rgba(26, 84, 144, 0.1);
}

.description-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.description-title i {
  color: #e67e22;
  font-size: 1.5rem;
}

.description-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
}

.description-text:last-child {
  margin-bottom: 0;
}

/* Project Features Card */
.project-features-card {
  background: rgba(230, 126, 34, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  border: 2px solid rgba(230, 126, 34, 0.1);
}

.features-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a5490;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-title i {
  color: #e67e22;
  font-size: 1.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.05rem;
  color: #555;
  border-bottom: 1px solid rgba(26, 84, 144, 0.1);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: #e67e22;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Project CTA */
.project-cta {
  margin-top: 30px;
}

.cta-button {
  position: relative;
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #1a5490 0%, #e67e22 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 84, 144, 0.4);
  color: white;
}

.cta-button .btn-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
  transform: translateX(-5px);
}

.cta-button .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e67e22 0%, #1a5490 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.cta-button:hover .btn-bg {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .project-details-section {
    padding: 50px 0;
  }

  .project-gallery-main .swiper-slide {
    height: 400px;
  }

  .project-info-wrapper {
    padding: 30px 25px;
    margin-top: 30px;
  }

  .project-title {
    font-size: 1.7rem;
  }

  .project-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .project-details-section {
    padding: 50px 0;
  }

  .project-gallery-wrapper {
    padding: 15px;
  }

  .project-gallery-main .swiper-slide {
    height: 300px;
  }

  .project-gallery-thumbs .swiper-slide {
    height: 70px;
  }

  .project-info-wrapper {
    padding: 25px 20px;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-subtitle {
    font-size: 1.1rem;
  }

  .meta-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .project-description-card,
  .project-features-card {
    padding: 20px;
  }

  .description-title,
  .features-title {
    font-size: 1.1rem;
  }

  .zoom-hint {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}

/* ═══════════════════════════════════════════════════════════
       RAVEL PAGE CUSTOM STYLES
       ═══════════════════════════════════════════════════════════ */

/* RAVEL Color Variables */
:root {
  --ravel-blue: #1e3a8a;
  --ravel-light-blue: #3b82f6;
  --ravel-yellow: #f9f9f9;
  --ravel-red: #ef4444;
}

/* RAVEL Hero Section */
.ravel-hero-section {
  position: relative;
  padding: 180px 0 100px;
  /* background: linear-gradient(135deg,var(--ravel-blue) 0%,#1e40af 50%,var(--ravel-blue) 100%); */
  overflow: hidden;
  z-index: 1;
}
.ravel-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,var(--ravel-blue) 0%,#1e40af 50%,var(--ravel-blue) 100%);
  opacity: 0.4;
  z-index: -1;
}

.ravel-logo-wrapper {
  margin-bottom: 30px;
}

.ravel-hero-logo {
  max-width: 200px;
  height: auto;
  border-radius: 20px;
}

.ravel-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.ravel-hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ravel-yellow);
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* RAVEL Feature Items */
.ravel-hero-features {
  margin-bottom: 40px;
}

.ravel-feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 20px;
  border-right: 4px solid var(--ravel-yellow);
  transition: all 0.3s ease;
}

.ravel-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
}

.ravel-feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--ravel-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--ravel-blue);
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.ravel-feature-item .feature-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ravel-feature-item .feature-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ravel-feature-item .feature-content p i {
  color: var(--ravel-yellow);
  font-size: 1.2rem;
}

/* RAVEL Hero CTA */
.ravel-hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ravel-btn-primary,
.ravel-btn-secondary {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.ravel-btn-primary {
  background: var(--ravel-yellow);
  color: var(--ravel-blue);
}

.ravel-btn-primary:hover {
  background: var(--ravel-light-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
  color: var(--ravel-yellow);
}

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

.ravel-btn-secondary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

/* Products Showcase */
.ravel-products-showcase {
  position: relative;
  text-align: center;
}

.ravel-products-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.showcase-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ravel-yellow);
  color: var(--ravel-blue);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

/* Hero Background Shapes */
.ravel-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.bg-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.bg-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
}

.bg-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ravel-hero-section > .container {
  position: relative;
  z-index: 1;
}

/* Stats Grid */
.ravel-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card-ravel {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card-ravel:hover {
  transform: translateY(-10px);
  border-color: var(--ravel-yellow);
  box-shadow: 0 15px 50px rgba(30, 58, 138, 0.15);
}

.stat-card-ravel .stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--ravel-blue),
    var(--ravel-light-blue)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.stat-card-ravel .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ravel-blue);
  margin-bottom: 10px;
}

.stat-card-ravel .stat-label {
  font-size: 1.05rem;
  color: #555;
  font-weight: 600;
}

/* Products Section */
.ravel-products-section {
  padding: 100px 0;
  background: #ffffff;
}

.ravel-products-section .section-badge {
  background: var(--ravel-blue);
  color: white;
  padding: 5px 10px;
}
.ravel-products-section .section-badge i {
  color: white;
}
.ravel-products-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ravel-blue);
}

.product-category-card {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.product-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ravel-blue), var(--ravel-yellow));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.product-category-card:hover {
  transform: translateY(-10px);
  border-color: var(--ravel-yellow);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.product-category-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.category-product-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--ravel-blue),
    var(--ravel-light-blue)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
  transition: transform 0.3s ease;
}

.product-category-card .product-img {
  height: 300px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.product-category-card:hover .product-img img {
  transform: scale(1.1);
}

.category-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ravel-blue);
  margin-bottom: 15px;
  text-align: center;
}

.category-desc {
  font-size: 1.05rem;
  color: #555;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.8;
}

.category-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: #666;
  border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.category-features li:last-child {
  border-bottom: none;
}

.category-features li i {
  color: var(--ravel-yellow);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .ravel-hero-section {
    padding: 150px 0 80px;
  }

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

  .ravel-hero-subtitle {
    font-size: 1.5rem;
  }

  .ravel-about-section,
  .ravel-products-section,
  .ravel-partnership-section {
    padding: 70px 0;
  }

  .ravel-stats-grid {
    grid-template-columns: 1fr;
  }

  .partnership-card {
    padding: 40px 30px;
  }

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

@media (max-width: 576px) {
  .ravel-hero-section {
    padding: 130px 0 60px;
  }

  .ravel-hero-logo {
    max-width: 150px;
  }

  .ravel-hero-cta {
    flex-direction: column;
  }

  .ravel-btn-primary,
  .ravel-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cert-badges {
    grid-template-columns: 1fr;
  }

  .partnership-card {
    padding: 30px 20px;
  }

  .partnership-title {
    font-size: 1.6rem;
  }

  .partnership-action {
    margin-top: 30px;
  }

  .partnership-btn {
    width: 100%;
    justify-content: center;
  }
}


/* 
   RAVEL PRODUCT TABS & CARDS
    */

/* Tabs Navigation */
.ravel-nav-tabs {
  border-bottom: none;
  gap: 10px;
}

.ravel-nav-tabs .nav-link {
  color: var(--neutral-grey);
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ravel-nav-tabs .nav-link:hover {
  color: var(--ravel-blue);
  border-color: var(--ravel-blue);
  background: rgba(27, 138, 147, 0.05);
}

.ravel-nav-tabs .nav-link.active {
  background: var(--ravel-blue);
  color: white;
  border-color: var(--ravel-blue);
  box-shadow: 0 4px 10px rgba(27, 138, 147, 0.3);
}

/* Product Card */
.ravel-product-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(0,0,0,0.03);
}

.ravel-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.ravel-product-card .product-img {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  background: #fafafa;
}

.ravel-product-card .product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.ravel-product-card:hover .product-img img {
  transform: scale(1.05);
}

.ravel-product-card .product-info {
  width: 100%;
}

.product-code {
  color: #003060;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.product-title {
  color: var(--neutral-grey);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

