/* ============================================================
   AKS TAX CONSULTANCY — STYLE.CSS
   Theme: Navy Blue (#0a1628) + White (#ffffff) + Gold (#d4a017)
   ============================================================ */

/* ----- CSS VARIABLES ----- */
:root {
  --navy: #0a1628;
  --navy-mid: #1a3a5c;
  --navy-light: #2c6fad;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #b8860b;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #e8edf5;
  --mid-gray: #6c7a8d;
  --text-dark: #1a2436;
  --text-body: #3d4a5c;
  --shadow: rgba(10, 22, 40, 0.15);
  --shadow-gold: rgba(212, 160, 23, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input,
select,
textarea {
  font-family: var(--font);
}

/* ----- UTILITY ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold-text {
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4e);
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--shadow-gold);
}

.logo-icon span {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav Menu */
.nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-menu.open {
  max-height: 400px;
}

.nav-menu ul {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 1rem;
}

.nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link i {
  color: var(--gold);
  width: 18px;
}

.nav-link:hover {
  color: var(--gold);
  padding-left: 1rem;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&q=80') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.92) 0%,
      rgba(10, 22, 40, 0.78) 50%,
      rgba(26, 58, 92, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  animation: fadeInUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.45);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-pills {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.hero-pills span i {
  color: var(--gold);
  font-size: 0.75rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   COUNTERS SECTION
   ============================================================ */
.counters {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.counter-item {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.counter-item:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  transform: translateY(-6px);
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--navy);
}

.counter-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.counter-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.counter-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-top: 0.5rem;
  font-weight: 500;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--gold);
}

.service-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 22, 40, 0.35));
}

.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-body p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-read-more:hover {
  background: var(--gold);
  color: var(--navy);
}


/* ============================================================
   AD BANNER
   ============================================================ */
.ad-banner {
  background: linear-gradient(135deg, var(--navy), #1a2e50, var(--navy-mid));
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.ad-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(44, 111, 173, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.ad-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ad-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 280px;
}

.ad-text i {
  color: var(--gold);
  font-size: 2rem;
  flex-shrink: 0;
}

.ad-text span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.ad-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* ============================================================
   CLIENTS SLIDER
   ============================================================ */
.clients-section {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.clients-slider-wrap {
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

.clients-slider-wrap::before,
.clients-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.clients-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-slider {
  display: flex;
  gap: 1.5rem;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.clients-slider:hover {
  animation-play-state: paused;
}

.client-card {
  min-width: 200px;
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}

.client-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.client-logo {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 0.8rem;
}

.client-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d6b 100%);
  overflow: hidden;
}

.reviews-section .section-header h2 {
  color: var(--white);
}

.reviews-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.reviews-slider-wrap {
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.reviews-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.reviews-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #1e3d6b, transparent);
}

.reviews-slider {
  display: flex;
  gap: 1.5rem;
  animation: scrollLeft 35s linear infinite;
  width: max-content;
}

.reviews-slider:hover {
  animation-play-state: paused;
}

.review-card {
  min-width: 300px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-5px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.review-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
  flex-shrink: 0;
}

.review-author h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.review-author span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.mv-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: var(--transition);
}

.mv-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px var(--shadow);
}

.mv-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.mv-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.mv-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

.about-stats-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.3);
}

.about-feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-feat-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.about-feat-list li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Founder */
.founder-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 8px 30px var(--shadow);
  border: 1px solid var(--light-gray);
}

.founder-img-wrap {
  position: relative;
}

.founder-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(212, 160, 23, 0.5);
  border: 4px solid var(--gold);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 4px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(212, 160, 23, 0.12);
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--shadow-gold);
}

.founder-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.founder-text p {
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.founder-sign {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 700;
  padding-top: 1rem;
  border-top: 2px solid var(--light-gray);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item.lg {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.gallery-item.lg .gallery-img {
  height: 100%;
  min-height: 400px;
}

.gallery-img span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 1px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-real-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item.lg .gallery-real-img {
  height: 100%;
  min-height: 400px;
}

.gallery-item:hover .gallery-real-img {
  transform: scale(1.05);
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 1.8rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--gold);
  box-shadow: 0 5px 20px var(--shadow);
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid-gray);
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-info-item a:hover {
  color: var(--gold-dark);
}

.contact-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
}

.social-icon.fb {
  background: #1877f2;
}

.social-icon.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.wa {
  background: #25d366;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  box-shadow: 0 8px 30px var(--shadow);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group label i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1628' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-success {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #e8f8ef, #d4f1e3);
  border: 1.5px solid #4caf7d;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.form-success i {
  font-size: 2rem;
  color: #4caf7d;
  display: block;
  margin-bottom: 0.5rem;
}

.form-success strong {
  color: #1a5c35;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.3rem;
}

.form-success p {
  color: #2d7a4f;
  font-size: 0.88rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(212, 160, 23, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  padding: 0.1rem 0;
}

.footer-col ul li a i {
  color: var(--gold);
  font-size: 0.7rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold);
}


/* ============================================================
   MOBILE STICKY BUTTONS
   ============================================================ */
.mobile-sticky-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.call-btn {
  background: var(--navy-mid);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.call-btn:hover,
.call-btn:active {
  background: var(--navy-light);
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover,
.whatsapp-btn:active {
  background: #128c4e;
}

.mobile-btn i {
  font-size: 1.1rem;
}


/* ============================================================
   SERVICE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--navy);
  color: var(--white);
}

#modalContent .modal-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

#modalContent h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

#modalContent .modal-desc {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

#modalContent .modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

#modalContent .modal-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-body);
}

#modalContent .modal-list li i {
  color: var(--gold-dark);
  margin-top: 0.2rem;
  flex-shrink: 0;
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .founder-section {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.lg {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-btns {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .counters {
    padding: 3rem 0;
  }

  .services-section,
  .clients-section,
  .reviews-section,
  .about-section,
  .contact-section {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .founder-img-placeholder {
    max-width: 220px;
    margin: 0 auto 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.lg {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    padding: 3rem 0 2rem;
  }

  .ad-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .ad-text {
    justify-content: center;
  }

  .ad-btns {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.lg {
    grid-column: span 1;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }
}