/* ============================================
   Quality Tent Rental — Main Stylesheet
   ============================================ */

:root {
  --navy: #002868;
  --navy-light: #003899;
  --gold: #BF0A30;
  --gold-light: #D91E36;
  --bg: #F5F5F5;
  --white: #ffffff;
  --text: #1A1A1A;
  --text-light: #666;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { line-height: 1.7; }
a { color: inherit; }

/* --- Header --- */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 58px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  transition: color var(--transition);
  font-weight: 600;
}
nav a:hover,
nav a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero (Homepage) --- */
.hero {
  background: url('../images/IMG_20210807_111724422.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,16,64,0.9) 0%, rgba(0,40,104,0.82) 100%);
  opacity: 1;
}
.hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: #FFC845; }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 1.5rem; font-size: 0.9rem; opacity: 0.7; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #001040 0%, #002868 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.9; max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; opacity: 0.7; margin-bottom: 1rem; }
.breadcrumb a { color: #FFC845; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* --- Section Layout --- */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { color: var(--navy); margin-bottom: 0.5rem; }
.section-title p { color: var(--text-light); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 0.9rem auto; border-radius: 2px; }

/* --- Stats Bar --- */
.stats-bar { background: var(--white); padding: 3rem 2rem; border-bottom: 1px solid #eee; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { color: var(--text-light); font-size: 0.9rem; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--gold);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.13); }
.service-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.service-card p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }
.service-link { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.service-link:hover { text-decoration: underline; }

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
}
.feature { text-align: center; }
.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.7rem;
}
.feature h3 { color: var(--navy); margin-bottom: 0.5rem; }
.feature p { color: var(--text-light); font-size: 0.95rem; }

/* --- Service Area --- */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-area-map iframe {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
}
.service-area-text h2 { color: var(--navy); margin-bottom: 1rem; }
.service-area-text p { color: var(--text-light); margin-bottom: 1rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.city-tag {
  background: var(--navy);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* --- Photo Gallery --- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: #111;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--gold);
}
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 1rem; line-height: 1.75; }
.testimonial-author { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.stars { color: #FFD700; font-size: 1.15rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  user-select: none;
  font-family: inherit;
}
.faq-toggle {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer p { padding: 0 1.5rem 1.2rem; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #001040 0%, #002868 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner > .container > p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-contact-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}
.cta-contact-item a { color: #FFC845; text-decoration: none; }
.cta-contact-item a:hover { text-decoration: underline; }

/* --- Footer --- */
footer {
  background: #001040;
  color: #c0c0c0;
  padding: 3.5rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  line-height: 0;
}
.footer-logo-wrap img {
  height: 50px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}
footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }
footer a { color: #c0c0c0; text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
footer a:hover { color: #FFC845; }
.footer-nap p { font-size: 0.9rem; margin-bottom: 0.45rem; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #888;
}

/* --- Inner Page Content --- */
.content-section { padding: 4rem 2rem; }
.content-section h2 { color: var(--navy); margin-bottom: 1rem; }
.content-section h3 { color: var(--navy); margin-bottom: 0.7rem; margin-top: 1.75rem; }
.content-section p { color: var(--text-light); margin-bottom: 1rem; }
.content-section ul { margin-left: 1.5rem; color: var(--text-light); margin-bottom: 1rem; }
.content-section li { margin-bottom: 0.5rem; line-height: 1.7; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.info-box.gold-border { border-left: 4px solid var(--gold); }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h2 { color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
  background: var(--bg);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.25rem; }
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-item h4 { color: #FFC845; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; font-family: inherit; }
.contact-info-item p, .contact-info-item a {
  color: #d0d8e8;
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-info-item a:hover { color: #FFC845; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .two-col, .two-col-wide, .contact-grid { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .header-inner { padding: 0.6rem 1.25rem; }
  .section, .content-section { padding: 3rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-contact-row { flex-direction: column; gap: 1rem; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
}
