/* ========================================
   TRAVSACK - Premium Corporate Website
   Main Stylesheet
   ======================================== */

/* === CSS Variables === */
:root {
  --navy: #0A1628;
  --navy-light: #0F2040;
  --royal-blue: #1A3A8F;
  --royal-blue-light: #2050C0;
  --gold: #C9A84C;
  --gold-light: #E0BB6A;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-gray: #E8ECF2;
  --text-gray: #6B7A99;
  --dark-text: #1A2340;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.20);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

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

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

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

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

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

.hidden { display: none; }

.material-icons-outlined {
  font-family: 'Material Icons Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-gray); font-size: 1rem; line-height: 1.8; }

/* === Utility === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }
.bg-navy { background-color: var(--navy); }
.bg-off-white { background-color: var(--off-white); }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

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

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.4s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

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

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

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

.btn-navy:hover {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* === Header / Navbar === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#header.transparent {
  background: transparent;
}

#header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.logo-with-bg {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.logo-img {
  max-height: 48px;
  display: block;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.company-name-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.company-tagline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.company-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 70%; }

.nav-menu a:hover { color: var(--white); }

.header-cta .btn { padding: 10px 24px; font-size: 0.88rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

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

/* === Hero Slider === */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.55) 60%,
    rgba(26,58,143,0.35) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}

.slide-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}

.slide.active .slide-badge { opacity: 1; transform: translateY(0); }

.slide-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  max-width: 750px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease 0.5s;
}

.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease 0.7s;
}

.slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease 0.9s;
}

.slide.active .slide-cta { opacity: 1; transform: translateY(0); }

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}

.slider-dot:hover {
  background: rgba(255,255,255,0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
  border-color: var(--gold-light);
  box-shadow: 0 2px 8px rgba(201,168,76,0.4);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.slider-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}

/* === Sections === */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

/* === Stats Bar === */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 40px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* === About Preview === */
.about-preview {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.about-image-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-main:hover img { transform: scale(1.05); }

.about-badge-float {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 20px 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .about-image-main {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-image-main img {
    height: auto;
    max-height: 340px;
  }

  .about-badge-float {
    bottom: 18px;
    left: 12px;
    transform: none;
    padding: 14px 20px;
  }
}

@media (max-width: 768px) {
  .about-image-main img {
    max-height: 260px;
  }

  .about-badge-float {
    bottom: 12px;
    left: 10px;
    padding: 12px 16px;
  }
}

.about-badge-float .number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline */
.timeline {
  margin: 36px 0;
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--royal-blue));
}

.timeline-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* === Services Section === */
.services-section {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  group: true;
}

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

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-icon {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.service-card-body {
  padding: 36px 28px 28px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* === Why Travsack === */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.why-item-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

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

.why-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.why-item.full-width { grid-column: 1 / -1; }

/* === Gallery Preview === */
.gallery-grid-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-item.tall { grid-row: span 2; }

.gallery-item.wide { grid-column: span 2; }

/* Set heights */
.gallery-item { height: 250px; }
.gallery-item.tall { height: 516px; }

/* === Gallery Preview Carousel === */
.gallery-preview-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  justify-content: center;
}

.carousel-container {
  flex: 1;
  max-width: 900px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.carousel-inner {
  display: flex;
  gap: 12px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
}

.carousel-item-small {
  min-width: 220px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.carousel-item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.carousel-item-small:hover img {
  transform: scale(1.08);
}

.carousel-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9), transparent);
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-item-small:hover .carousel-item-label {
  opacity: 1;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

.carousel-inner-large {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item-large {
  min-width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1400px) {
  .carousel-item-large {
    height: 420px;
  }
}

.carousel-item-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.21);
}

.carousel-item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.carousel-item-large:hover img {
  transform: scale(1);
}

.carousel-item-large .carousel-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9), transparent);
  color: var(--white);
  padding: 20px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* === Responsive Media Queries === */

