/* ==========================================================================
   Travel One Air Services - Main Theme Stylesheet
   Data Extracted from Official Travel One Air Branding (LIC NO: PR-4684)
   ========================================================================== */

:root {
  /* Color Palette */
  --color-primary-dark: #0b192c;
  --color-primary-navy: #1e3e62;
  --color-accent-gold: #d4af37;
  --color-accent-gold-hover: #c59b27;
  --color-accent-emerald: #059669;
  --color-emerald-glow: rgba(5, 150, 105, 0.25);
  
  --color-bg-light: #f8fafc;
  --color-card-bg: #ffffff;
  --color-text-main: #0f172a;
  --color-text-body: #334155;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-urdu: 'Noto Sans Arabic', 'Amiri', 'Jameel Noori Nastaleeq', sans-serif;

  /* Elevate & Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 25, 44, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 16px 36px rgba(11, 25, 44, 0.14);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);
  --shadow-emerald: 0 8px 25px rgba(5, 150, 105, 0.3);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-urdu {
  font-family: var(--font-urdu);
  direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: var(--color-primary-navy);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-accent-gold) !important; }
.text-emerald { color: var(--color-accent-emerald) !important; }
.hide-mobile { display: inline-block; }

.section-title-wrapper {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
  color: #ffffff;
}

.btn-emerald {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: var(--shadow-emerald);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.45);
  color: #ffffff;
}

/* Top Bar */
.toa-topbar {
  background: var(--color-primary-dark);
  color: #94a3b8;
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.toa-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toa-topbar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.toa-topbar-info a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.toa-topbar-info a:hover { color: var(--color-accent-gold); }

.toa-licence-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-accent-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 700;
}

.toa-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.toa-urdu-slogan {
  color: var(--color-accent-gold);
  font-size: 0.95rem;
  font-weight: 700;
}

/* Top Bar Language Selector Dropdown (Sleek Glassmorphic Select & Collapsible Menu) */
.toa-lang-selector {
  position: relative;
  display: inline-block;
}

/* 1. Native Styled Select Box (Collapses 100% reliably in all browsers) */
.toa-lang-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffffff;
  padding: 0.3rem 1.8rem 0.3rem 0.65rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  background-size: 1.1rem;
  transition: var(--transition-fast);
  outline: none;
}
.toa-lang-select:hover, .toa-lang-select:focus {
  background-color: rgba(212, 175, 55, 0.2);
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.toa-lang-select option {
  background: #0b192c;
  color: #ffffff;
  padding: 0.6rem;
  font-size: 0.85rem;
}

/* SVG Flag Icons Styling for Windows/All Browsers */
.toa-lang-btn .fi,
.toa-lang-dropdown .fi {
  width: 1.3em !important;
  height: 0.95em !important;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: inline-block;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.toa-lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.toa-lang-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
}

.toa-lang-dropdown {
  display: none !important;
  position: absolute;
  top: 120%;
  right: 0;
  background: #0b192c;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0.5rem 0 !important;
  min-width: 190px;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: var(--transition-fast);
  z-index: 99999;
}

.toa-lang-dropdown::-webkit-scrollbar {
  width: 6px;
}
.toa-lang-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.toa-lang-dropdown::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0.4rem 0;
  list-style: none !important;
}

.toa-lang-selector.active .toa-lang-dropdown,
.toa-lang-dropdown.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.toa-lang-dropdown li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.toa-lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.toa-lang-dropdown li a:hover,
.toa-lang-dropdown li a.active {
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-accent-gold);
}
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
}
.toa-lang-dropdown li a:hover,
.toa-lang-dropdown li a.active {
  background: rgba(212, 175, 55, 0.18);
  color: var(--color-accent-gold);
}

/* Header Navbar */
.toa-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 25, 44, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}
.toa-header.scrolled {
  padding: 0.2rem 0;
  background: rgba(11, 25, 44, 0.98);
  box-shadow: var(--shadow-md);
}

.toa-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

/* Brand Logo */
.toa-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  color: #ffffff;
}
.toa-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #d4af37, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-gold);
}
.toa-brand-text {
  display: flex;
  flex-direction: column;
}
.toa-brand-text .brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}
.toa-brand-text .brand-title .accent { color: var(--color-accent-gold); }
.toa-brand-text .brand-sub {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: #cbd5e1;
  font-weight: 700;
}

/* Nav Menu */
.toa-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.toa-nav-menu a {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}
.toa-nav-menu a:hover,
.toa-nav-menu a.active {
  color: var(--color-accent-gold);
}

.toa-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.toa-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer */
.toa-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-primary-dark);
  z-index: 1005;
  padding: 2rem 1.5rem;
  transition: var(--transition-normal);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.toa-mobile-drawer.active { right: 0; }
