/* ========================================
   CORAL HILLS GROUP - Main Stylesheet
   Theme: White / Teal / Navy (Avada faithful)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  /* Matching the real Avada color palette */
  --accent-gold: #2ba0a3;          /* teal — was gold, renamed value only */
  --accent-gold-light: #36b8bb;    /* lighter teal */
  --accent-navy: #014f86;          /* navy — header, CTA, footer */
  --text-light: #ffffff;
  --text-body: #555555;
  --text-dark: #1a1a1a;
  --text-muted: rgba(255,255,255,0.75);   /* for text inside dark cards */
  --primary-dark: #ffffff;         /* body background — white */
  --section-bg: #f4f6f8;           /* light gray alternating sections */
  --card-bg: #013d6e;              /* dark navy panels/cards */
  --border-color: rgba(255,255,255,0.12);
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-gold-light); }

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

p { margin-bottom: 1rem; }

/* ---- Utility ---- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-gold { color: var(--accent-gold); }
.text-white { color: #ffffff; }
.text-muted-custom { color: #666666; }
.bg-dark-section { background-color: var(--section-bg); }
.bg-card { background-color: var(--card-bg); }
.divider-gold { width: 60px; height: 3px; background: var(--accent-gold); margin: 20px 0; }
.divider-gold.center { margin: 20px auto; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666666;
  max-width: 640px;
  line-height: 1.8;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--accent-navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  transition: background 0.3s;
}

.navbar.scrolled { background: #012d4e; }

.navbar-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.nav-cta {
  background: var(--accent-gold) !important;
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  border: none !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--accent-gold-light) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #012d4e;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(1,79,134,0.65) 0%, rgba(1,79,134,0.2) 55%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-height);
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-label {
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-block;
  background: var(--accent-gold);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--accent-gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--accent-gold);
}

/* On dark navy backgrounds the outline is white */
.btn-outline-custom {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* On light bg, outline button uses navy */
.bg-dark-section .btn-outline-custom {
  border-color: var(--accent-navy);
  color: var(--accent-navy);
}
.bg-dark-section .btn-outline-custom:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--accent-gold);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ---- About / Text Sections ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--accent-gold);
  z-index: -1;
}

/* ---- Project Cards ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,79,134,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s;
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(1,79,134,0.97) 0%, rgba(1,79,134,0.5) 60%, rgba(0,0,0,0.1) 100%);
}

.project-card-location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.project-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.project-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.project-card:hover .project-card-desc { max-height: 80px; }

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s 0.1s;
}

.project-card:hover .project-card-link {
  opacity: 1;
  transform: translateY(0);
}

.project-card-link::after { content: '→'; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--card-bg);
  padding: 48px 36px;
  border-left: 3px solid transparent;
  transition: all 0.3s;
}

.service-card:hover {
  border-left-color: var(--accent-gold);
  background: #012d4e;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--accent-gold);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.service-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ---- Project Hero ---- */
.project-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,79,134,0.78) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.05) 100%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 32px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* ---- Feature List ---- */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-body);
}

.features-list li::before {
  content: '✦';
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Info Cards ---- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.info-card {
  background: var(--card-bg);
  padding: 40px 32px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}

.info-card:hover { border-top-color: var(--accent-gold); }

.info-card-icon { font-size: 2.5rem; margin-bottom: 16px; }

.info-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.info-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Quote ---- */
.quote-section {
  background: var(--accent-gold);
  padding: 80px 32px;
  text-align: center;
}

.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.quote-author {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--accent-navy);
  padding: 100px 32px;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ---- Footer ---- */
footer {
  background: #012040;
  padding: 70px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo img { height: 40px; margin-bottom: 20px; }

.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item span:first-child { color: var(--accent-gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--accent-navy);
  text-align: center;
}

.page-header-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 16px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  list-style: none;
}

.breadcrumb-custom a { color: var(--accent-gold); }

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

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .info-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ---- Phone link in navbar ---- */
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  padding: 7px 16px !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  border-radius: 2px;
  transition: all 0.3s;
  border-bottom: 1.5px solid rgba(255,255,255,0.35) !important;
}
.nav-phone:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}
.nav-phone svg { width: 13px; height: 13px; }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 998;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 34px; height: 34px; fill: #fff; }

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.55);
  }
  50% {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 0 0 14px rgba(37,211,102,0);
  }
}

@media (max-width: 768px) {
  .nav-phone { display: none !important; }
  .nav-lang-wrap { display: none !important; }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg { width: 30px; height: 30px; }
}

/* ---- Flag Language Switcher ---- */
.lang-switcher {
  display: flex !important;
  align-items: center;
  gap: 4px;
  padding: 0 !important;
  list-style: none;
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 2px;
  opacity: 0.55;
  transition: opacity 0.3s, border-color 0.3s, transform 0.2s;
  overflow: hidden;
  padding: 0;
}
.lang-flag svg { width: 100%; height: 100%; display: block; }
.lang-flag:hover { opacity: 1; transform: translateY(-1px); }
.lang-flag.active {
  opacity: 1;
  border-color: var(--accent-gold);
}

/* Mobile flag switcher (inside mobile menu) */
.mobile-lang-switcher {
  display: flex;
  gap: 10px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-lang-switcher .lang-flag {
  width: 44px;
  height: 32px;
}

/* RTL support for Arabic pages */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .navbar-inner,
html[dir="rtl"] .navbar-left,
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .features-list li { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(to left, rgba(1,79,134,0.65) 0%, rgba(1,79,134,0.2) 55%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 45%);
}
html[dir="rtl"] .hero-content,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-text,
html[dir="rtl"] .hero-label { text-align: right; }
html[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }
html[dir="rtl"] .footer-bottom { direction: rtl; }
html[dir="rtl"] .divider-gold { margin-left: auto; margin-right: 0; }
html[dir="rtl"] .divider-gold.center { margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
  html[dir="rtl"] .whatsapp-float { left: 18px; }
}
