/* ==========================================================================
   Handy Helper Maintenance - Mobile-First Responsive Styles
   ========================================================================== */

:root {
  --primary: #D4AF37;
  --primary-dark: #B8860B;
  --primary-light: #E5C158;
  --secondary: #1A1A1A;
  --secondary-light: #2D2D2D;
  --accent: #FFD700;
  --dark: #0D0D0D;
  --gray: #6B6B6B;
  --light-gray: #9CA3AF;
  --off-white: #F5F5F5;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
  --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: 'Montserrat', -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(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-logo {
  height: 240px;
  width: auto;
  object-fit: contain;
  animation: pulse 1.5s 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 pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@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-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

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

.section-subtitle {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

.btn svg {
  width: 18px;
  height: 18px;
}

.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: 44px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  box-shadow: var(--shadow);
  transition: top 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.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: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.logo img {
  height: 90px;
  width: auto;
  border-radius: var(--radius);
  object-fit: contain;
}

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

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--white);
  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: 113px;
  left: 0;
  right: 0;
  background: #000000;
  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: 500;
  color: var(--white);
  border-bottom: 1px solid var(--secondary-light);
}

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

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

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

/* Offer Banner */
.offer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 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-banner.hidden ~ .header {
  top: 0;
}

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

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

.offer-cta {
  background: var(--white);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  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;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 20px 60px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 50%, #000000 100%);
  z-index: -1;
}

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

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.hero h1 .highlight {
  color: var(--primary);
}

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

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

.hero-image {
  margin-top: 2rem;
}

.hero-image img {
  max-width: 1050px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  animation: float 4s ease-in-out infinite;
  object-fit: contain;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

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

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

/* Services Section */
.services {
  padding: 50px 0;
  background: var(--white);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left;
}

.service-card {
  background: var(--off-white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: var(--primary);
  border-radius: var(--radius);
  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;
}

/* Why Choose Us Section */
.why-choose {
  padding: 50px 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.why-choose .section-label {
  color: var(--accent);
}

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

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

.why-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

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

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

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

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

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

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

.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.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

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

/* 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: 48px;
  height: 48px;
  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);
}

/* Testimonials Section */
.testimonials {
  padding: 50px 0;
  background: var(--white);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left;
}

.testimonial-card {
  background: var(--off-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.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: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

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

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

/* Booking Section */
.booking {
  padding: 50px 0;
  background: var(--off-white);
  text-align: center;
}

.booking-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

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

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

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

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

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

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

.booking-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

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

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

.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: 50px 0;
  background: var(--white);
}

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

.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: 30px;
}

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

.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(--off-white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
}

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

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

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

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

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

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

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

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

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

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

/* Service Areas Section */
.service-areas {
  padding: 50px 0;
  background: var(--white);
  text-align: center;
}

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

.area-card {
  background: var(--off-white);
  padding: 25px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.area-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.area-card h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

/* FAQ Section */
.faq {
  padding: 50px 0;
  background: var(--off-white);
  text-align: center;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--gray);
  line-height: 1.7;
}

/* Map Section */
.map-section {
  padding: 50px 0 0;
  background: var(--off-white);
  text-align: center;
}

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

.map-wrapper iframe {
  display: block;
}

/* Suburb/Area Landing Pages */
.area-hero {
  padding: 140px 20px 60px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  text-align: center;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--light-gray);
}

.area-hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--white);
}

.area-hero h1 .highlight {
  color: var(--primary);
}

.area-hero p {
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto 25px;
}

.area-content {
  padding: 40px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.content-main h2 {
  margin-bottom: 20px;
  color: var(--dark);
}

.content-main h3 {
  margin: 30px 0 15px;
  color: var(--dark);
}

.content-main p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.8;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.services-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--off-white);
  color: var(--gray);
}

.services-list li strong {
  color: var(--dark);
}

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

.benefit {
  background: var(--off-white);
  padding: 20px;
  border-radius: var(--radius);
}

.benefit strong {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
}

.benefit p {
  margin: 0;
  font-size: 0.9rem;
}

.cta-box {
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 40px;
}

.cta-box h3 {
  color: var(--white);
  margin: 0 0 10px;
}

.cta-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

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

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

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--off-white);
  padding: 25px;
  border-radius: var(--radius-lg);
}

.sidebar-card h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.sidebar-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.sidebar-card a {
  color: var(--primary);
}

.area-links {
  list-style: none;
  padding: 0;
}

.area-links li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

@media (min-width: 768px) {
  .area-hero h1 {
    font-size: 2.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr 300px;
  }
}

@media (min-width: 1024px) {
  .area-hero {
    padding: 140px 40px 80px;
  }

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

  .area-content {
    padding: 50px 0;
  }

  .content-grid {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
}

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

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

.footer-brand img {
  height: 240px;
  width: auto;
  border-radius: var(--radius);
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

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

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

.footer-links a,
.footer-services li {
  color: var(--light-gray);
  font-size: 0.95rem;
}

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

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

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

.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;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  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: 25px;
  right: 25px;
  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: 98;
}

.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: 25px;
    background: transparent;
    box-shadow: none;
  }

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

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

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

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

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

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

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

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

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

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

  .service-areas,
  .faq {
    padding: 60px 0;
  }

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

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

  .booking-calendar {
    flex: 1;
  }

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

  .contact-info {
    flex: 1;
  }

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

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

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

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

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

  .hero {
    padding: 160px 60px 100px;
    flex-direction: row;
    text-align: left;
    gap: 30px;
  }

  .hero-content {
    flex: 1;
  }

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

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-image {
    flex: 1;
    margin-top: 0;
  }

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

  .hero-stats {
    justify-content: flex-start;
  }

  .services,
  .why-choose,
  .gallery,
  .testimonials,
  .booking,
  .contact {
    padding: 60px 0;
  }

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

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

  .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,
  .offer-banner,
  .hero-buttons,
  .booking,
  .lightbox,
  .whatsapp-float,
  .scroll-top {
    display: none !important;
  }

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