/* ===== SureCape Shuttles — Stylesheet ===== */

:root {
  --teal: #008080;
  --teal-dark: #007272;
  --teal-darker: #005f5f;
  --gold: #ffda63;
  --light-gray: #f1f1f1;
  --text-dark: #262626;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --radius: 999px;
  --max-width: 1180px;
  --font-heading: 'Ubuntu', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0 0 16px;
}

section {
  padding: 72px 0;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--teal);
}

.btn-outline-teal {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-solid-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-solid-teal:hover {
  background: var(--teal-dark);
}

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;
  background: var(--white);
}

.site-header .logo img {
  height: 56px;
}

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

.main-nav > ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  list-style: none;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  white-space: nowrap;
}

.dropdown li a:hover {
  background: var(--light-gray);
  color: var(--teal);
}

/* ===== Language switcher ===== */
.lang-switcher {
  margin-right: 4px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
}

.lang-current:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.lang-current .caret {
  font-size: 0.65rem;
}

.lang-switcher.open .lang-dropdown {
  display: block;
}

.lang-dropdown {
  min-width: 160px;
  right: 0;
  left: auto;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  cursor: pointer;
}

.lang-option:hover {
  background: var(--light-gray);
  color: var(--teal);
}

.lang-option.active {
  color: var(--teal);
  font-weight: 600;
}

.lang-switcher-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.lang-switcher-mobile .lang-option {
  width: auto;
  border: 1px solid #3a3a3a;
  border-radius: var(--radius);
  padding: 8px 16px;
  color: #cfcfcf;
}

.lang-switcher-mobile .lang-option.active {
  border-color: var(--teal);
  color: var(--teal);
}

.lang-notice {
  background: var(--light-gray);
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #141414;
  z-index: 1000;
  padding: 24px;
  color: var(--white);
  overflow-y: auto;
}

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

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  margin-top: 60px;
}

.mobile-nav > ul > li {
  border-bottom: 1px solid #2b2b2b;
}

.mobile-nav a,
.mobile-nav .mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-nav a.active {
  color: var(--teal);
  font-weight: 700;
}

.mobile-submenu {
  list-style: none;
  display: none;
  padding-left: 16px;
}

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

.mobile-submenu a {
  font-size: 1rem;
  padding: 12px 0;
  color: #cfcfcf;
}

.mobile-nav .btn {
  margin-top: 30px;
}

/* ===== Hero ===== */
.hero {
  background: var(--teal);
  padding: 80px 0 70px;
  text-align: center;
}

