/* ================================
   GRAVITY TOURS & TRAVELS THEME
   ================================ */

:root {
  --primary: #882a5d;       /* brand magenta */
  --accent: #76c4ca;        /* teal accent */
  --bg: #fbf2d3;            /* light beige background */
  --muted: #6d6b66;
  --card: #ffffff;
  --maxw: 1100px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: #222;
  scroll-behavior: smooth;
}

/* Layouts */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px;
}

* {
  box-sizing: border-box;
}

/* =======================
   HEADER
   ======================= */
.site-header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 46px;
}

.brand-text strong {
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.small.muted {
  font-size: 12px;
  color: var(--muted);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact .phone {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.main-nav a {
  margin-left: 16px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
}

/* =======================
   HERO
   ======================= */
.hero {
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 700px;
  margin-top: 86px;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.35));
  padding: 70px 40px;
  border-radius: var(--radius);
}

.hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero p {
  color: #fff;
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hero .btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin: 6px;
  transition: var(--transition);
}

.hero .btn-secondary {
  background: var(--accent);
  color: #fff;
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* =======================
   SECTIONS
   ======================= */
section {
  padding: 60px 0;
}

h2 {
  font-size: 28px;
  margin: 0 0 18px;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* =======================
   CARDS
   ======================= */
.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .card-body {
  padding: 16px;
}

.card strong {
  color: var(--primary);
}

.badge {
  position: absolute;
  right: 12px;
  top: 12px;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
}

/* =======================
   FORM
   ======================= */
form {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

label {
  display: block;
  margin: 8px 0 4px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

button.btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

button.btn:hover {
  background: var(--accent);
}

/* =======================
   WHATSAPP FLOAT
   ======================= */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-decoration: none;
  font-weight: 700;
}

.whatsapp-float img {
  height: 20px;
}

/* =======================
   FOOTER
   ======================= */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 40px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 900px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; padding: 0 12px; }
  .hero { min-height: 500px; }
  .header-right .main-nav { display: none; }
  .site-header { left: 8px; right: 8px; }
}
/* CONTACT SECTION */
.contact-section {
  background: var(--bg, #f9f9f9);
  padding: 40px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.contact-info, .contact-map {
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.08); /* thinner border */
  border-radius: 16px;
  padding: 20px 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.contact-info p {
  font-size: 16px;
  color: #444;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.8; /* added better line spacing */
}

.contact-info i {
  color: #ac1a58;
  font-size: 18px;
}

.follow-text {
  font-weight: 600;
  margin: 25px 0 12px;
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  color: #3fddeb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .contact-info, .contact-map {
    padding: 24px;
  }
  .contact-grid {
    gap: 24px;
  }
}
.fa-phone-alt {
  transform: scaleX(-1);
}
.contact-group {
  margin-top: 20px;
}

.contact-group h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ac1a58;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-group p {
  margin: 4px 0;
  font-size: 16px;
  color: #444;
  padding-left: 26px; /* aligns neatly under the heading icon */
  line-height: 1.8;
}
/* Center-align all section titles and main descriptions */
section h2,
section p {
  text-align: center;
}

/* Exception: keep text left-aligned in grids or lists (cards, contact info, etc.) */
.card p,
.contact-info p,
.contact-group p {
  text-align: left;
}
/* ==============================
   FOOTER (Premium Design)
   ============================== */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 60px 18px 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #ccc;
  margin: 8px 0;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  color: #aaa;
  font-size: 14px;
}

.designer-text span {
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

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

