/* ============================================
   IMAJI ADVERTISING - Premium Website Styles
   Brand Colors: Blue Gradient, Orange, Green
   ============================================ */

/* --- CSS Variables --- */
:root {
  --blue-dark: #0d1b4a;
  --blue-mid: #1b3a8c;
  --blue-light: #3b6ed5;
  --blue-grad-start: #0d1b4a;
  --blue-grad-end: #1b5faa;
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --green: #28a745;
  --green-dark: #1e7e34;
  --dark: #0a0e27;
  --dark-2: #111640;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 12px 60px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility Classes --- */
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.bg-dark { background: var(--dark); }
.bg-blue { background: linear-gradient(135deg, var(--blue-grad-start), var(--blue-grad-end)); }
.bg-gray { background: var(--gray-100); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue-mid); }

.section-header {
  margin-bottom: 50px;
}

.section-header .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.bg-dark .section-header h2,
.bg-blue .section-header h2 { color: var(--white); }

.bg-dark .section-header .subtitle { color: var(--orange); }
.bg-blue .section-header .subtitle { color: var(--orange-light); }
.bg-gray .section-header .subtitle { color: var(--orange); }

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-top: 12px;
}

.bg-dark .section-header p { color: var(--gray-400); }
.bg-blue .section-header p { color: rgba(255,255,255,0.8); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255,107,0,0.5);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.12);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .navbar-logo {
  height: 64px;
  width: auto;
  display: block;
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.navbar-brand .logo-text span {
  color: var(--orange);
}

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

.navbar-menu a {
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--blue-mid);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* --- Language Switcher --- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  padding: 3px 6px;
  user-select: none;
}

.lang-switch .lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  line-height: 1.2;
}

.lang-switch .lang-btn:hover {
  color: var(--blue-mid);
}

.lang-switch .lang-btn.is-active,
.lang-switch .lang-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.lang-switch .lang-divider {
  color: var(--gray-400);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0 1px;
}

/* Mobile Language Switcher in Drawer - Hidden on Desktop */
.lang-switch-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .navbar-menu .lang-switch-mobile {
    display: inline-flex !important;
    margin-top: 18px;
    margin-bottom: 12px;
  }
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 39, 0.6);
  z-index: 1;
}

.hero > .container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 60px;
  padding-right: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat h3 span {
  color: var(--orange);
}

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

.hero-slider-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.1rem;
}

.hero-slider-nav button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots span.active {
  background: var(--orange);
  width: 36px;
  border-radius: 6px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image .experience-badge h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.about-image .experience-badge p {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 10px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

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

.about-feature .check {
  width: 24px;
  height: 24px;
  background: rgba(40, 167, 69, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
}

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

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

.service-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(27, 58, 140, 0.08), rgba(59, 110, 213, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
  overflow: hidden;
}

.service-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card .icon.icon-img {
  width: calc(100% + 56px);
  height: 190px;
  margin: -36px -28px 20px;
  background: none;
  border-radius: 0;
}

.service-card:hover .icon {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  transform: scale(1.05);
}

.service-card:hover .icon.icon-img {
  background: none;
  transform: none;
}

.service-card:hover .icon svg {
  stroke: var(--white);
}

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

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-mid);
  transition: var(--transition);
}

.service-card .learn-more:hover {
  color: var(--orange);
  gap: 10px;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-marquee {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.clients-track .client-logo {
  height: 50px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: var(--transition);
}

.clients-track .client-logo:hover {
  opacity: 0.8;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-grad-start), var(--blue-grad-end), var(--dark));
}

.cta-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card .author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card .author-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

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

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-card .blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.blog-card .blog-date {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.blog-card .blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.blog-card .blog-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-text span {
  color: var(--orange);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

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

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.85rem;
}

.footer-contact-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

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

.footer-bottom a {
  color: var(--orange);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  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: wa-pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

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

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background-image: linear-gradient(100deg, rgba(10,14,39,0.72) 0%, rgba(13,27,74,0.62) 45%, rgba(27,58,140,0.42) 100%), url('../images/page-header.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.page-header .container {
  width: 100%;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.1), transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb a:hover {
  color: var(--orange);
}

.page-header .breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

/* ============================================
   ABOUT PAGE EXTRAS
   ============================================ */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-md);
}

.mission-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(27,58,140,0.1), rgba(59,110,213,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 10px 24px;
  border: 1px solid var(--gray-300);
  background: transparent;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 16px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,39,0.85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

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

.gallery-overlay h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.gallery-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(27, 58, 140, 0.1);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-card .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   PAGINATION (blog)
   ============================================ */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.pagination .page-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.pagination .page-link.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,107,0,0.35);
}

