@charset "UTF-8";

/* ==========================================================================
   Jzarr Filers - UAE Corporate & Tax Compliance Landing Page
   Exact Brand Palette & Styling from Main Site (index.css & uae-services.css)
   ========================================================================== */

:root {
  /* Exact Main Site Brand Colors (index.css) */
  --ink: #16284f;
  --navy: #253e82;
  --navy-dark: #0f1d3a;
  --blue: #107cbf;
  --blue-bright: #5cb0e2;
  --blue-soft: rgba(16, 124, 191, 0.14);
  --gold: #107cbf;
  --gold-bright: #5cb0e2;
  --gold-soft: rgba(16, 124, 191, 0.14);
  --emerald: #0e8b5d;
  --emerald-bright: #20c997;
  
  /* Backgrounds & Text */
  --paper: #EEF3FA;
  --paper-2: #F6F9FD;
  --white: #ffffff;
  --slate: #1d2b44;
  --muted: #5b6b86;
  
  /* Borders & Shadows */
  --line: rgba(37, 62, 130, 0.15);
  --line-gold: rgba(16, 124, 191, 0.25);
  --shadow-sm: 0 12px 30px -18px rgba(22, 40, 79, 0.4);
  --shadow-md: 0 18px 45px -12px rgba(22, 40, 79, 0.42);
  --shadow-lg: 0 26px 60px -28px rgba(22, 40, 79, 0.45);

  /* Typography */
  --font-main: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', 'Poppins', sans-serif;
  
  /* Layout & Transitions */
  --header-height: 92px;
  --container-width: 1200px;
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--paper);
  color: var(--slate);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font: inherit;
}

/* Container and Wrap */
.container,
.wrap {
  width: min(var(--container-width), calc(100% - 48px));
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ==========================================================================
   Exact Main Site Header / Sticky Navigation Bar (#hdr from index.css)
   ========================================================================== */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .35s, box-shadow .35s, padding .35s;
}

#hdr .bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 0;
  transition: padding .35s;
  width: min(1440px, calc(100% - 64px)) !important;
  max-width: 1440px !important;
}

#hdr.scrolled {
  background: rgba(10, 26, 48, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 20px 40px rgba(0, 0, 0, 0.4);
}

#hdr.scrolled .bar {
  padding: 12px 0;
}

.brand {
  display: flex;
  position: relative;
  z-index: 65;
  align-items: center;
  gap: 0;
  color: #fff;
}

.brand .seal {
  height: 60px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.5) contrast(1.1) saturate(1.2);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand:hover .seal {
  transform: scale(1.04);
}

nav.main {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  min-width: 0;
}

nav.main a.link {
  color: rgba(255, 255, 255, .84);
  font-size: .93rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

nav.main a.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  transition: width .28s;
}

nav.main a.link:hover,
nav.main a.link.active {
  color: #fff;
}

nav.main a.link:hover::after,
nav.main a.link.active::after {
  width: 100%;
}

/* Official Main Site Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.btn-gold {
  background: linear-gradient(135deg, #1f93d4, #253e82);
  color: #fff !important;
  box-shadow: 0 12px 26px -12px rgba(16, 124, 191, .75);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #2aa3e2, #2c4a99);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(16, 124, 191, .95);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff !important;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .3s;
}

/* Mobile Drawer */
.mobile-menu-drawer {
  display: none;
}

@media (max-width: 1000px) {
  #hdr .bar { padding: 14px 0; }
  #hdr.scrolled .bar { padding: 10px 0; }
  .brand .seal { height: 46px; width: auto; }
  .hamburger { display: flex; }
  nav.main {
    display: none !important;
  }
}

/* ==========================================================================
   Hero Section Modeled Exactly After uk-usa-services.html (.global-hero)
   ========================================================================== */
.hero-section.global-hero {
  min-height: auto;
  padding: 126px 0 56px;
  display: flex;
  align-items: center;
  background: #0a1a30 url("../uae-hero.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section.global-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10, 26, 48, 0.88) 0%, rgba(22, 40, 79, 0.82) 50%, rgba(10, 26, 48, 0.92) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 420px;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: globalFloat 6s ease-in-out infinite;
  will-change: transform;
}

.animate-float:hover,
.animate-float:focus-within,
.hero-form-card:hover,
.hero-form-card:focus-within {
  animation-play-state: paused !important;
}

/* Left Copy (uk-usa-services.html style) */
.hero-copy {
  min-width: 0;
}

