/* -------------------------------------------------------------
 * CORE DESIGN SYSTEM & RESET
 * ------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-color: #0b2545;     /* Premium Deep Navy */
  --primary-light: #134074;     /* Medium Slate Blue */
  --primary-dark: #081c33;      /* Dark Navy */
  --accent-color: #f26419;      /* Energetic Orange (High CTA Conversion) */
  --accent-hover: #dd4f08;      /* Deep Orange */
  --text-dark: #1e293b;         /* Slate 800 */
  --text-light: #64748b;        /* Slate 500 */
  --text-white: #ffffff;
  --bg-light: #f8fafc;          /* Slate 50 */
  --bg-white: #ffffff;
  --success-color: #2ec4b6;     /* Modern Mint Green */
  --error-color: #ef4444;       /* Soft Red */
  --border-color: #e2e8f0;      /* Slate 200 */
  
  /* Fonts */
  --font-main: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-premium: 0 20px 25px -5px rgba(11,37,69,0.1), 0 10px 10px -5px rgba(11,37,69,0.04);
  
  /* Layout */
  --container-width: 1200px;
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* -------------------------------------------------------------
 * UTILITY CLASSES
 * ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.bg-light {
  background-color: var(--bg-light);
}

.bg-primary {
  background-color: var(--primary-color);
}

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

.text-accent {
  color: var(--accent-color);
}

.text-gradient {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

.align-center {
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Section Title */
.section-title {
  margin-bottom: 48px;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.section-desc {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-light);
}

.btn-secondary:hover {
  background-color: rgba(19, 64, 116, 0.05);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(242, 100, 25, 0.4);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 100, 25, 0.6);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--text-white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

/* -------------------------------------------------------------
 * TOP BAR & HEADER
 * ------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 24px;
}

.top-info a:hover {
  color: var(--accent-color);
}

.top-phone {
  font-weight: 600;
  color: var(--text-white);
}

.top-socials {
  display: flex;
  gap: 16px;
}

.top-socials a:hover {
  color: var(--accent-color);
}

/* Header Navbar */
.main-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 56px; /* Limit height to look professional in an 80px navbar */
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  max-height: 60px; /* Footer logo is slightly larger */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Pure white brand logo on dark background */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
}

.nav-links a.btn {
  color: var(--text-white);
}

.nav-links a.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-white);
}

.nav-links a.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--text-white);
}

.nav-links a:hover:not(.btn) {
  color: var(--primary-light);
}

.nav-cta {
  padding: 10px 20px !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/* -------------------------------------------------------------
 * HERO SECTION
 * ------------------------------------------------------------- */
.hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(19, 64, 116, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(135deg, rgba(11, 37, 69, 0.03) 0%, rgba(11, 37, 69, 0) 100%);
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border-color);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content .badge {
  display: inline-block;
  background-color: rgba(242, 100, 25, 0.1);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-item i {
  color: var(--success-color);
  font-size: 20px;
}

.bullet-item span {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
}

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

/* Lead Cards (Quick Form) */
.quick-form-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-premium);
  padding: 40px;
  border: 1px solid rgba(11, 37, 69, 0.08);
}

.quick-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.quick-form-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Forms */
.lead-form .form-group {
  margin-bottom: 20px;
}