.pagination .page-link.disabled,
.pagination .page-link.disabled:hover {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pagination .page-link.ellipsis,
.pagination .page-link.ellipsis:hover {
  background: transparent;
  border: none;
  color: var(--gray-500);
  cursor: default;
  pointer-events: none;
  user-select: none;
  transform: none;
  box-shadow: none;
}

.blog-empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-top: 30px;
  border: 2px dashed var(--gray-300);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.2);
  }

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

  .navbar-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    width: 100%;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
  }

  .navbar-menu a:hover,
  .navbar-menu a.active {
    color: var(--blue-mid);
  }

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

  .navbar-cta { display: none; }

  .navbar-toggle { display: flex; }

  .navbar-brand .navbar-logo { height: 48px; }
  .footer-brand .footer-logo { height: 44px; }

  .hero-content h1 { font-size: 2.2rem; }
  .hero > .container { padding-left: 24px; padding-right: 24px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 1.6rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-mission { grid-template-columns: 1fr; }

  .cta-section .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content p { margin: 0 auto; }

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

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 6px; }
  .gallery-filters button { padding: 8px 16px; font-size: 0.8rem; }
}

/* ============================================
   PREMIUM POLISH
   ============================================ */
::selection {
  background: var(--orange);
  color: var(--white);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-mid), var(--blue-light));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gray {
  background: radial-gradient(1100px 520px at 100% 0%, rgba(27, 58, 140, 0.045), transparent 60%), var(--gray-100);
}

/* --- Buttons: shine sweep --- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 1;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255,107,0,0.55);
}

/* --- Navbar: subtle gradient underline --- */
.navbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,58,140,0.18), transparent);
}

/* --- Section header: subtitle pill + pulse dot --- */
.section-header .subtitle {
  position: relative;
  padding: 7px 18px 7px 16px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-xl);
  letter-spacing: 2px;
}
.section-header .subtitle::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  vertical-align: 1px;
  box-shadow: 0 0 0 0 rgba(255,107,0,0.4);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
  70% { box-shadow: 0 0 0 9px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}

/* --- Hero premium --- */
.hero-overlay {
  background: linear-gradient(100deg, rgba(10,14,39,0.92) 0%, rgba(13,27,74,0.78) 35%, rgba(13,27,74,0.38) 68%, rgba(10,14,39,0.45) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at left center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at left center, black 30%, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.hero-orb.orb-1 {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -90px;
  background: radial-gradient(circle, rgba(255,107,0,0.45), rgba(255,107,0,0) 65%);
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb.orb-2 {
  width: 430px;
  height: 430px;
  bottom: -160px;
  right: 30%;
  background: radial-gradient(circle, rgba(59,110,213,0.45), rgba(59,110,213,0) 65%);
  animation: orb-float 11s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 22px) scale(1.08); }
}
.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(40,167,69,0.5);
  animation: pulse-dot-green 2s infinite;
}
@keyframes pulse-dot-green {
  0% { box-shadow: 0 0 0 0 rgba(40,167,69,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}
.hero-content h1 { letter-spacing: -1px; }
.hero-content p { color: rgba(255,255,255,0.8); }

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: var(--transition);
}
.hero-scroll:hover { color: var(--white); }
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-mouse span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--orange);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* --- About premium --- */
.about-image {
  overflow: visible;
  z-index: 0;
}
.about-image::before,
.about-image::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: var(--radius-lg);
}
.about-image::before {
  top: -20px;
  left: -20px;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  opacity: 0.12;
}
.about-image::after {
  bottom: -20px;
  right: -20px;
  width: 45%;
  height: 45%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  opacity: 0.14;
}
.experience-badge {
  border-radius: var(--radius-lg);
}
.about-float-chip {
  position: absolute;
  top: 28px;
  left: -26px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: chip-float 4s ease-in-out infinite;
}
.about-float-chip .chip-count {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue-mid);
}
.about-float-chip .chip-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Service cards premium --- */
.service-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  box-shadow: 0 2px 14px rgba(13,27,74,0.04);
}
.service-card::before {
  background: linear-gradient(135deg, var(--orange), var(--orange-light), var(--blue-mid));
  height: 4px;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(27,58,140,0.5), rgba(255,107,0,0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px -12px rgba(13,27,74,0.22);
  border-color: rgba(27,58,140,0.22);
}
.service-card:hover::after { opacity: 1; }
.service-card .icon.icon-img { height: 200px; }
.services-grid .service-card:first-child .icon.icon-img img {
  object-fit: cover;
  object-position: 50% 0%;
}
.service-card h3 { font-size: 1.2rem; }
.service-card .learn-more {
  background: rgba(27,58,140,0.06);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
}
.service-card .learn-more:hover {
  background: var(--orange);
  color: var(--white);
}

/* --- Testimonials premium --- */
.testimonial-card {
  position: relative;
  border-radius: var(--radius-lg);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--blue-light));
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27,58,140,0.2);
}