.hero-kicker {
  color: var(--blue-bright);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue-bright);
  display: inline-block;
}

.hero-headline {
  max-width: 680px;
  margin: 10px 0 20px;
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 4.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-headline .text-gold {
  background: linear-gradient(135deg, var(--blue-bright), #253e82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-headline .text-blue {
  color: var(--blue-bright);
}

.hero-headline .text-white {
  color: var(--white);
}

.hero-subheadline {
  max-width: 580px;
  color: rgba(235, 240, 247, 0.88);
  font-size: 1.06rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.hero-actions .btn {
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-trust span {
  padding: 7px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.25s ease;
}

.hero-trust span:hover {
  background: rgba(16, 124, 191, 0.2);
  border-color: var(--blue-bright);
}

/* Right Content: Contact Form (.hero-form from uk-usa-services.html) */
.hero-form-card.global-form.hero-form {
  background: rgba(10, 26, 48, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  color: var(--white);
  transform: translateZ(0);
  will-change: transform, backdrop-filter;
}

.hero-form-card.global-form.hero-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  border-radius: 3px;
}

.hero-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-form-subtitle {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

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

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

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 9px 12px;
  background: rgba(7, 18, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.86rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  transform: translateZ(0);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(16, 124, 191, 0.22);
  background: rgba(7, 18, 34, 0.98);
  transform: translateZ(0);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cb0e2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 34px;
}

.form-select option {
  background-color: var(--ink);
  color: var(--white);
}

.form-textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 14.5px;
  font-weight: 800;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px -6px rgba(16, 124, 191, 0.7);
  margin-top: 14px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(16, 124, 191, 0.95);
  filter: brightness(1.06);
}

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

#formResponse {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

#formResponse.success {
  display: block;
  background: rgba(32, 201, 151, 0.15);
  border: 1px solid var(--emerald-bright);
  color: #34d399;
}

#formResponse.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* ==========================================================================
   Section 1.5: Dubai Based Tax Consultants (#about-emirates - Compact)
   ========================================================================== */
.about-emirates-section {
  background-color: var(--white);
  padding: 58px 0 52px 0;
  position: relative;
  border-bottom: 1px solid #edf4fa;
}

.about-emirates-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.about-emirates-visual {
  position: relative;
  padding-bottom: 26px;
  padding-left: 26px;
}

.about-main-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(10, 26, 48, 0.14);
  border: 1px solid rgba(16, 124, 191, 0.12);
  max-height: 380px;
}

.about-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-inset-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  border-radius: 16px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 16px 36px -8px rgba(10, 26, 48, 0.22);
  border: 1.5px solid rgba(16, 124, 191, 0.18);
  z-index: 2;
  transition: transform var(--transition-fast);
}

.about-inset-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.about-inset-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.about-emirates-content {
  display: flex;
  flex-direction: column;
}

.about-quick-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
}

.about-quick-badge span {
  background: rgba(16, 124, 191, 0.1);
  color: var(--blue);
  border: 1px solid rgba(16, 124, 191, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.81rem;
  letter-spacing: 0.2px;
}

.about-emirates-title {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-lead-text {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.62;
  margin-bottom: 14px;
}

.about-sub-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 24px;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0e8b5d;
  background: rgba(14, 139, 93, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ==========================================================================
   Section Headers & Light Theme Sections (Matching Main Site Paper Palette)
   ========================================================================== */
.section-padding {
  padding: 66px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ==========================================================================
   Services Section Grid (Textured Paper Card Aesthetic)
   ========================================================================== */
.services-section {
  background-color: var(--paper-2);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Header & Controls Row */
.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.section-header.left-align {
  text-align: left;
  margin: 0;
  max-width: 700px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(16, 124, 191, 0.65);
}

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

/* Slider Track Viewport */
.slider-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 4px 28px 4px;
  cursor: grab;
}

.slider-viewport:active {
  cursor: grabbing;
}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

/* Service Card / Slide Item */
.service-card.slide-item {
  width: calc((100% - 60px) / 3);
  flex-shrink: 0;
  scroll-snap-align: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 30px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-card.slide-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Flagship 13th Service Slide */
.service-card.slide-item.service-card-featured {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--ink) 60%, var(--navy) 100%);
  border: 1px solid var(--line-gold);
  color: var(--white);
}

.service-card.slide-item.service-card-featured .service-title {
  color: var(--gold-bright);
}

.service-card.slide-item.service-card-featured .service-desc {
  color: rgba(255, 255, 255, 0.86);
}

.service-card.slide-item.service-card-featured .service-icon {
  background: rgba(16, 124, 191, 0.16);
  border-color: rgba(16, 124, 191, 0.4);
  color: var(--gold-bright);
}

.service-card.slide-item.service-card-featured .service-link {
  color: var(--gold-bright);
}

.service-card.slide-item:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.service-card.slide-item.service-card-featured:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 20px 48px -12px rgba(16, 124, 191, 0.35);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-soft);
  border: 1px solid rgba(16, 124, 191, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 26px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
}

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

/* Pagination Dots */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(29, 43, 68, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.slider-dot.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 4px 12px rgba(16, 124, 191, 0.6);
}

/* ==========================================================================
   Section 1: How We Deliver Accounting and Tax Services in Dubai (Process)
   ========================================================================== */
.process-section {
  background-color: var(--white);
  position: relative;
  border-bottom: 1px solid var(--line);
}

.process-layout-compact {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  align-items: stretch;
}

.process-left-col,
.process-right-col {
  display: flex;
  flex-direction: column;
}

.process-pic-wrapper {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(16, 124, 191, 0.28);
  border: 1px solid rgba(16, 124, 191, 0.2);
  flex-grow: 1;
  display: flex;
}

.process-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-grow: 1;
}

.process-pic-wrapper:hover .process-pic {
  transform: scale(1.03);
}

.process-pic-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 26, 48, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.process-pic-badge .badge-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  flex-shrink: 0;
}

.process-pic-badge .badge-text {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.process-steps-compact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex-grow: 1;
}

.step-card-compact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: all var(--transition-fast);
  flex: 1;
}