.lead-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.lead-form label .required {
  color: var(--error-color);
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: all var(--transition-fast);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.phone-input-wrapper {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-light);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.phone-input-wrapper:focus-within {
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.phone-input-wrapper .country-code {
  padding: 12px 16px;
  background-color: var(--border-color);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light);
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.phone-input-wrapper input {
  border: none;
  background-color: transparent;
  flex: 1;
}

.phone-input-wrapper input:focus {
  box-shadow: none;
  border: none;
}

/* Spinner / Submit details */
.btn-submit {
  position: relative;
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

.btn-spinner.hidden {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  color: var(--success-color);
}

.form-status.error {
  color: var(--error-color);
}

/* -------------------------------------------------------------
 * TRUST BAR
 * ------------------------------------------------------------- */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-stat {
  text-align: center;
}

.trust-stat h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-stat p {
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
}

/* -------------------------------------------------------------
 * ABOUT SECTION
 * ------------------------------------------------------------- */
.about-image-wrapper {
  position: relative;
}

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

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  border-left: 4px solid var(--accent-color);
  color: var(--text-white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 10;
}

.about-experience-badge h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 2px;
}

.about-experience-badge p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

.about-info p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.feature-inline {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-inline i {
  font-size: 24px;
  color: var(--primary-light);
  background-color: rgba(19, 64, 116, 0.08);
  padding: 16px;
  border-radius: 12px;
}

.feature-inline h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.feature-inline p {
  margin-bottom: 0;
  font-size: 14px;
}

/* -------------------------------------------------------------
 * DESTINATIONS SECTION
 * ------------------------------------------------------------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.destination-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(19, 64, 116, 0.2);
}

.destination-header {
  padding: 24px;
  background-color: rgba(11, 37, 69, 0.02);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 16px;
}

.flag-icon {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.destination-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.destination-body {
  padding: 24px;
}

.destination-body ul {
  margin-bottom: 24px;
}

.destination-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.destination-body li i {
  color: var(--success-color);
}

.destination-cta {
  width: 100%;
}

/* -------------------------------------------------------------
 * CTA MID BAR
 * ------------------------------------------------------------- */
.cta-mid-bar {
  background-color: var(--primary-dark);
  padding: 48px 0;
  color: var(--text-white);
}

.cta-mid-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-mid-bar h3 {
  font-size: 24px;
  font-weight: 700;
  max-width: 600px;
}

.cta-mid-actions {
  display: flex;
  gap: 16px;
}

/* -------------------------------------------------------------
 * SERVICES SECTION
 * ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 32px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.service-icon {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* -------------------------------------------------------------
 * COMPARISON SECTION
 * ------------------------------------------------------------- */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: rgba(11, 37, 69, 0.03);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
}

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

.comparison-table td i {
  margin-right: 8px;
}

.text-success {
  color: #10b981;
}

.text-danger {
  color: #ef4444;
}

/* -------------------------------------------------------------
 * TESTIMONIALS SECTION
 * ------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .user-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonial-card .user-info span {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* -------------------------------------------------------------
 * LEAD CAPTURE SECTION (DEDICATED)
 * ------------------------------------------------------------- */
.lead-section {
  position: relative;
}

.lead-section .subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.lead-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.lead-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item i {
  font-size: 20px;
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 50%;
}

.contact-item span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-item strong {
  font-size: 20px;
  font-weight: 700;
}

.lead-form-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 40px;
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
}

.lead-form-card.card-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.lead-form-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

/* -------------------------------------------------------------
 * FAQ SECTION (ACCORDION)
 * ------------------------------------------------------------- */
.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--bg-white);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  padding-right: 16px;
}

.faq-icon {
  font-size: 14px;
  color: var(--text-light);
  transition: transform var(--transition-normal);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal) ease-out;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 15px;
  padding-bottom: 20px;
}

/* Active FAQ state */
.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-light);
}

/* -------------------------------------------------------------
 * OFFICES SECTION
 * ------------------------------------------------------------- */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.office-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.office-icon {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.office-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.office-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.office-phone {
  font-weight: 700;
  color: var(--primary-light);
  font-size: 15px;
}

/* -------------------------------------------------------------
 * MAIN FOOTER
 * ------------------------------------------------------------- */
.main-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-content h4 {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-legal a {
  font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 13px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* -------------------------------------------------------------
 * FLOATING WIDGETS
 * ------------------------------------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none; /* Hidden on desktop by default, enabled on mobile */
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cta-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  transform: scale(1.1);
}

.cta-call {
  background-color: var(--accent-color);
}

.cta-whatsapp {
  background-color: #25d366;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(242, 100, 25, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 100, 25, 0);
  }
}

.cta-whatsapp {
  animation-name: pulse-wa;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* -------------------------------------------------------------
 * RESPONSIVENESS MEDIA QUERIES
 * ------------------------------------------------------------- */

/* Tablets / Medium Screens */
@media (max-width: 1024px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .hero-bullets {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 32px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-img {
    height: 380px;
  }
  
  .about-experience-badge {
    right: 0;
    bottom: -12px;
    padding: 16px 24px;
  }
  
  .cta-mid-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-mid-bar h3 {
    max-width: 100%;
  }
}

/* Mobile Screens */
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .top-bar {
    display: none; /* Hide top bar on mobile for cleaner viewport */
  }
  
  .navbar {
    height: 70px;
  }
  
  .logo-img {
    max-height: 44px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 24px;
    transition: left var(--transition-normal);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-cta {
    width: 80%;
    text-align: center;
  }
  
  .hero-section {
    padding: 40px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-bullets {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .quick-form-card, .lead-form-card {
    padding: 24px;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-cta {
    display: flex; /* Active floating actions on mobile screen */
  }
}

/* Active Hamburger State */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
