/* =============================================
   BENGAL KITTENS BREEDERS HOME
   Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A0803A;
  --black: #1a1a1a;
  --dark: #222222;
  --grey-dark: #444444;
  --grey: #888888;
  --grey-light: #f0ede8;
  --cream: #FAF7F2;
  --white: #ffffff;
  --green: #2d7a4f;
  --amber: #d97706;
  --red: #b91c1c;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --container: 1200px;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--black);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--grey-dark); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--grey { background: var(--grey-light); }
.section--dark { background: var(--dark); color: var(--white); }
.section--cream { background: var(--cream); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--grey); max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Gold Accent */
.gold { color: var(--gold); }
.gold-bg { background: var(--gold-gradient); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: var(--container); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 60px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--black); line-height: 1.2;
}
.logo-tagline { font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; color: var(--grey-dark);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-cta {
  padding: 10px 20px; border-radius: var(--radius);
  background: var(--gold-gradient); color: var(--black);
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); color: var(--black); }

/* Mobile Nav */
.mobile-menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column;
  gap: 5px; align-items: center;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--black); transition: var(--transition); border-radius: 2px;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 100px 20px 40px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1.1rem; padding: 14px 20px; border-radius: var(--radius); }

/* Trust bar */
.trust-bar {
  background: var(--black); color: var(--white);
  padding: 8px 0; font-size: 0.8rem; text-align: center;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 30px;
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  flex-wrap: wrap;
}
.trust-bar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.trust-bar-item .icon { color: var(--gold); font-size: 1rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-gradient); color: var(--black);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.5); color: var(--black); }
.btn-secondary {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   KITTEN CARDS
   ============================================= */
.kittens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.kitten-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
}
.kitten-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.kitten-card__image {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.kitten-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.kitten-card:hover .kitten-card__image img { transform: scale(1.05); }
.kitten-card__status {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.status--available { background: var(--green); color: var(--white); }
.status--reserved { background: var(--amber); color: var(--white); }
.status--sold { background: var(--red); color: var(--white); }

.kitten-card__body { padding: 20px; }
.kitten-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem; margin-bottom: 8px;
}
.kitten-card__details { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.kitten-card__detail {
  font-size: 0.82rem; color: var(--grey);
  display: flex; align-items: center; gap: 4px;
}
.kitten-card__price {
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold-dark); margin-bottom: 16px;
  font-family: var(--font-heading);
}
.kitten-card__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.badge {
  font-size: 0.72rem; padding: 3px 8px; border-radius: 4px;
  font-weight: 600; white-space: nowrap;
}
.badge--gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.3); }
.badge--green { background: rgba(45,122,79,0.1); color: var(--green); border: 1px solid rgba(45,122,79,0.2); }

/* =============================================
   TRUST BADGES SECTION
   ============================================= */
.trust-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.trust-badge {
  text-align: center; padding: 30px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-badge__icon { font-size: 2.5rem; margin-bottom: 12px; }
.trust-badge__title { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 8px; }
.trust-badge__text { font-size: 0.85rem; color: var(--grey); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--black); }
.form-label span { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e0dbd0; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--black); background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message { padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; margin-top: 16px; display: none; }
.form-message--success { background: rgba(45,122,79,0.1); color: var(--green); border: 1px solid rgba(45,122,79,0.2); }
.form-message--error { background: rgba(185,28,28,0.1); color: var(--red); border: 1px solid rgba(185,28,28,0.2); }

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumb {
  padding: 12px 0; font-size: 0.85rem;
  color: var(--grey); border-bottom: 1px solid var(--grey-light);
}
.breadcrumb-inner { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--black); font-weight: 500; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--black); color: #ccc; }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #aaa; }
.footer-heading {
  font-family: var(--font-heading);
  color: var(--gold); font-size: 1rem;
  margin-bottom: 16px; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #aaa; font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: #aaa; }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #aaa;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; font-size: 0.8rem; color: #666;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-licence { color: var(--gold); font-weight: 600; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: var(--black); color: var(--white);
  padding: 60px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: #aaa; font-size: 1.1rem; max-width: 650px; margin: 0 auto; }

/* =============================================
   COUNTDOWN TIMER
   ============================================= */
.countdown-banner {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  color: var(--white); padding: 12px 20px;
  border-radius: var(--radius); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
}
.countdown-timer { display: flex; gap: 8px; }
.countdown-unit {
  background: rgba(255,255,255,0.2); border-radius: 6px;
  padding: 4px 8px; text-align: center; min-width: 44px;
}
.countdown-unit span { display: block; }
.countdown-unit .num { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.countdown-unit .label { font-size: 0.65rem; text-transform: uppercase; opacity: 0.8; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--grey-dark); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; justify-content: space-between; align-items: center; }
.review-author-name { font-weight: 700; font-size: 0.9rem; color: var(--black); }
.review-author-location { font-size: 0.8rem; color: var(--grey); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #e8e3da; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 1rem;
  font-weight: 600; color: var(--black); gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-icon { flex-shrink: 0; font-size: 1.2rem; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--grey-dark); }

/* =============================================
   MAP
   ============================================= */
.delivery-map {
  width: 100%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--grey-light); min-height: 400px;
  position: relative;
}
.uk-map-svg { width: 100%; height: auto; }
.map-covered { fill: rgba(201,168,76,0.4); stroke: var(--gold); stroke-width: 1; }
.map-label { font-size: 10px; fill: var(--black); font-weight: 600; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; }
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: #aaa; margin-top: 6px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .kittens-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 20px; }
  .trust-bar-inner { flex-direction: column; gap: 8px; align-items: center; }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Last Updated */
.last-updated { font-size: 0.8rem; color: var(--grey); text-align: right; margin-top: 8px; }

/* Loading spinner */
.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--black); border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; border: none;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: var(--gold-light); }
