/* 
  Tourism & Travel Visual Identity 
  Variables named after iconic travel elements.
*/

:root {
  --sky: #53b2e6;
  --sunset: #ffb264;
  --palm: #27ab83;
  --sand: #fff6eb;
  --reef: #355c7d;
  --seafoam: #e3f7fa;
  --text-major: #253045;
  --text-muted: #465269;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(41,61,81,0.07);
  --border-radius: 18px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--sand);
  color: var(--text-major);
  font-size: 18px;
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--reef);
}

h1 {
  font-size: 2.7rem;
  margin-bottom: 0.45em;
  line-height: 1.09;
}

h2 {
  font-size: 2em;
  margin-bottom: 1.2em;
}

h3 {
  font-size: 1.35em;
  margin-top: 1.9em;
  margin-bottom: 0.7em;
}

p {
  color: var(--text-muted);
  font-size: 1.06em;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color .16s;
}

a:hover, .read-more:hover {
  color: var(--sunset);
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

button, input[type="submit"] {
  font-family: inherit;
  border: none;
  border-radius: var(--border-radius);
  background: var(--sky);
  color: var(--white);
  padding: 0.85em 2.2em;
  font-size: 1.06em;
  font-weight: 600;
  transition: background .18s, color .18s;
  cursor: pointer;
  box-shadow: var(--shadow);
}
button:hover, input[type="submit"]:hover {
  background: var(--palm);
  color: var(--white);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.2rem;
}

/* Header */
.site-header {
  padding: 0;
  background: var(--seafoam);
  box-shadow: 0 2px 10px rgba(63,116,163,0.05);
  position: relative;
  z-index: 999;
}
.header-inner.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo svg {
  height: 40px;
  width: 40px;
  margin-right: 0.8em;
  flex-shrink: 0;
}
.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45em;
  font-weight: 700;
  color: var(--reef);
  letter-spacing: 0.03em;
}
.nav {
  display: flex;
  gap: 2em;
}
.nav a {
  font-weight: 500;
  color: var(--text-major);
  letter-spacing: 0.02em;
  padding: 9px 0;
  display: block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s;
}
.nav a.active, .nav a:focus, .nav a:hover {
  color: var(--sky);
  border-bottom: 2px solid var(--sunset);
}
.burger {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 1200;
  appearance: none;
}
.burger svg {
  width: 34px;
  height: 34px;
  fill: var(--reef);
}

@media (max-width: 870px) {
  .container {
    padding: 0 1.1rem;
  }
  .header-inner.container {
    padding: 0 1.1rem;
  }
}
@media (max-width:660px) {
  .header-inner.container {
    min-height: 60px;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--seafoam);
    flex-direction: column;
    align-items: flex-start;
    padding: 1em 1.4em 1.4em;
    gap: 1.25em;
    transform: translateY(-200%);
    transition: transform 0.22s;
    box-shadow: 0 6px 24px rgba(63,116,163,0.17);
  }
  .nav.open {
    transform: translateY(0);
  }
  .burger {
    display: flex;
  }
}

