/* ============================================
   CALL GET IN TOUCH LTD – SHARED STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:     #0f1f3d;
  --navy-mid: #1a3260;
  --gold:     #c8973a;
  --gold-lt:  #e8b45a;
  --white:    #ffffff;
  --off-white:#f8f7f4;
  --grey-lt:  #f0eff0;
  --grey:     #8a8a9a;
  --text:     #1c1c2e;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(15,31,61,.10);
  --shadow-lg:0 12px 48px rgba(15,31,61,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--navy); margin-bottom: 14px; }
.section-sub { color: var(--grey); max-width: 560px; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  border-color: transparent;
  font-size: 17px;
  padding: 16px 36px;
  box-shadow: 0 6px 24px rgba(200,151,58,.35);
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(200,151,58,.45); }

/* ── Header / Nav ── */
#site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo span { color: var(--gold); }
nav { display: flex; align-items: center; gap: 8px; }
nav a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,.10); }
nav a.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  margin-left: 6px;
}
nav a.nav-cta:hover { background: var(--gold-lt); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 12px 0;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: 12px 24px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,255,255,.05); }
.mobile-nav.open { display: flex; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy-mid);
  font-size: 13px;
  color: rgba(255,255,255,.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: var(--gold); font-weight: 600; }
.top-bar a:hover { color: var(--gold-lt); }

/* ── Disclosure Banner ── */
.disclosure-banner {
  background: #fffbf0;
  border-left: 4px solid var(--gold);
  padding: 14px 24px;
  font-size: 13.5px;
  color: #5a4a20;
  line-height: 1.5;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .22;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 660px;
}
.hero h1 { font-size: clamp(2rem,5vw,3.2rem); color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eeeef4;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--grey); }

/* ── Deal Cards (O2 page) ── */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.deal-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid #e8e8f0;
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.deal-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.deal-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
}
.deal-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.deal-network { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.deal-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 14px; }
.deal-price { margin-bottom: 16px; }
.deal-price .amount { font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.deal-price .per { font-size: 14px; color: var(--grey); }
.deal-specs { list-style: none; margin-bottom: 22px; }
.deal-specs li {
  font-size: 14px; color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f5;
  display: flex; align-items: center; gap: 8px;
}
.deal-specs li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.deal-cta { width: 100%; text-align: center; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 36px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 24px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ── Why Choose Us ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 28px; }
.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--grey); }

/* ── Network Banner ── */
.network-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 48px 24px;
}
.network-banner h2 { font-size: 1.6rem; margin-bottom: 8px; }
.network-banner p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.networks { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 28px; }
.network-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.network-pill:hover { background: var(--gold); border-color: var(--gold); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #b07d2a 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-section h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 12px; }
.cta-section p { opacity: .88; margin-bottom: 32px; font-size: 16px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media(max-width:760px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.contact-detail-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.contact-detail-text p, .contact-detail-text a { font-size: 14px; color: var(--grey); }
.contact-detail-text a:hover { color: var(--gold); }
.hours-table { width: 100%; font-size: 14px; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; color: var(--grey); }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 260px; margin-top: 14px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0ea;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,31,61,.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-error { font-size: 12px; color: #d32f2f; margin-top: 4px; display: none; }
.form-success {
  background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32;
  padding: 16px 20px; border-radius: 8px; margin-top: 16px;
  display: none; font-size: 14px;
}

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:760px){ .about-grid { grid-template-columns: 1fr; } }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 380px; object-fit: cover; width: 100%; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; margin: 0 auto 14px; border: 3px solid var(--gold); }
.team-card h4 { font-size: 1rem; color: var(--navy); }
.team-card p { font-size: 13px; color: var(--grey); }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
@media(max-width:900px){ .footer-main { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-main { grid-template-columns: 1fr; } }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-brand .contact-links { margin-top: 16px; }
.footer-brand .contact-links a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gold); margin-bottom: 8px; }
.footer-brand .contact-links a:hover { color: var(--gold-lt); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 16px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold); }

/* ── Responsive ── */
@media(max-width:900px){
  nav { display: none; }
  .hamburger { display: flex; }
}
@media(max-width:640px){
  .section { padding: 56px 0; }
  .hero { min-height: 460px; }
  .deals-grid, .cards-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 28px; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }
.fade-up-5 { animation-delay: .5s; }

/* ── Scroll indicator ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); }

/* ── Misc ── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.img-round { border-radius: var(--radius); }
.img-shadow { box-shadow: var(--shadow-lg); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width:720px){ .two-col { grid-template-columns: 1fr; } }