/* --- Blog cards premium --- */
.blog-card { border-radius: var(--radius-lg); }
.blog-card .blog-tag {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 4px 14px rgba(255,107,0,0.35);
}

/* --- CTA premium --- */
.cta-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -170px;
  right: -90px;
  background: radial-gradient(circle, rgba(255,107,0,0.28), transparent 70%);
  pointer-events: none;
}

/* --- Page header (inner pages) premium --- */
.page-header .container { position: relative; z-index: 2; }
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}
.page-header h1 { letter-spacing: -1px; }
.page-header .breadcrumb {
  display: inline-flex;
  padding: 9px 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* --- Gallery premium --- */
.gallery-item {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 18px rgba(13,27,74,0.06);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall.wide { grid-row: span 2; grid-column: span 2; }
.gallery-item.pylon-view img {
  object-fit: cover;
  object-position: 50% 20%;
}
.gallery-item::after {
  content: '+';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; transform: scale(1) rotate(0deg); }

/* --- Info & contact cards premium --- */
.info-card { border-radius: var(--radius-lg); }
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Footer premium --- */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--blue-light), var(--blue-mid));
}

/* --- Staggered reveal --- */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.08s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.16s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.24s; }
.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

@media (max-width: 768px) {
  .hero-orb.orb-1 { width: 300px; height: 300px; }
  .hero-orb.orb-2 { width: 260px; height: 260px; }
  .service-card .icon.icon-img { height: 180px; }
  .about-float-chip { left: 12px; top: 12px; }
}

/* ============================================
   CARD: TEBAL BORDER + SHADOW TEBAL + HOVER
   ============================================ */
.service-card,
.testimonial-card,
.blog-card,
.mission-card,
.info-card,
.contact-form {
  border: 2px solid var(--gray-200);
  box-shadow: 0 6px 22px rgba(13, 27, 74, 0.07), 0 2px 6px rgba(13, 27, 74, 0.05);
}

.service-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.mission-card:hover,
.info-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue-mid);
  box-shadow:
    0 30px 60px -12px rgba(13, 27, 74, 0.3),
    0 12px 30px rgba(13, 27, 74, 0.16),
    0 4px 12px rgba(27, 58, 140, 0.1);
}

.service-card:hover::after {
  opacity: 0;
}

/* Shadow lebih dramatis lagi untuk service card (card utama) */
.service-card {
  box-shadow:
    0 8px 28px rgba(13, 27, 74, 0.1),
    0 4px 12px rgba(13, 27, 74, 0.06);
}
.service-card:hover {
  border-color: var(--blue-light);
  box-shadow:
    0 36px 70px -14px rgba(13, 27, 74, 0.38),
    0 16px 36px rgba(13, 27, 74, 0.18),
    0 6px 16px rgba(27, 58, 140, 0.12);
}

.gallery-item {
  border: 2px solid var(--gray-200);
}

/* --- Gallery mosaic responsive --- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ===== Dropdown Layanan (navbar) ===== */
.navbar-item.has-dropdown { position: relative; }
.navbar-item.has-dropdown .dd-toggle {
  display: inline-flex; align-items: center; gap: 6px;
}
.navbar-item.has-dropdown .caret {
  transition: transform .25s ease;
}
.navbar-item.has-dropdown:hover .caret,
.navbar-item.has-dropdown:focus-within .caret {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease; z-index: 1400;
}
.navbar-item.has-dropdown:hover .dropdown-menu,
.navbar-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 9px 18px; font-size: .9rem;
  color: var(--gray-800); white-space: nowrap;
}
.dropdown-menu a:hover {
  color: var(--orange); background: rgba(255,107,0,.06);
}
@media (max-width: 991px) {
  .navbar-item.has-dropdown { width: 100%; }
  .dropdown-menu {
    position: static; top: auto; left: auto; min-width: 0;
    box-shadow: none; opacity: 1; visibility: visible; transform: none;
    padding: 0 0 0 16px;
  }
}