.step-card-compact:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #0d669e);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(16, 124, 191, 0.35);
}

.step-card-compact:nth-child(2) .step-circle {
  background: linear-gradient(135deg, var(--navy), #102640);
  box-shadow: 0 6px 16px -4px rgba(16, 38, 64, 0.35);
}

.step-card-compact:nth-child(3) .step-circle {
  background: linear-gradient(135deg, #1f93d4, #125e8c);
  box-shadow: 0 6px 16px -4px rgba(31, 147, 212, 0.35);
}

.step-card-compact:nth-child(4) .step-circle {
  background: linear-gradient(135deg, #0f4c81, var(--navy));
  box-shadow: 0 6px 16px -4px rgba(15, 76, 129, 0.35);
}

.step-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Section 2: Why Choose Us (Inspired by TaxoGraph, Upgraded with Corporate Blue UI)
   ========================================================================== */
.why-section {
  background-color: #f6fafe;
  position: relative;
}

.why-taxograph-card {
  background: var(--white);
  border: 1px solid rgba(16, 124, 191, 0.16);
  border-radius: 32px;
  padding: 48px 44px;
  box-shadow: 0 24px 60px -12px rgba(10, 26, 48, 0.08);
  position: relative;
}

.why-taxograph-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.why-left-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-img-wrapper {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(16, 124, 191, 0.22);
  border: 1px solid rgba(16, 124, 191, 0.15);
  max-height: 380px;
}

.why-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-img-wrapper:hover .why-team-img {
  transform: scale(1.04);
}

.why-badges-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-badge-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0f7fc;
  border: 1.5px solid rgba(16, 124, 191, 0.22);
  border-radius: 16px;
  padding: 14px 18px;
  transition: all var(--transition-fast);
}

.why-badge-pill:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 8px 20px -4px rgba(16, 124, 191, 0.18);
  transform: translateY(-2px);
}

.badge-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #0d669e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(16, 124, 191, 0.4);
}

