:root {
  --navy-900: #232323;
  --navy-800: #232323;
  --navy-700: #232323;
  --navy-600: #232323;
  --navy-500: #eee310;
  --navy-400: #eee310;
  --navy-300: #ffffff;
  --navy-200: #eee310;
  --navy-100: #c5d9f5;
  --navy-50: #e8f0fb;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gold: #eee310;
  --gold-light: #fff533;
  --text-dark: #1a1a2e;
  --text-body: #838383;
  --text-light: #7a7a9a;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(11, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(11, 22, 40, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--navy-400);
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ═══ FIXED SIDEBAR ═══ */
.fixed-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
}

.sidebar-emergency {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius) 0 0 0;
  box-shadow: -4px 0 20px rgba(211, 47, 47, 0.3);
  position: relative;
  overflow: hidden;
}

.sidebar-emergency::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 3px;
  background: #ff6659;
  animation: emergencyPulse 2s infinite;
}

@keyframes emergencyPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.sidebar-emergency .badge-724 {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.sidebar-emergency .emergency-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  text-align: center;
  line-height: 1.3;
}

.sidebar-emergency svg {
  width: 22px;
  height: 22px;
}

.sidebar-phone {
  background: var(--navy-800);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}

.sidebar-phone:hover {
  background: var(--navy-700);
}

.sidebar-phone svg {
  width: 20px;
  height: 20px;
}

.sidebar-phone-number {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.sidebar-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-radius: 0 0 0 var(--radius);
  transition: background 0.3s;
}

.sidebar-whatsapp:hover {
  background: #1eb851;
}

.sidebar-whatsapp svg {
  width: 22px;
  height: 22px;
}

.sidebar-whatsapp span {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .fixed-sidebar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .fixed-sidebar>* {
    flex: 1 1 50%;
    border-radius: 0 !important;
    padding: 10px 8px;
    flex-direction: row;
    justify-content: center;
  }

  .sidebar-emergency {
    flex: 1 1 100% !important;
    animation: mobileEmergencyFlash 0.8s infinite alternate !important;
  }

  @keyframes mobileEmergencyFlash {
    0% { background: linear-gradient(135deg, #d32f2f, #b71c1c); }
    100% { background: linear-gradient(135deg, #ff2a2a, #d32f2f); }
  }

  .sidebar-phone-number {
    writing-mode: horizontal-tb;
    font-size: 0.7rem;
  }

  .sidebar-emergency .emergency-label {
    font-size: 0.65rem;
  }

  body {
    padding-bottom: 96px;
  }
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  padding: 0.7rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}

.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy-400);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--navy-800);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta-btn {
  padding: 0.6rem 1.6rem;
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta-btn:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(11, 22, 40, 0.2);
}

.whatsapp-nav-btn {
  background: #25d366 !important;
  color: #fff !important;
  animation: pulse-green 1.5s infinite;
}

.whatsapp-nav-btn:hover {
  background: #1da851 !important;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 7999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-800);
  font-weight: 600;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1920&q=80') center/cover no-repeat;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.96) 0%, rgba(35, 35, 35, 0.88) 50%, rgba(35, 35, 35, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 4% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(238, 227, 16, 0.15);
  border: 1px solid rgba(238, 227, 16, 0.3);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--navy-200);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--navy-100);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.btn-gold {
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 227, 16, 0.3);
}

.btn-white-outline {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1s 0.8s forwards;
}

.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-img-card:hover img {
  transform: scale(1.05);
}

.hero-img-card:nth-child(1) {
  height: 260px;
}

.hero-img-card:nth-child(2) {
  height: 260px;
  margin-top: 40px;
}

.hero-img-card:nth-child(3) {
  height: 220px;
  margin-top: -20px;
}

.hero-img-card:nth-child(4) {
  height: 220px;
  margin-top: 20px;
}

.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(11, 22, 40, 0.8));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--white);
  max-width: 1300px;
  margin: -3rem auto 0;
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-around;
  box-shadow: var(--shadow-lg);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  background: var(--navy-50);
}

/* ═══ COMMONS ═══ */
.section-padding {
  padding: 7rem 4%;
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.8;
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ SERVICES ═══ */
.services-bg {
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-100);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 1.8rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-400);
  transition: gap 0.3s, color 0.3s;
}

.service-card-link:hover {
  gap: 10px;
  color: var(--navy-600);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

/* ═══ ABOUT ═══ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img:first-child {
  height: 300px;
}

.about-img:nth-child(2) {
  height: 300px;
  margin-top: 40px;
}

.about-img:nth-child(3) {
  grid-column: span 2;
  height: 200px;
  margin-top: -10px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #2c2b21;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-500);
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
}

.about-feature-title {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1rem;
  margin-bottom: 2px;
}

.about-feature-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══ GALLERY ═══ */
.gallery-bg {
  background: var(--navy-900);
  color: var(--white);
}

.gallery-bg .section-label {
  color: var(--navy-200);
}

.gallery-bg .section-title {
  color: var(--white);
}

.gallery-bg .section-desc {
  color: var(--navy-200);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(11, 22, 40, 0.85));
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(238, 227, 16, 0.3);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonials-slider-container {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1rem 0 3rem 0;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTestimonials 55s linear infinite;
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card-slide {
  background: var(--white);
  border: 1px solid var(--navy-50);
  border-radius: var(--radius);
  padding: 2.2rem;
  width: 380px;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.testimonial-card-slide:hover {
  border-color: var(--navy-200);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ═══ CTA ═══ */
.cta-banner {
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85f82e?w=1920&q=80') center/cover no-repeat;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 18, 19, 0.93), rgba(19, 20, 20, 0.88));
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 6rem 4%;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.cta-title em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--navy-100);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══ CONTACT ═══ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(238, 227, 16, 0.1);
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-200);
  margin-bottom: 2px;
  font-weight: 500;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-200);
  transition: all 0.3s;
}

.contact-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--navy-50);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(30, 64, 128, 0.1);
}

.form-submit-btn {
  padding: 0.95rem 2.5rem;
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.form-submit-btn:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 22, 40, 0.2);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy-900);
  color: var(--navy-200);
  padding: 5rem 4% 2rem;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--navy-300);
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--navy-300);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1300px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--navy-400);
}

/* ═══ FAQ SSS ═══ */
.faq-bg {
  background: var(--navy-50);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 5, 20, 0.03);
  transition: all 0.3s ease;
}

.faq-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-header:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--navy-400);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item.active .faq-header {
  color: var(--gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content p {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text);
  line-height: 1.7;
}

.faq-content em {
  color: var(--navy-500);
  font-style: normal;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto;
  }

  

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 5%;
  }

  .nav-links,
  .nav-cta-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .section-padding {
    padding: 4.5rem 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    margin: -2rem 5% 0;
  }

  .hero-stat-divider {
    width: 100%;
    height: 1px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 220px !important;
  }

  

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 7rem 5% 4rem;
  }
}