.toa-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.toa-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.toa-mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.toa-mobile-menu a {
  color: #f1f5f9;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Hero Section */
.toa-hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.94) 0%, rgba(30, 62, 98, 0.88) 100%),
              url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  padding: 6rem 0 6.5rem;
  color: #ffffff;
}

.toa-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.toa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-accent-gold);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.toa-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}
.toa-hero-title span {
  background: linear-gradient(135deg, #d4af37, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.toa-hero-urdu {
  font-size: 1.6rem;
  color: var(--color-accent-gold);
  font-weight: 700;
}

.toa-hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
}

.toa-hero-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.toa-hero-features-list li {
  font-size: 0.95rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.toa-hero-features-list i { color: var(--color-accent-gold); }

/* Dynamic Inquiry Bar Widget */
.toa-inquiry-widget {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-text-main);
}
.toa-inquiry-tabs {
  display: flex;
  background: #f1f5f9;
  padding: 0.35rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  gap: 0.35rem;
}
.toa-tab-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 0.7rem 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.toa-tab-btn.active {
  background: var(--color-primary-dark);
  color: #ffffff;
}

.toa-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}
.form-input, .form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* Service Pillar Cards */
.toa-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.toa-service-card {
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 2.2rem 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.toa-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}
.toa-badge-mini {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent-gold-hover);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.toa-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 62, 98, 0.08), rgba(212, 175, 55, 0.15));
  color: var(--color-primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.toa-service-card:hover .toa-service-icon {
  background: linear-gradient(135deg, var(--color-primary-navy), var(--color-primary-dark));
  color: var(--color-accent-gold);
}
.toa-service-title { font-size: 1.45rem; font-weight: 800; margin-bottom: 0.75rem; }
.toa-service-desc { font-size: 0.95rem; color: var(--color-text-body); margin-bottom: 1.25rem; }
.toa-service-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.toa-service-checklist li { font-size: 0.875rem; color: var(--color-text-body); display: flex; align-items: flex-start; gap: 0.5rem; }
.toa-service-checklist i { color: var(--color-accent-emerald); margin-top: 3px; }

/* Umrah Duration Tabs Styling */
.toa-umrah-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.toa-umrah-tab {
  background: #ffffff;
  border: 2px solid var(--color-border);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}
.toa-umrah-tab.active, .toa-umrah-tab:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-navy));
  color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-md);
}

/* Packages Grid & Flexible Price Boxes */
.toa-packages-section { background: #f1f5f9; }
.toa-packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.toa-pkg-card { background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); position: relative; display: flex; flex-direction: column; transition: var(--transition-normal); }
.toa-pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.toa-pkg-badge { position: absolute; top: 1rem; right: 1rem; background: var(--color-accent-gold); color: #ffffff; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 50px; z-index: 2; }
.toa-pkg-image { height: 200px; width: 100%; object-fit: cover; }
.toa-pkg-body { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
.toa-pkg-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.5rem; }
.toa-pkg-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1.25rem; }

/* Price Box & Fallback Styling for Cards without Specified Prices */
.toa-pkg-price-box {
  background: #f8fafc;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #edf2f7;
  min-height: 58px;
}
.toa-price-label { font-size: 0.8rem; text-transform: uppercase; color: var(--color-text-muted); font-weight: 700; }
.toa-price-val { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--color-primary-navy); }

/* Stylish Badge when Price is empty/not specified */
.toa-pkg-price-box.toa-price-empty,
.toa-pkg-price-box.toa-price-on-request {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(5, 150, 105, 0.08));
  border-color: rgba(212, 175, 55, 0.25);
}
.toa-price-val.toa-inquire-val {
  font-size: 0.95rem;
  color: var(--color-accent-gold-hover);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.toa-pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; flex-grow: 1; }
.toa-pkg-features li { font-size: 0.9rem; display: flex; gap: 0.55rem; }
.toa-pkg-features i { color: var(--color-accent-emerald); }
.toa-pkg-actions { display: flex; gap: 0.75rem; margin-top: auto; }
.toa-pkg-actions .btn { flex: 1; font-size: 0.85rem; padding: 0.75rem 0.5rem; }

