/* ============================================
   THE CANADIAN JETSETTER — CONTACT PAGE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

:root {
  --red:          #8B0000;
  --red-light:    #a80000;
  --red-glow:     rgba(139, 0, 0, 0.35);
  --black:        #1a0000;
  --card-bg:      #240000;
  --card-hover:   #2d0000;
  --border:       #3d0000;
  --white:        #ffffff;
  --grey-100:     #f5f5f5;
  --grey-400:     #ccbbbb;
  --grey-600:     #7a5555;
  --cream:        #F6F2E7;
  --cream-border: #ddd8ca;
  --cream-card:   #fffcf5;
  --cream-text:   #1a0000;
  --cream-muted:  #6b4a4a;
  --font:         'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ───────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── TOP NAV ───────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  position: relative;
  padding-left: 8px;
}

.nav-logo {
  flex: 1;
  padding-left: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 5px 0;
}

/* Hamburger button */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: width 0.2s, transform 0.25s, opacity 0.2s;
}

.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }

.nav-hamburger:hover span { background: var(--white); }

/* Animate to X when open */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  background: #1a0000;
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
}

.nav-dropdown.is-open {
  display: block;
}

.nav-dropdown ul {
  list-style: none;
  padding: 6px 0;
}

.nav-dropdown ul li a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.nav-dropdown ul li a:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 26px;
}

/* ── DESKTOP NAV LINKS ─────────────────────── */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;
}

.nav-item--dropdown { position: relative; }

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: inherit;
}

.nav-chevron {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.nav-link--btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0000;
  min-width: 180px;
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
  z-index: 110;
}

.nav-submenu.is-open { display: block; }

.nav-submenu a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-submenu a:last-child { border-bottom: none; }

.nav-submenu a:hover {
  background: rgba(139,0,0,0.35);
  color: var(--white);
}

/* Desktop: hide hamburger */
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
}

/* Mobile: hide desktop nav */
@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── HERO ──────────────────────────────────── */
.hero {
  padding: 56px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('TCJ Website Assets/icons/Athens banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #761915 0%, #000000 100%);
  opacity: 0.6;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: #e8e8e8;
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto;
}

/* ── SECTION HEADERS ───────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.53rem, 2.975vw, 2.38rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--grey-400);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ── FOLDER TABS ───────────────────────────── */
.tab-panel-hidden {
  display: none;
}

.folder-wrapper {
  background: var(--black);
  padding: 24px 24px 0;
}

.folder-tab-row {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  z-index: 3;
}

.tab-btn {
  padding: 10px 48px;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(246, 242, 231, 0.25);
  border-bottom: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

/* Inactive tab — dark red, sits slightly lower */
.tab-btn:not(.tab-active) {
  background: #761915;
  color: #F6F2E7;
  z-index: 1;
  margin-top: 6px;
  border-color: rgba(246, 242, 231, 0.15);
}

/* Active tab — cream, blends into content below */
.tab-btn.tab-active {
  background: #F6F2E7;
  color: #761915;
  z-index: 2;
  margin-bottom: -1px; /* overlaps top border of content area */
}

/* Slight overlap between tabs */
.tab-btn + .tab-btn {
  margin-left: -4px;
}

/* Content area — cream folder body */
.folder-content-area {
  background: #F6F2E7;
  border-radius: 0 8px 8px 8px; /* no top-left — first tab connects there */
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(246, 242, 231, 0.15);
}

/* When second tab is active — no top-right corner */
.folder-content-area.second-tab-active {
  border-radius: 8px 0 8px 8px;
}

/* ── CONTACT SECTION ───────────────────────── */
.contact-section {
  padding: 40px 24px;
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrap h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--cream-text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  text-align: center;
}

.contact-subtext {
  font-size: 1.05rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

/* ── CONTACT FORM ──────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream-text);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.req {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #ffffff;
  color: var(--cream-text);
  font-family: var(--font);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b4a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #761915;
  box-shadow: 0 0 0 3px rgba(118, 25, 21, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #761915;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 2px;
}

.btn-submit:hover {
  background: #8B0000;
  transform: translateY(-2px);
}

.contact-email-alt {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--cream-muted);
  text-align: center;
}

.contact-email-alt a {
  color: #761915;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-email-alt a:hover {
  color: var(--red);
}

/* ── PARTNERSHIPS SECTION ──────────────────── */
.partnerships-section {
  padding: 80px 0;
  background: var(--red);
}

.partnerships-section .section-header h2 {
  color: var(--white);
}

.partnerships-section .section-header p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

.partnerships-section .section-divider {
  background: rgba(255, 255, 255, 0.4);
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.partnership-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px 26px;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
}

.partnership-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.partnership-card p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.partnerships-section .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.partnerships-section .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

/* ── SOCIAL PROOF BAR ──────────────────────── */
.social-proof-bar {
  background: #2a0000;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.social-stat {
  text-align: center;
}

.social-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.social-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ── SOCIAL FOLLOW ─────────────────────────── */
.social-section {
  padding: 60px 0;
  background: #2a0000;
}

.social-section .section-header h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--white);
}

.social-section .section-divider {
  background: var(--red);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.social-card {
  display: block;
  text-decoration: none;
}

.social-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.social-card:hover .social-thumb-wrapper {
  border-color: var(--red);
  transform: translateY(-3px);
}

.social-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.social-card:hover .social-thumb-wrapper img {
  opacity: 0.85;
}

.social-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: white;
  background: rgba(139, 0, 0, 0.85);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-follow-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: #120000;
  border-top: 1px solid var(--border);
  padding: 28px 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--cream);
  opacity: 0.55;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, opacity 0.2s;
}

.footer-nav a:hover {
  color: var(--cream);
  opacity: 1;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.3;
  text-align: center;
}

/* ── MOBILE FOLDER → PILL TABS ────────────── */
@media (max-width: 768px) {
  .folder-tab-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    margin-bottom: 20px !important;
  }

  .tab-btn {
    border-radius: 50px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    border: 2px solid #761915 !important;
    width: auto !important;
    min-width: unset !important;
    max-width: 48% !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .tab-btn.tab-active {
    background-color: #761915 !important;
    color: #ffffff !important;
  }

  .tab-btn:not(.tab-active) {
    background-color: transparent !important;
    color: #761915 !important;
  }

  .folder-content-area {
    border-radius: 8px !important;
  }

  .folder-content-area.second-tab-active {
    border-radius: 8px !important;
  }
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0 48px;
  }

  .contact-section {
    padding: 28px 0;
  }

  .contact-form {
    padding: 12px 10px;
  }

  .partnerships-section {
    padding: 56px 0;
  }

  .social-proof-inner {
    gap: 32px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-follow-ctas {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    gap: 20px;
  }

  footer {
    padding: 40px 0 28px;
  }
}

/* ── Mobile OFFERINGS sub-dropdown ──────────── */
.mobile-offerings-btn {
  display: block;
  width: 100%;
  padding: 11px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.mobile-offerings-btn:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 26px;
}
.mobile-offerings-arrow {
  display: inline-block;
  float: right;
  transition: transform 0.3s ease;
}
.mobile-offerings-btn[aria-expanded="true"] .mobile-offerings-arrow {
  transform: rotate(90deg);
}
.mobile-offerings-sub {
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.15);
}
.mobile-offerings-sub.is-open {
  max-height: 300px;
}
.mobile-offerings-sub li a {
  padding-left: 32px;
}