@media (max-width: 1200px) {
  .header-inner { padding: 16px 18px; }
  .section { padding: 80px 0; }
  .section-sm {padding: 50px 0;}
  .container { padding: 0 16px; }
}

@media (max-width: 992px) {
  .about-grid, .why-grid, .services-grid, .blog-grid, .gallery-grid-masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slider { min-height: 500px; }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 12px;
  }

  .logo-section { flex: 1 1 auto; }
  .logo-img { max-height: 42px; }

  .mobile-toggle { display: flex; z-index: 1300; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 78vw);
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 18px 24px;
    gap: 10px;
    z-index: 1250;
    transition: right 0.28s ease;
    overflow-y: auto;
    overflow-x: hidden;
  }

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

  .nav-menu a {
    width: 100%;
    color: var(--white);
    background: transparent;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .nav-menu a:hover,
  .nav-menu a.active { background: rgba(201,168,76,0.2); color: #fff; }

  .nav-menu a.btn-primary {
    margin-top: 6px;
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    text-align: center;
  }

  .nav-menu a::after { display: none; }

  .header-cta { display: none !important; }
  body.nav-open { overflow: hidden; }

  .section, .section-sm, .section-lg { padding: 60px 0; }
  .stats-bar { padding: 28px 0; }
}

@media (max-width: 576px) {
  .header-inner { padding: 12px 10px; }
  .logo-img { max-height: 38px; }
  .btn { padding: 10px 14px; font-size: 0.9rem; }
  .section { padding: 50px 0; }
  .slide-content { padding-top: 90px; }
  .hero-slider { min-height: 420px; }
  .mobile-toggle span { width: 20px; height: 2px; }
}

/* === Blog Preview === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.08); }

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-cat {
  background: rgba(26,58,143,0.1);
  color: var(--royal-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--navy);
  transition: var(--transition);
}

.blog-card:hover .blog-card-body h3 { color: var(--royal-blue); }

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.blog-read-more:hover { color: var(--gold); gap: 10px; }

/* === CTA Section === */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(26,58,143,0.75) 100%);
}

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

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Footer === */
.footer {
  background: var(--navy);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

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

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  width: 100%;
  height: 100%;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

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

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

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

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

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

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

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-tooltip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

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

/* === Scroll To Top === */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }

.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* === Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}

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

/* === Page Hero (inner pages) === */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--royal-blue) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }

.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

/* === Contact Form === */
.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,58,143,0.08);
}

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

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--border-radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.contact-info-items { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item .text h5 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-item .text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

/* Map */
.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Gallery Full Page === */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.gallery-full-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-full-item:hover img { transform: scale(1.08); }

.gallery-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-full-item:hover .gallery-full-overlay { opacity: 1; }

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.gallery-full-item:hover .gallery-zoom-icon { transform: scale(1); }

.gallery-full-overlay span { color: var(--white); font-weight: 600; }

/* === Lightbox === */
.lightbox-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active,
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content,
.lightbox-inner {
  max-width: 85vw;
  max-height: 85vh;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-content img,
.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.1rem;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--white); }

/* === Blog Full Page === */
.blog-full-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.blog-posts-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.blog-post-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-post-image {
  height: 180px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-post-card:hover .blog-post-image img { transform: scale(1.05); }

.blog-post-body {
  padding: 20px;
}
.blog-post-card h3 {
  font-size: 1.08rem;
  margin: 0 0 10px;
}
.blog-post-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 14px;
}

.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
  color: var(--navy);
}

.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.sidebar-post-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-post-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: var(--transition);
}

.sidebar-post-title:hover { color: var(--royal-blue); }

.sidebar-post-date { font-size: 0.75rem; color: var(--text-gray); }

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

.cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 8px;
  color: var(--dark-text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.cat-link:hover {
  background: var(--royal-blue);
  color: var(--white);
}

.cat-count {
  background: var(--white);
  color: var(--text-gray);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

/* === Services Detail Page === */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child { border-bottom: none; }

.service-detail:nth-child(even) .service-detail-content { order: -1; }

.service-detail-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-image:hover img { transform: scale(1.05); }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark-text);
}