/* Social Buttons */
.toa-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  transition: var(--transition-fast);
  text-decoration: none;
}
.toa-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-fb:hover { background: #1877f2 !important; }
.social-insta:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important; }
.social-tiktok:hover { background: #000000 !important; border: 1px solid #25f4ee; }
.social-yt:hover { background: #ff0000 !important; }
.social-threads:hover { background: #000000 !important; }
.social-x:hover { background: #000000 !important; }
.social-wa-ch { background: rgba(37, 211, 102, 0.2); color: #25d366 !important; border: 1px solid rgba(37, 211, 102, 0.4); }
.social-wa-ch:hover { background: #25d366 !important; color: #ffffff !important; }
.social-imo { background: rgba(0, 168, 255, 0.2); color: #00a8ff !important; border: 1px solid rgba(0, 168, 255, 0.4); }
.social-imo:hover { background: #00a8ff !important; color: #ffffff !important; }

/* Process Grid */
.toa-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.toa-process-step { background: #ffffff; padding: 2.2rem 1.5rem; border-radius: 20px; border: 1px solid var(--color-border); text-align: center; transition: var(--transition-normal); }
.toa-process-step:hover { transform: translateY(-5px); border-color: var(--color-accent-gold); }
.toa-step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-navy)); color: var(--color-accent-gold); font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.toa-step-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.65rem; }
.toa-step-desc { font-size: 0.875rem; color: var(--color-text-muted); }

/* Stats */
.toa-stats-section { background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-navy) 100%); color: #ffffff; padding: 4.5rem 0; }
.toa-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; margin-bottom: 3rem; }
.toa-stat-number { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800; color: var(--color-accent-gold); line-height: 1; }
.toa-stat-label { font-size: 1rem; color: #cbd5e1; font-weight: 600; }
.toa-accreditation-bar { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.toa-accreditation-text { font-size: 0.95rem; font-weight: 600; color: #f1f5f9; display: flex; align-items: center; gap: 0.75rem; }
.toa-badges-wrap { display: flex; gap: 1rem; }
.toa-badge-item { background: rgba(255, 255, 255, 0.15); padding: 0.4rem 0.85rem; border-radius: 8px; font-size: 0.8rem; font-weight: 700; }

/* Contact Section */
.toa-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.toa-contact-form-card { background: #ffffff; border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }
.toa-form-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.toa-form-subtitle { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 1.75rem; }
.toa-contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.toa-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.toa-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(30, 62, 98, 0.1); color: var(--color-primary-navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.toa-info-title { font-size: 0.8rem; text-transform: uppercase; color: var(--color-text-muted); font-weight: 700; }
.toa-info-val { font-size: 0.98rem; font-weight: 700; color: var(--color-text-main); }
.toa-map-frame { width: 100%; height: 350px; border-radius: 20px; border: none; box-shadow: var(--shadow-md); }

/* Footer */
.toa-footer { background: var(--color-primary-dark); color: #cbd5e1; padding: 5rem 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.toa-footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3.5rem; }
.toa-footer-col h4 { color: #ffffff; font-size: 1.15rem; margin-bottom: 1.25rem; position: relative; padding-bottom: 0.5rem; }
.toa-footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--color-accent-gold); }
.toa-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.toa-footer-links a { color: #cbd5e1; font-size: 0.9rem; }
.toa-footer-links a:hover { color: var(--color-accent-gold); padding-left: 5px; }
.toa-subfooter { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* Floating WhatsApp Widget */
.toa-wa-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 1000; display: flex; align-items: center; }
.toa-wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); cursor: pointer; transition: var(--transition-normal); text-decoration: none; animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } }
.toa-wa-tooltip { position: absolute; right: 70px; background: #ffffff; color: var(--color-text-main); padding: 0.6rem 1rem; border-radius: 10px; font-size: 0.85rem; font-weight: 700; box-shadow: var(--shadow-md); white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition-fast); }
.toa-wa-widget:hover .toa-wa-tooltip { opacity: 1; }

/* Modal */
.toa-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 25, 44, 0.75); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition-normal); }
.toa-modal-overlay.active { opacity: 1; visibility: visible; }
.toa-modal-content { background: #ffffff; border-radius: 20px; padding: 2.5rem; width: 90%; max-width: 520px; position: relative; transform: scale(0.85); transition: var(--transition-normal); }
.toa-modal-overlay.active .toa-modal-content { transform: scale(1); }
.toa-modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: #f1f5f9; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }

/* Breakpoints */
@media (max-width: 1024px) {
  .toa-hero-grid, .toa-contact-grid { grid-template-columns: 1fr; }
  .toa-services-grid { grid-template-columns: 1fr; }
  .toa-packages-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
  .toa-process-grid, .toa-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .toa-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .toa-nav-menu, .toa-header-actions, .hide-mobile { display: none !important; }
  .toa-mobile-toggle { display: block; }
  .toa-hero-title { font-size: 2.2rem; }
  .toa-process-grid, .toa-stats-grid { grid-template-columns: 1fr; }
  .toa-footer-grid { grid-template-columns: 1fr; }
  .toa-subfooter { flex-direction: column; gap: 1rem; text-align: center; }
  .toa-accreditation-bar { flex-direction: column; gap: 1rem; text-align: center; }
}
