/* ==========================================================================
   Alex the Handyman - Mobile-First Responsive Styles
   ========================================================================== */

:root {
  --primary: #E85C4A;
  --primary-dark: #D14A39;
  --secondary: #4A7C59;
  --secondary-light: #6B9B7A;
  --accent: #F4A940;
  --dark: #2D3436;
  --gray: #636E72;
  --light-gray: #B2BEC3;
  --off-white: #F8F9FA;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

/* Loading Screen */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 120px;
  height: 120px;
  animation: bounce 1s ease-in-out infinite;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--off-white);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  flex-direction: column;
  gap: 0;
  display: none;
  box-shadow: var(--shadow);
}

.nav-menu.active {
  display: flex;
}

.nav-menu li a {
  display: block;
  padding: 15px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--off-white);
}

.nav-menu li a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 10px;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* Hero Section */
.hero {
  padding: 140px 20px 60px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-image {
  order: -1;
  margin-bottom: 2rem;
}

.hero-image img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 10px 30px rgba(232, 92, 74, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Services Section */
.services {
  padding: 60px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--off-white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
  padding: 60px 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 15px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: var(--white);
}

/* Booking Section */
.booking {
  padding: 60px 0;
  background: var(--white);
}

.booking-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.booking-info h3 {
  margin-bottom: 25px;
  color: var(--dark);
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.booking-step strong {
  display: block;
  margin-bottom: 4px;
}

.booking-step p {
  font-size: 0.9rem;
  color: var(--gray);
}

.booking-note {
  background: var(--secondary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 20px;
}

.booking-note strong {
  display: block;
  margin-bottom: 5px;
}

.booking-note p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.booking-calendar {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  min-height: 500px;
  overflow: hidden;
}

.calendar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
  color: var(--gray);
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: var(--off-white);
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  min-width: 24px;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
}

.contact-item a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--off-white);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

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

.form-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-success.show {
  display: flex;
}

.form-success h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Map Section */
.map-section {
  padding: 60px 0 0;
  background: var(--white);
}

.map-wrapper {
  margin-top: 30px;
}

.map-wrapper iframe {
  display: block;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--light-gray);
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--light-gray);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p,
.footer-contact a {
  color: var(--light-gray);
  margin-bottom: 8px;
  display: block;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.85rem;
  margin-bottom: 5px;
}

/* Offer Banner */
.offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 12px 50px 12px 20px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.offer-banner.hidden {
  transform: translateY(-100%);
}

.offer-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.offer-text {
  font-size: 0.9rem;
}

.offer-cta {
  background: var(--white);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.offer-cta:hover {
  background: var(--dark);
  color: var(--white);
}

.offer-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.offer-close:hover {
  opacity: 1;
}

/* Adjust header when banner is visible */
.header {
  top: 44px;
  transition: top 0.3s ease;
}

.offer-banner.hidden + .header,
body:not(:has(.offer-banner:not(.hidden))) .header {
  top: 0;
}

/* Why Choose Me Section */
.why-choose {
  padding: 60px 0;
  background: var(--secondary);
  color: var(--white);
}

.why-choose .section-title {
  color: var(--white);
}

.why-choose .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.why-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.why-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Before/After Slider Section */
.before-after {
  padding: 60px 0;
  background: var(--white);
}

.ba-slider-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 0;
}

.ba-label {
  position: absolute;
  bottom: 15px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ba-before .ba-label {
  left: 15px;
}

.ba-after .ba-label {
  right: 15px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 10;
  transform: translateX(-50%);
}

.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ba-handle-circle svg {
  width: 16px;
  height: 16px;
  color: var(--dark);
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.testimonial-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Tablet Styles (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 30px;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu li a {
    padding: 0;
    border: none;
  }

  .nav-cta {
    margin-top: 0;
  }

  .hero {
    padding: 120px 40px 80px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-image img {
    width: 280px;
    height: 280px;
  }

  .services {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gallery {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .why-choose {
    padding: 80px 0;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .before-after {
    padding: 80px 0;
  }

  .ba-slider-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .booking {
    padding: 80px 0;
  }

  .booking-wrapper {
    flex-direction: row;
  }

  .booking-info {
    flex: 0 0 350px;
  }

  .booking-calendar {
    flex: 1;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-wrapper {
    flex-direction: row;
  }

  .contact-info {
    flex: 1;
  }

  .contact-form-wrapper {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
    gap: 20px;
  }

  .form-row .form-group {
    flex: 1;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ==========================================================================
   Desktop Styles (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }

  .hero {
    padding: 140px 60px 100px;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-image img {
    width: 320px;
    height: 320px;
  }

  .services {
    padding: 100px 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .gallery {
    padding: 100px 0;
  }

  .why-choose,
  .before-after,
  .testimonials {
    padding: 100px 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .booking,
  .contact {
    padding: 100px 0;
  }

  .contact-form {
    padding: 40px;
  }
}

/* ==========================================================================
   Utility & Animation Classes
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Print Styles */
@media print {
  .header,
  .hero-buttons,
  .booking,
  .lightbox {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px;
  }
}