.why-badge-pill:nth-child(2) .badge-icon-circle {
  background: linear-gradient(135deg, var(--navy), #102640);
  box-shadow: 0 6px 14px -4px rgba(16, 38, 64, 0.4);
}

.badge-pill-text {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.why-right-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

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

.why-stat-box {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1.5px solid #107cbf;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 12px 28px -8px rgba(16, 124, 191, 0.15);
  transition: all var(--transition-fast);
}

.why-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(16, 124, 191, 0.25);
}

.stat-icon-top {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(16, 124, 191, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

.why-stat-box:nth-child(2) {
  border-color: #0d669e;
}

.why-stat-box:nth-child(2) .stat-icon-top {
  background: rgba(13, 102, 158, 0.12);
  color: #0d669e;
}

.why-stat-box h4 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.2;
}

.why-stat-box p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

/* Animated Progress Bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress-item {
  width: 100%;
}

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

.progress-label {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}

.progress-percent {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--blue);
}

.progress-track {
  width: 100%;
  height: 12px;
  background: #eef4fa;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #d8e6f3;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, #00b4d8 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 124, 191, 0.35);
  transition: width 1.8s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.progress-item:nth-child(2) .progress-fill {
  background: linear-gradient(90deg, #0d669e 0%, #38a3a5 100%);
}

.progress-item:nth-child(3) .progress-fill {
  background: linear-gradient(90deg, #102640 0%, var(--blue) 100%);
}

.progress-item:nth-child(4) .progress-fill {
  background: linear-gradient(90deg, #1f93d4 0%, #5cb0e2 100%);
}

/* ==========================================================================
   Section 3: FTA Penalties UAE Businesses Face Without Proper Accounting
   ========================================================================== */
.penalties-section {
  background: url("../penalties-bg.png") center / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.penalties-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10, 26, 48, 0.90) 0%, rgba(16, 124, 191, 0.88) 100%);
  z-index: 1;
}

.penalties-section .container {
  position: relative;
  z-index: 2;
}

.penalties-header {
  max-width: 900px;
  margin-bottom: 48px;
}

.penalties-header .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.penalties-header .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.penalties-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.penalties-table-wrap {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 34px;
}

.penalties-table {
  width: 100%;
  border-collapse: collapse;
}

.penalties-table th {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.penalties-table th:last-child {
  width: 320px;
  border-right: none;
}

.penalties-table td {
  padding: 18px 24px;
  font-size: 15px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1.5;
}

.penalties-table td:last-child {
  border-right: none;
}

.penalties-table tr:last-child td {
  border-bottom: none;
}

.penalties-table tr:hover td {
  background: rgba(255, 255, 255, 0.06);
}

.penalty-amount,
.penalty-amount.gold {
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.penalties-footer-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 950px;
  background: transparent;
  border-left: none;
  padding: 10px 0;
}

/* ==========================================================================
   Footer Section (Matching Official Navy/Ink Dark Footer)
   ========================================================================== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 76px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
}

.footer-logo {
  width: 200px;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(1.5) contrast(1.1) saturate(1.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 330px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-bright);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ==========================================================================
   Section 4: Client Reviews & Testimonials (#reviews - Compact)
   ========================================================================== */
.reviews-section {
  background-color: var(--paper);
  padding: 52px 0;
  position: relative;
}

.compact-header {
  margin: 0 auto 34px auto !important;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(16, 124, 191, 0.16);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px -8px rgba(10, 26, 48, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px -10px rgba(16, 124, 191, 0.16);
}

.review-stars {
  color: #ffb703;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #edf4fa;
  padding-top: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0d669e);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(16, 124, 191, 0.25);
}

.author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 3px;
}