.service-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(26,58,143,0.1);
  color: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Font Awesome Icons === */
/* Font Awesome fonts load properly with fallback emojis */
@font-face {
  font-family: 'Font Awesome 6 Free';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2'),
       url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Base Font Awesome styles */
.fa, [class^="fa-"], [class*=" fa-"] {
  --fa-display: inline-block;
  display: var(--fa-display) !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-style: normal !important;
  font-weight: inherit !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
}

.fas {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

.far {
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
}

i.fa, i[class^="fa-"], i[class*=" fa-"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-style: normal !important;
  line-height: 1 !important;
  font-size: inherit;
  min-width: 1em;
}

/* Show emoji fallback text inside i tags */
i.fas::before, i.fab::before, i.far::before {
  content: attr(data-icon);
}

/* Contact Info Icons */
.contact-info-item .icon-box i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

/* Social Icons */
.social-link i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

/* Slider Arrow Icons */
.slider-arrow i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

/* Footer Contact Icons */
.footer-contact-item .icon i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

/* Form Button Icons */
.btn i {
  margin-right: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

.btn-primary i, .btn-secondary i, .btn-navy i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

/* Lightbox and Modal Icons */
.lightbox-close i, .gallery-btn i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  font-family: Arial, sans-serif !important;
}

/* Page Hero Icons */
.page-hero h1, .page-hero p {
  display: block;
}

/* Contact Form Icons */
.contact-info-item .icon i,
.footer-contact-item .icon i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

/* === Gallery Grid === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.8), rgba(26,58,143,0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-info p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.category-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-actions {
  display: flex;
  gap: 8px;
}

.gallery-btn {
  min-width: 100px;
  height: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-btn span.material-icons-outlined {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

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

/* === Lightbox Modal === */
.lightbox-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  text-align: center;
}

.lightbox-modal.active,
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-modal .lightbox-close {
  cursor: pointer;
  font-size: 2rem;
}

.lightbox-content,
.lightbox-inner {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  overflow: visible;
  position: relative;
  margin: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lightbox-content img,
.lightbox-inner img {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.section .lightbox-info,
.lightbox-info {
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
}

.lightbox-close:hover { background: var(--white); }

.lightbox-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 24px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.lightbox-info h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.lightbox-info p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* === Responsive === */
/* === Related Blog Cards === */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.related-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

/* === Legal Pages Styling === */
.legal-page {
  background: var(--off-white);
  padding: 60px 0;
}

.legal-page .container {
  max-width: 960px;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: var(--navy);
  font-weight: 700;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 14px;
}

.legal-page p,
.legal-page li {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page ul {
  margin: 16px 0 20px 20px;
}

.legal-page li {
  margin-bottom: 10px;
}

.legal-page a {
  color: var(--royal-blue);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--gold);
}

.legal-page .brochure-box {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  padding: 24px;
  margin-top: 26px;
  box-shadow: var(--shadow-sm);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.related-card-inner img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.related-card-inner div {
  padding: 18px;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-full-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-content { order: 0; }
  .blog-posts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-post-card { min-height: auto; margin-bottom: 0; }
  .blog-post-image { height: 220px; }
}

.blog-posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-post-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  margin-bottom: 0;
}

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

.related-card {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .logo-section { gap: 12px; }
  .company-tagline { font-size: 0.95rem; }
  .company-type { font-size: 0.65rem; }
  .nav-menu, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--navy);
    padding: 100px 24px 40px;
    z-index: 999;
    gap: 4px;
    align-items: flex-start;
  }
  .nav-menu.open a {
    font-size: 1.2rem;
    padding: 12px 16px;
    width: 100%;
  }
  .nav-menu.open .btn { display: inline-flex; margin-top: 20px; }
  .mobile-toggle { z-index: 1001; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { height: 250px; grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .why-items { grid-template-columns: 1fr; }
  .about-badge-float { left: 10px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .gallery-grid-masonry { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .slider-arrows { display: none; }
}

/* === REVIEWS STYLES === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-stars {
  font-size: 1.2rem;
  color: var(--gold);
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-title {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.reviews-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile Reviews */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 24px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .reviews-category {
    margin-bottom: 40px;
  }

  .category-title {
    font-size: 1.2rem;
  }
}

/* === Additional Device Responsive Enhancements === */

/* Maintain aspect ratio and responsiveness for all gallery items and media */
.gallery-item,
.gallery-item video,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#clients-carousel {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

#clients-carousel .carousel-item {
  min-width: 120px;
  flex: 0 0 auto;
  height: 90px;
  padding: 8px;
  transition: transform .3s ease;
}

#clients-carousel .carousel-item:hover {
  transform: translateY(-2px);
}

.carousel-item-small {
  min-width: 180px;
  height: auto;
}

.carousel-item-large {
  min-width: 100%;
  height: 360px;
}

@media (min-width: 1400px) {
  .carousel-item-large {
    height: 420px;
  }
}

/* Adjust logo, text, spacing for smaller screens */
.logo-img { max-height: 42px; }

@media (max-width: 1200px) {
  .container { padding: 0 16px; }
  .section { padding: 80px 0; }
  .section-subtitle { font-size: 0.98rem; margin-bottom: 40px; }
  .divider-gold { margin: 12px auto 20px; }
}

@media (max-width: 992px) {
  .carousel-item-small { min-width: 150px; height: 140px; }
  .carousel-item-large { min-width: 100%; height: 320px; }
  #clients-carousel .carousel-item { min-width: 130px; height: 80px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p { font-size: clamp(0.9rem, 3.5vw, 1.1rem); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid, .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .logo-img { max-height: 38px; }
  .section { padding: 60px 0; }
  .page-hero { padding: 60px 0; }
  .page-hero h1 { font-size: clamp(1.4rem, 8vw, 1.8rem); }
  .page-hero p { font-size: clamp(0.85rem, 4vw, 1rem); }
  .clients-carousel .carousel-item, #clients-carousel .carousel-item { min-width: 110px; height: 72px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-grid, .why-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .section-badge, .section-title, .section-subtitle { text-align: center; }
  .section-badge { font-size: 0.65rem; padding: 5px 14px; }
  .section-title { font-size: 1.4rem; margin-bottom: 12px; }
  .section-subtitle { font-size: 0.92rem; margin-bottom: 20px; }
  .btn { padding: 10px 16px; font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 576px) {
  .logo-img { max-height: 34px; }
  .mobile-toggle { display: flex; }
  .nav-menu { display: none; }
  .page-hero h1 { font-size: clamp(1.2rem, 8.5vw, 1.6rem); }
  .page-hero p { font-size: 0.85rem; }
  .gallery-item { aspect-ratio: 4 / 3; min-height: 170px; }
  .review-card { padding: 18px; }
  .reviews-grid { gap: 16px; }
  .btn { padding: 9px 14px; font-size: 0.85rem; }
  .section { padding: 50px 0; }
  .stats-bar { padding: 20px 0; }
  .gallery-actions { flex-wrap: wrap; gap: 6px; }
  .gallery-btn { min-width: 90px; padding: 6px 10px; font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .logo-img { max-height: 30px; }
  .section-badge { font-size: 0.58rem; padding: 4px 12px; }
  .section-title { font-size: 1.2rem; }
  .section-subtitle { font-size: 0.85rem; }
  .carousel-item-small { min-width: 114px; height: 110px; }
  #clients-carousel .carousel-item { min-width: 100px; height: 65px; }
  .gallery-grid { gap: 12px; }
  .blog-post-card, .related-card { min-height: auto; }
  .page-hero { padding: 40px 10px; }
  .container { padding: 0 10px; }
}
