/* ============================================================
   footer.css — Kanneliya Travel Partner
   ============================================================ */

.site-footer {
  width: 100%;
  padding: 0 22px;
  font-family: 'Jost', sans-serif;
}

/* ── Decorative top accent ── */
.footer-top-accent {
  display: flex;
  align-items: center;
}

.accent-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(78, 205, 196, 0.4));
}

.accent-line:last-child {
  background: linear-gradient(to left, transparent, rgba(78, 205, 196, 0.4));
}

.accent-diamond {
  width: 7px;
  height: 7px;
  border: 1px solid #4ecdc4;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 12px;
  opacity: 0.7;
}

/* ── Main footer body — 4 columns on large screens ── */
.footer-body {
  position: relative;
  margin: 0;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 2fr 0.7fr 1.4fr 1.6fr;
  gap: 40px;
  align-items: start;
  background: #071217;
}

.footer-body::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(37deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0.514), rgba(78, 205, 197, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Col 1: Brand ── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.logo-image {
  width: 4.5rem;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.footer-brand-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 22px;
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.5;
}

a.footer-contact-item:hover {
  color: #4ecdc4;
}

a.footer-contact-item:hover .footer-contact-icon {
  color: #4ecdc4;
}

.footer-contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #4ecdc4;
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

/* Socials */
.footer-touch-label {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-social-btn:hover {
  border-color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
  color: #4ecdc4;
  transform: translateY(-3px);
}

/* ── Col 2: Quick Links ── */
.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s, gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav li a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: #4ecdc4;
  transition: width 0.3s;
  flex-shrink: 0;
}

.footer-nav li a:hover {
  color: #ffffff;
}

.footer-nav li a:hover::before {
  width: 20px;
}

/* ── Col 3: Opening Hours ── */
.footer-hours-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-hours-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-day {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  min-width: 64px;
}

.hours-dot {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(78, 205, 196, 0.22);
  min-width: 12px;
}

.hours-time {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.footer-hours-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 14px;
  font-style: italic;
}

/* ── Col 4: Quick Ask ── */
.footer-ask-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 14px;
  margin-top: -4px;
}

.footer-textarea {
  width: 100%;
  min-height: 110px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(78, 205, 196, 0.35);
  border-radius: 8px;
  padding: 13px 15px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  resize: none;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  margin-bottom: 12px;
  display: block;
}

.footer-textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.footer-textarea:focus {
  border-color: rgba(78, 205, 196, 0.75);
  background: rgba(78, 205, 196, 0.03);
}

.footer-send-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-send-note {
  font-size: 12px;
  font-weight: 300;
  color: #4ecdc4;
  opacity: 0;
  transition: opacity 0.4s;
  flex-shrink: 0;
}

.footer-send-note.visible {
  opacity: 1;
}

.footer-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid rgba(78, 205, 196, 0.55);
  color: #4ecdc4;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  white-space: nowrap;
  margin-left: auto;
}

.footer-send-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.footer-send-btn:hover {
  background: rgba(78, 205, 196, 0.08);
  border-color: #4ecdc4;
  transform: translateY(-1px);
}

.footer-send-btn:active {
  transform: translateY(0);
}

/* ── Copyright bar ── */
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 52px 20px;
  /* background: #071217; */
  border-top: 1px solid rgba(78, 205, 196, 0.07);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
}

.footer-copy-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy-links a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-copy-links a:hover {
  color: rgba(78, 205, 196, 0.8);
}

.copy-sep {
  color: rgba(255, 255, 255, 0.18);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1200px — tighten gaps slightly */
@media (max-width: 1200px) {
  .footer-body {
    grid-template-columns: 2fr 0.7fr 1.6fr 1.5fr;
    gap: 32px;
    padding: 44px 44px;
  }

  .footer-copy {
    padding: 14px 44px 18px;
  }
}

/* 960px — drop to 2-column: brand+ask / links+hours */
@media (max-width: 960px) {
  .site-footer {
    padding: 0 28px;
  }

  .footer-body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 36px 40px;
    padding: 40px 36px;
  }

  /* Row 1: brand (left) + ask (right) */
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-ask {
    grid-column: 2;
    grid-row: 1;
  }

  /* Row 2: links (left) + hours (right) */
  .footer-links {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-hours-col {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-copy {
    padding: 14px 36px 18px;
  }

  .footer-logo-name {
    font-size: 18px;
  }
}

@media (max-width: 850px) {
  .footer-copy {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 14px 24px 18px;
  }
}

/* 680px — single column, stacked order */
@media (max-width: 680px) {
  .site-footer {
    padding: 0 20px;
  }

  .footer-body {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 32px;
    padding: 32px 24px;
  }

  .footer-brand,
  .footer-links,
  .footer-hours-col,
  .footer-ask {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-brand-text {
    max-width: 100%;
  }

  /* Hours row — allow day label to shrink a bit */
  .hours-day {
    min-width: 56px;
  }
}

/* 400px — very small phones */
@media (max-width: 400px) {
  .site-footer {
    padding: 0 12px;
  }

  .footer-body {
    padding: 28px 16px;
  }

  .footer-copy {
    padding: 14px 16px 18px;
  }

  .footer-logo-name {
    font-size: 15px;
  }

  .footer-social-btn {
    width: 36px;
    height: 36px;
  }
}