.verified-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0e8b5d;
  background: rgba(14, 139, 93, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

/* Compact Trust Ribbon */
.reviews-trust-bar {
  background: linear-gradient(135deg, var(--navy) 0%, #102640 100%);
  border-radius: 14px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(10, 26, 48, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-stat {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-stat strong {
  color: var(--gold-bright);
  font-weight: 800;
  margin-right: 6px;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Section 5: Frequently Asked Questions (#faq - Compact)
   ========================================================================== */
.faq-section {
  background-color: var(--white);
  padding: 52px 0;
  position: relative;
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #f8fbff;
  border: 1.5px solid rgba(16, 124, 191, 0.16);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 20px -8px rgba(16, 124, 191, 0.15);
}

.faq-item.active {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 12px 28px -10px rgba(16, 124, 191, 0.18);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--transition-fast);
  gap: 16px;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(16, 124, 191, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.faq-toggle-icon::before {
  width: 12px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-toggle-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer-inner {
  padding: 0 22px 18px 22px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  border-top: 1px solid #edf4fa;
  margin-top: -2px;
  padding-top: 14px;
}

/* ==========================================================================
   Section 6: Legal Disclaimer Brief (#disclaimer)
   ========================================================================== */
.disclaimer-brief-section {
  background-color: var(--navy);
  padding: 34px 0 42px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-brief-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--gold-bright);
  border-radius: 16px;
  padding: 30px 36px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4);
}

.disclaimer-brief-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.disclaimer-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(16, 124, 191, 0.2);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.disclaimer-brief-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.disclaimer-brief-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer-see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 124, 191, 0.18);
  color: var(--white);
  border: 1.5px solid var(--blue);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.disclaimer-see-more-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(16, 124, 191, 0.5);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .service-card.slide-item {
    width: calc((100% - 30px) / 2);
  }
  
  .process-layout-compact {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-pic {
    max-height: 420px;
  }

  .why-taxograph-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-emirates-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-emirates-visual {
    max-width: 580px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #hdr {
    top: 0;
    width: 100%;
  }
  
  .brand .seal {
    width: 160px;
    height: 44px;
  }

  .hero-section.global-hero {
    padding: 96px 0 36px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 6.5vw, 2.3rem);
    line-height: 1.25;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero-subheadline {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-trust {
    display: none !important;
  }

  .hero-consult-card {
    padding: 24px 18px;
    border-radius: 20px;
    margin-top: 16px;
  }

  /* Prevent iOS Safari input zoom by enforcing 16px on mobile */
  .hero-consult-card .form-input,
  .hero-consult-card .form-select,
  .hero-consult-card .form-textarea {
    font-size: 16px !important;
    min-height: 48px;
  }

  .btn-submit {
    min-height: 52px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .about-emirates-section {
    padding: 40px 0 34px 0;
  }

  .about-emirates-visual {
    padding-bottom: 24px;
    padding-left: 0;
  }

  .about-inset-card {
    width: 158px;
    padding: 10px;
    bottom: -6px;
    left: 4px;
    border-radius: 12px;
  }

  .about-quick-badge span {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  .about-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .about-cta-row .btn-blue-outline {
    width: 100%;
    justify-content: center;
  }

  .why-taxograph-card {
    padding: 26px 18px;
    border-radius: 16px;
  }

  .why-badges-row, .why-top-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-badge-pill {
    padding: 12px 14px;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .service-card.slide-item {
    width: 100%;
    padding: 24px 18px;
  }

  #servPrevBtn, #servNextBtn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .process-pic {
    max-height: 250px;
    border-radius: 16px;
    object-fit: cover;
  }

  .step-card-compact {
    flex-direction: column;
    padding: 16px 18px;
    gap: 12px;
    border-radius: 14px;
  }

  .penalties-table th, .penalties-table td {
    padding: 12px 14px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .penalties-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 28px 18px;
    gap: 20px;
  }
  
  .stat-item::after {
    display: none;
  }
  
  .trust-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 16px;
    gap: 16px;
  }

  .trust-banner-card .btn {
    width: 100%;
    justify-content: center;
  }

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

  .review-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .reviews-trust-bar {
    flex-direction: column;
    gap: 20px;
    padding: 22px 16px;
    border-radius: 14px;
  }

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

  .faq-question {
    padding: 18px 16px;
    font-size: 0.96rem;
  }

  .faq-answer-inner {
    padding: 14px 16px 18px 16px;
  }

  .disclaimer-brief-card {
    padding: 22px 16px;
  }

  .disclaimer-brief-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .disclaimer-see-more-btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-minimal-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  /* Mobile Drawer Menu */
  .mobile-menu-drawer {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(10, 26, 48, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 24px 34px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    z-index: 999;
  }

  .mobile-menu-drawer.open {
    transform: translateY(0);
  }

  .mobile-menu-drawer a {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ==========================================================================
   Small Phone Breakpoint (max-width: 480px) - iPhone SE, Android Narrow Phones
   ========================================================================== */
@media (max-width: 480px) {
  .hero-section.global-hero {
    padding: 86px 0 30px;
  }

  .hero-headline {
    font-size: clamp(1.6rem, 7vw, 1.95rem);
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 0.88rem;
  }

  .hero-consult-card {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .hero-consult-card h3 {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem) !important;
  }

  .section-padding {
    padding: 44px 0;
  }

  .about-inset-card {
    width: 140px;
    padding: 8px;
    left: 0;
  }

  .why-stat-box h4 {
    font-size: 1.6rem;
  }

  .penalties-table th, .penalties-table td {
    padding: 10px 10px;
    font-size: 12.5px;
  }

  .process-pic {
    max-height: 210px;
  }

  .footer-minimal-row {
    font-size: 0.82rem;
    gap: 8px;
  }
}