.hero h1 {
  color: var(--gold);
  font-size: 2.4rem;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero p {
  color: #d3d3d3;
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto 32px;
}

.hero .btn {
  margin-bottom: 24px;
}

.hero .phone {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* Generic inner-page hero (no split image) */
.page-hero {
  background: var(--teal);
  text-align: center;
  padding: 90px 0 70px;
}

.page-hero h1 {
  color: var(--gold);
  font-size: 2.2rem;
  max-width: 760px;
  margin: 0 auto 18px;
}

.page-hero p {
  color: #e4e4e4;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* ===== Ticker ===== */
.ticker {
  background: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.ticker-track {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.ticker-track span {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-right: 60px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== About / intro ===== */
.intro {
  text-align: center;
}

.intro h2 {
  color: var(--teal);
  font-size: 2rem;
}

.intro p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Services grid ===== */
.services-section {
  background: var(--light-gray);
}

.section-heading {
  text-align: center;
  color: var(--teal);
  font-size: 2rem;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.card h3 {
  color: var(--teal);
  font-size: 1.3rem;
}

.card p {
  color: var(--text-muted);
  flex-grow: 1;
}

.card .btn {
  align-self: flex-start;
  margin-top: 16px;
}

/* ===== Highlight box (destinations, feature lists) ===== */
.highlight-card {
  background: var(--teal);
  color: var(--white);
  border-radius: 16px;
  padding: 32px;
}

.highlight-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
}

.highlight-card ul {
  list-style: none;
  margin: 16px 0;
}

.highlight-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.highlight-card .btn {
  margin-top: 20px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== Feature list w/ checks ===== */
.check-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 28px;
}

.check-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #eee;
  color: var(--text-muted);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ===== Payment icons ===== */
.payments {
  text-align: center;
}

.payments .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.payments .icons img {
  height: 40px;
  width: auto;
}

/* ===== Reviews ===== */
.reviews {
  background: var(--white);
  text-align: center;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.review-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.review-card .stars {
  color: var(--gold);
  margin-bottom: 8px;
}

.review-card .name {
  font-family: var(--font-heading);
  color: var(--teal);
  margin-top: 12px;
}

.google-attribution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.google-attribution:hover {
  color: var(--teal);
}

/* ===== Contact / Talk to us ===== */
.contact-section {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.contact-section h2 {
  color: var(--gold);
  font-size: 2rem;
}

.contact-section p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: #e4e4e4;
}

.contact-section .btn {
  margin-bottom: 10px;
}

.contact-details {
  margin-top: 28px;
  font-size: 0.95rem;
  color: #dff0f0;
}

.contact-details strong {
  display: block;
  margin-bottom: 6px;
}

/* ===== Quote form ===== */
.quote-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.quote-form h2 {
  color: var(--teal);
  text-align: center;
}

.quote-form p.lead {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.quote-form .btn {
  width: 100%;
  border: none;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-top: 14px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  text-align: center;
}

.form-status.visible {
  display: block;
}

.form-status.sending {
  background: #f1f1f1;
  color: var(--text-muted);
}

.form-status.success {
  background: #e6f4f1;
  color: var(--teal-darker);
}

.form-status.error {
  background: #fdecea;
  color: #b3261e;
}

/* ===== FAQ accordion ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--teal);
}

.faq-question .chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-answer div {
  padding-bottom: 22px;
  white-space: pre-line;
}

.faq-intro {
  text-align: center;
  margin-bottom: 40px;
}

.faq-intro a {
  color: var(--teal);
  text-decoration: underline;
}

/* ===== Legal pages ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--teal);
  margin-top: 36px;
}

.legal-content p {
  color: var(--text-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--teal-darker);
  color: #cfe8e8;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #b7d6d6;
  font-size: 0.9rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #4fa8a8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfe8e8;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid #1c8888;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #a3cccc;
}

/* ===== Photo carousel ===== */
.gallery-section {
  background: var(--light-gray);
}

.photo-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  aspect-ratio: 16 / 9;
  background: #0d3d3d;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,20,20,0.75), rgba(0,20,20,0));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

/* Themed placeholder slides — swap in a real <img> when photos are ready */
.placeholder-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.placeholder-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 20% 20%, var(--white) 0, transparent 40%),
                    radial-gradient(circle at 80% 70%, var(--white) 0, transparent 45%);
}

.placeholder-slide .placeholder-icon {
  position: relative;
  width: 84px;
  height: 84px;
  color: rgba(255,255,255,0.92);
  opacity: 0.9;
}

.placeholder-slide .placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.theme-airport { background: linear-gradient(135deg, #0f5c5c, #1f8a8a); }
.theme-corporate { background: linear-gradient(135deg, #123a4a, #1d5f75); }
.theme-vip { background: linear-gradient(135deg, #3a2f12, #6b551f); }
.theme-daytour-mountain { background: linear-gradient(135deg, #14463f, #2c7a66); }
.theme-daytour-wine { background: linear-gradient(135deg, #4a2130, #7a3348); }
.theme-daytour-coast { background: linear-gradient(135deg, #0c3a52, #17698f); }
.theme-daytour-safari { background: linear-gradient(135deg, #4a3410, #8a6420); }
.theme-daytour-adventure { background: linear-gradient(135deg, #1f2f52, #35508a); }
.theme-daytour-yacht { background: linear-gradient(135deg, #103b4d, #1c6b82); }
.theme-private { background: linear-gradient(135deg, #1a4a45, #2f7d75); }
.theme-events { background: linear-gradient(135deg, #4a1f3a, #7d2f60); }
.theme-services { background: linear-gradient(135deg, #123a3a, #1f6b6b); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--teal-darker);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--white);
}

.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.carousel-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots .dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* Small carousels used inside destination/service cards */
.card-photo {
  aspect-ratio: 4 / 3;
  border-radius: 16px 16px 0 0;
  margin: -32px -28px 20px;
  overflow: hidden;
}

.highlight-card .card-photo {
  margin: -32px -32px 20px;
}

.card-photo .photo-carousel {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 4 / 3;
}

.card-photo .placeholder-icon {
  width: 56px;
  height: 56px;
}

.card-photo .carousel-arrow {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
}

/* ===== Scroll reveal + hover liveliness ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.card, .highlight-card, .review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.22);
}

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

.btn {
  transition: all 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .hero-media { grid-template-columns: 1fr; }
  .hero-media img { height: 260px; min-height: 0; }
  .card-grid, .destination-grid, .review-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 1.8rem; }
  .photo-carousel { border-radius: 14px; }
  .carousel-caption { padding: 18px 20px; font-size: 1rem; }
  section { padding: 52px 0; }
}
