/* Base Variables */
:root {
  --brand-red: #FF4545;
  --brand-red-hover: #e03c3c;
  --brand-blue: #1F2C5B;
  --brand-light: #EEEDED;
  --white: #FFFFFF;
  --text-dark: #222222;
  --text-muted: #555555;
  --border-color: #DDE2E5;
  --radius: 12px;
  --transition: all 0.2s ease-in-out;
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  padding-top: 60px;
}

a {
  text-decoration: none;
  color: var(--brand-blue);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Helpers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title.left-align {
  text-align: left;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.p-4 { padding: 2rem; }

.bg-light { background-color: #F8F9FA; }
.bg-blue { background-color: var(--brand-blue); }
.border-top { border-top: 1px solid var(--border-color); }
.border-radius { border-radius: var(--radius); }

.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.8) !important; }
.text-yellow { color: #FFD700 !important; }

.hidden { display: none !important; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px; /* Pill shaped for fun energy */
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--brand-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 69, 69, 0.4);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 69, 69, 0.5);
}

.btn-xl {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

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

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(255, 69, 69, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 69, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 69, 69, 0); }
}

/* Nav & Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  display: flex;
  align-items: center;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 35px;
}

.urgent-badge {
  background: var(--brand-red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-top {
  background-color: #FFF3CD;
  color: #856404;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #FFEEBA;
}

/* Hero Summer */
.hero-summer {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 4rem 1rem;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(15,20,40,0.1) 0%, rgba(15,20,40,0.5) 100%);
  z-index: 1;
}

.hero-content-summer {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-summer h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-summer .subheadline {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.pill-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.trust-line {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
  .hero-summer h1 { font-size: 4.5rem; }
  .hero-summer .subheadline { font-size: 1.6rem; }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 99;
  display: block;
}
.text-lg { font-size: 1.1rem; }

@media (min-width: 768px) {
  .mobile-sticky-cta { display: none; }
}

/* Summer Cards (Emoji) */
.summer-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .summer-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .summer-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.summer-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.summer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: var(--brand-red);
}

.emoji-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.summer-card h3 {
  font-size: 1.4rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.summer-card p {
  color: var(--text-muted);
}

/* Visual Photo Stripe */
.photo-stripe {
  width: 100%;
  background: var(--brand-blue);
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .photo-grid-2 { grid-template-columns: 1fr 1fr; }
}

.photo-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-wrapper:hover img {
  transform: scale(1.05);
}

/* Reviews Grid */
.big-stars {
  font-size: 1.5rem;
  color: #FFA41C;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card-real {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--brand-red);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
}

/* Split & Timeline */
.split-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .split-layout { flex-direction: row; }
  .split-text { flex: 1; }
}

.summer-timeline {
  margin-top: 2rem;
  position: relative;
}

.summer-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 16px;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-dot {
  width: 34px; height: 34px;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content h4 {
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin-top: 0.3rem;
}

.perfect-list {
  list-style: none;
  font-size: 1.1rem;
}

.perfect-list li {
  margin-bottom: 1rem;
  display: flex; gap: 0.8rem;
  align-items: flex-start;
}

/* Form Styles */
.form-container {
  max-width: 700px;
}

.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

@media (min-width: 768px) { .form-card { padding: 3rem; } }

.form-row {
  display: flex; flex-direction: column; gap: 1rem;
}

@media (min-width: 768px) {
  .form-row { flex-direction: row; }
  .form-row .form-group { flex: 1; }
}

.form-group { margin-bottom: 1.2rem; }

label {
  display: block; font-weight: 700; margin-bottom: 0.4rem; color: var(--brand-blue);
}

input[type="text"], input[type="email"], input[type="tel"], input[type="file"], select, textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: #FAFAFA;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: var(--white);
}

.success-state {
  text-align: center; padding: 2rem 0;
}

.success-icon {
  font-size: 4rem; color: #FFA41C; margin-bottom: 1rem;
}

.success-state h3 {
  color: var(--brand-blue); font-size: 1.8rem; margin-bottom: 0.5rem;
}

.success-state p { color: var(--text-muted); font-size: 1.1rem; }

/* Footer */
.footer {
  background: #111827;
  color: var(--white);
  padding: 3rem 0;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 1rem;
  filter: grayscale(100%);
  opacity: 0.8;
}

.footer p {
  opacity: 0.6;
  font-size: 0.9rem;
}