/* Hero */
.hero-section {
  background: linear-gradient(75deg, rgba(83,178,230,0.32), rgba(255,178,100,0.17)), url('images/hero.jpg') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-content {
  padding: 4.5em 0 3.5em;
  text-shadow: 0 6px 20px rgba(37,48,69,0.17);
  color: var(--white);
}
.hero-section .container {
  max-width: 730px;
}
.hero-content h1,
.hero-content p {
  color: #fff;
  text-shadow: 0 6px 17px rgba(23,38,68,0.18);
}
.hero-content h1 {
  margin-bottom: 0.19em;
  font-size: 2.5em;
}
.hero-content p {
  font-size: 1.18em;
  font-weight: 400;
  margin-bottom: 1.7em;
}
.hero-content .btn {
  background: var(--sunset);
  color: var(--reef);
  border: none;
  display: inline-block;
  font-size: 1.08em;
  font-weight: 600;
  padding: 0.9em 2.5em;
  line-height: 1.35;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  transition: background .19s, color .19s;
  text-decoration: none;
}
.hero-content .btn:hover {
  background: var(--reef);
  color: var(--white);
}

/* Services */
.services-section {
  background: var(--white);
  padding: 3.7em 0;
}
.services-grid {
  display: flex;
  gap: 2.6em;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-card {
  background: var(--sand);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2em 1.2em 1.4em 1.2em;
  flex: 1 1 180px;
  min-width: 195px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.13s;
}
.service-card svg {
  margin-bottom: 1.2em;
  height: 2.45em;
  width: 2.45em;
}
.service-card h3 {
  margin: 0 0 0.7em 0;
  color: var(--reef);
  font-size: 1.12em;
}
.service-card p {
  font-size: 1em;
  color: var(--text-muted);
  margin: 0;
}

/* Split (image-text) section */
.split-section {
  background: var(--seafoam);
  padding: 4.3em 0;
}
.split-grid {
  display: flex;
  align-items: center;
  gap: 3.6em;
}
.split-image {
  flex: 1 1 320px;
  min-width: 0;
}
.split-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.split-text {
  flex: 1 1 340px;
  min-width: 0;
}
.split-text h2 {
  margin-bottom: 0.6em;
}
.split-text p {
  margin-bottom: 1.1em;
}
.split-text .btn-alt {
  color: var(--white);
  background: var(--reef);
  border: none;
  outline: none;
  box-shadow: var(--shadow);
  transition: background .16s;
}
.split-text .btn-alt:hover {
  background: var(--sky);
}

/* Benefits */
.benefits-section {
  background: var(--white);
  padding: 3.5em 0 2.7em;
}
.benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.4em;
  flex-wrap: wrap;
}
.benefit {
  flex: 1 1 170px;
  min-width: 170px;
  max-width: 240px;
  background: var(--sand);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2em 1.4em;
}
.benefit strong {
  font-size: 2.2em;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 0.26em;
}
.benefit span {
  font-size: 1.05em;
  color: var(--text-major);
}

/* Info Block */
.info-section {
  background: var(--seafoam);
  padding: 3.4em 0 2.9em;
}
.info-section h2 {
  margin-bottom: 0.7em;
}
.info-section h3 {
  color: var(--reef);
  font-size: 1.08em;
  margin-top: 2em;
  margin-bottom: 0.45em;
}
.info-section ul {
  padding-left: 1.6em;
  margin: 0.5em 0 1.8em 0;
  color: var(--text-muted);
  font-size: 1.02em;
}
.info-section li {
  margin-bottom: 0.28em;
}

/* Testimonials */
.testimonials-section {
  background: var(--white);
  padding: 3.4em 0 2.6em;
}
.testimonials-grid {
  display: flex;
  gap: 2.2em;
  justify-content: space-between;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--sand);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 210px;
  flex: 1 1 230px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  padding: 1.6em 1.4em 1.3em;
  position: relative;
}
.testimonial-card .testimonial-name {
  font-weight: 600;
  color: var(--palm);
  font-size: 1em;
  margin-top: 1.1em;
}
.testimonial-card .testimonial-date {
  font-size: 0.97em;
  color: var(--text-muted);
  margin-bottom: 0.3em;
}
.testimonial-card .testimonial-text {
  font-size: 1.03em;
  color: var(--text-major);
}

/* Blog preview */
.blog-section {
  background: var(--seafoam);
  padding: 3em 0 2.4em;
}
.blog-grid {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.blog-card-content {
  padding: 1.4em 1.2em 1.2em;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.blog-card-content h3 {
  font-size: 1.13em;
  margin: 0 0 0.55em 0;
  color: var(--reef);
}
.blog-card-content p {
  font-size: 1em;
  margin-bottom: 1.05em;
}
.read-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--sky);
  display: inline-block;
  transition: color 0.15s;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 1em;
}

/* FAQ */
.faq-section {
  background: var(--white);
  padding: 2.8em 0 2.5em;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-question {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.14em;
  cursor: pointer;
  padding: 1.17em 0;
  margin: 0;
  color: var(--reef);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-left: 1em;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" stroke="%2353b2e6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="6 8 10 12 14 8"/></svg>') center/20px no-repeat;
  transition: transform 0.22s;
}
.faq-item.open .faq-question::after {
  transform: rotate(-180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .49s cubic-bezier(.42,0,.58,1), opacity .19s;
  padding: 0 0;
  color: var(--text-muted);
}
.faq-item.open .faq-answer {
  max-height: 350px;
  padding: 0.02em 0 1.3em 0;
  opacity: 1;
}
.faq-answer p, .faq-answer ul {
  margin: 0.24em 0 0.42em 0;
  font-size: 1em;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  background: var(--seafoam);
  padding: 3.5em 0 2.7em;
}
.contact-grid {
  display: flex;
  gap: 4.1em;
  flex-wrap: wrap;
}
.contact-form-col {
  flex: 1 1 290px;
  min-width: 230px;
}
.contact-info-col {
  flex: 1 1 260px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.contact-info-group {
  margin-bottom: 1em;
}
.contact-info-label {
  color: var(--reef);
  font-weight: 600;
  margin-right: 0.3em;
}
.contact-details {
  font-size: 1.04em;
  color: var(--text-muted);
  margin-bottom: 0.22em;
}
#contact-form {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2.1em 1.9em 1.2em;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
#contact-form label {
  font-weight: 500;
  margin-bottom: 0.18em;
  color: var(--reef);
  font-size: 1em;
}
#contact-form input, 
#contact-form textarea {
  font-size: 1em;
  font-family: inherit;
  padding: 0.68em 0.7em;
  border: 1.5px solid #cee3ee;
  background: #f7fafc;
  border-radius: var(--border-radius);
  margin-bottom: 0.2em;
  resize: vertical;
  width: 100%;
  max-width: 100%;
  color: var(--text-major);
}
#contact-form textarea {
  min-height: 98px;
  max-height: 370px;
}
#contact-form input[type="submit"] {
  background: var(--palm);
  color: var(--white);
  font-weight: 700;
  margin-top: 0.5em;
  align-self: flex-start;
}
#contact-form input[type="submit"]:hover {
  background: var(--reef);
}
#form-success {
  color: var(--palm);
  background: #e3f7ea;
  border-radius: var(--border-radius);
  padding: 1.2em 1.2em;
  margin: 0.7em 0 0 0;
  font-size: 1.09em;
  border: 1.2px solid #a7dfa6;
  box-shadow: var(--shadow);
  display: none;
}
@media (max-width: 1100px) {
  .split-grid, .contact-grid, .services-grid, .benefits-grid, .blog-grid, .testimonials-grid {
    flex-wrap: wrap;
    gap: 2em;
  }
}

@media (max-width: 860px) {
  .split-grid, .contact-grid {
    flex-direction: column;
    gap: 2.2em;
  }
  .services-grid, .benefits-grid, .testimonials-grid, .blog-grid {
    flex-direction: row;
    gap: 1.1em;
  }
}

/* Footer */
.site-footer {
  background: var(--reef);
  color: var(--white);
  padding: 2.5em 0 0.8em;
  font-size: 1em;
}
.footer-container.container {
  display: flex;
  justify-content: space-between;
  gap: 2.5em;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-col-left {
  max-width: 420px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.7em;
  text-decoration: none;
}
.footer-logo svg {
  height: 36px;
  width: 36px;
  margin-right: 0.7em;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.18em;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.footer-tagline {
  font-size: 0.97em;
  margin-bottom: 0.8em;
  color: #bddbef;
}
.footer-contact {
  color: #bfe6ff;
  font-size: 0.99em;
}
.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-items: flex-end;
}
.footer-nav a {
  color: var(--white);
  opacity: .93;
  font-weight: 600;
  margin-bottom: 0.12em;
  transition: color 0.14s, opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--sunset);
  opacity: 1;
}
.footer-bottom {
  border-top: 1.3px solid #5e7db2;
  text-align: right;
  margin-top: 1.5em;
  padding-top: 1.0em;
  color: #bde3f5;
  font-size: 0.95em;
}
@media (max-width:700px) {
  .footer-container.container {
    flex-direction: column;
    gap: 1.2em;
    align-items: stretch;
  }
  .footer-col-right {
    align-items: flex-start;
    margin-top: 1.2em;
  }
  .footer-nav {
    align-items: flex-start;
    gap: 0.45em;
  }
  .footer-bottom {
    text-align: left;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--reef);
  color: var(--white);
  padding: 1.1em 1.6em;
  box-shadow: 0 -3px 24px rgba(53,178,230,0.11);
  z-index: 1500;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1em;
}
.cookie-banner span {
  color: #d6effa;
  font-size: 1em;
}
.cookie-banner a {
  color: var(--sunset);
  text-decoration: underline;
  font-weight: bold;
}
.cookie-banner button {
  margin-left: 0.42em;
  font-size: 0.98em;
  background: var(--sky);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.43em 1.2em;
  box-shadow: 0 2px 8px rgba(23,38,68,0.10);
  transition: background .16s;
}
.cookie-banner button:hover {
  background: var(--palm);
  color: #fff;
}
@media (max-width:570px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
    font-size: 1em;
    padding: 1em 0.8em;
  }
}

/* Misc */
::-webkit-input-placeholder { color: #adc3cf; opacity:1;}
::-moz-placeholder { color: #adc3cf; opacity:1;}
:-ms-input-placeholder { color: #adc3cf; opacity:1;}
::placeholder { color: #adc3cf; opacity:1;}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.hide { display: none !important; }
@media (max-width:660px) {
  h1 { font-size: 1.65em; }
  h2 { font-size: 1.25em; }
}
/* End of tourism & travel design */