/* CSS Custom Properties */
:root {
  --primary-color: #f59e0b;
  --primary-dark: #d97706;
  --secondary-color: #fbbf24;
  --accent-color: #eab308;
  --pink-light: #fce7f3;
  --pink-medium: #f9a8d4;
  --pink-accent: #ec4899;
  --text-dark: #800020;
  --text-light: #000000;
  --white: #fefdf8;
  --light-gray: #fef7ed;
  --medium-gray: #fed7aa;
  --dark-gray: #9a3412;
  --red-strip: #cc0000;

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Breakpoints */
  --mobile-max: 768px;
  --tablet-max: 1024px;
  --desktop-min: 1025px;

  /* Shadows */
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}


.hcover {
  width: 100vw;
  background-color: var(--light-gray);
  height: 100vh;
  z-index: 1;
  opacity: 0.3;
  position: absolute;
}

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

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

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

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}

/* Button Styles */
.cta-button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-medium);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--white);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (min-width: 1025px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Top Contact Strip */
.top-strip {
  background: var(--red-strip);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 15px;
  font-weight: 900;
}

.top-strip-left {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.top-strip-link {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--transition-fast);
}

.top-strip-link:hover {
  opacity: 0.8;
  color: var(--white);
}

.phone-icon,
.email-icon {
  font-size: 0.9rem;
}

.top-strip-right {
  font-weight: 500;
  text-align: right;
}

/* Responsive Top Strip */
@media (max-width: 768px) {
  .top-strip {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  .top-strip-content {
    padding: 0 var(--spacing-sm);
    flex-direction: column;
    gap: 4px;
  }

  .top-strip-left {
    gap: var(--spacing-md);
  }

  .top-strip-right {
    text-align: center;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .top-strip-left {
    flex-direction: column;
    gap: 2px;
  }
}

/* Header and Navigation Styles */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 100vw;
  margin: 0 auto;
  background-color: #ffffff;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
  scale: 1.5;
  padding-left: 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
}

.nav-link {
  color: #000000;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(245, 158, 11, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav {
    padding: var(--spacing-sm);
  }

  .nav-logo {
    height: 40px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: left var(--transition-medium);
    box-shadow: var(--shadow-medium);
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-md);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-link {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1.1rem;
    color: var(--text-dark);
  }
}

/* 
Hero Section Styles */


.hero {
  min-height: calc(100vh - 120px);
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 40vw;
  padding: var(--spacing-xl);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  color: var(--secondary-color);
  z-index: 5;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero .cta-button {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.1rem;
  padding: var(--spacing-md) var(--spacing-xl);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-medium);
}

.hero .cta-button:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 110px);
    margin-top: 110px;
    background: url('images/phonebg.png');
    background-size: cover;
    background-position: top;
    background-attachment: scroll;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
  }

  .hero-content {
    max-width: 800px;
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
    z-index: 6;
    margin-top:20vh;
  }

  .hero-title {
    font-size: 3rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
  }

  .hero .cta-button {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* Services Section Styles */
.services {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: #fffbeb;
  padding: var(--spacing-xl);
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  border: 1px solid #fef3c7;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-accent), var(--primary-color));
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
  transition: transform var(--transition-medium);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Services Grid */
@media (max-width: 768px) {
  .services {
    padding: var(--spacing-xl) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .service-card {
    padding: var(--spacing-lg);
  }

  .service-icon {
    font-size: 2.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Gallery Section Styles */
.gallery {
  padding-top: 20px;
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-light) 50%, var(--light-gray) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 200px;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  cursor: pointer;
}

/* Masonry layout - different heights for variety */
.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-row: span 1;
}

.gallery-item:nth-child(3) {
  grid-row: span 3;
}

.gallery-item:nth-child(4) {
  grid-row: span 1;
}

.gallery-item:nth-child(5) {
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-row: span 1;
}

.gallery-item:nth-child(7) {
  grid-row: span 2;
}

.gallery-item:nth-child(8) {
  grid-row: span 1;
}

.gallery-item:nth-child(9) {
  grid-row: span 2;
}

.gallery-item:nth-child(10) {
  grid-row: span 3;
}

.gallery-item:nth-child(11) {
  grid-row: span 1;
}

.gallery-item:nth-child(12) {
  grid-row: span 2;
}

.gallery-item:nth-child(13) {
  grid-row: span 1;
}

.gallery-item:nth-child(14) {
  grid-row: span 2;
}

.gallery-item:nth-child(15) {
  grid-row: span 1;
}

.gallery-item:nth-child(16) {
  grid-row: span 2;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  display: none;
}

.gallery-caption {
  display: none;
}

/* Responsive Gallery Grid */
@media (max-width: 768px) {
  .gallery {
    padding: var(--spacing-xl) 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 180px;
    gap: var(--spacing-md);
  }

  /* Reset masonry spans for mobile - simpler layout */
  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(2) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(3) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(5) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(6) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(7) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(8) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(9) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(10) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(11) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(12) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(13) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(14) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(15) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(16) {
    grid-row: span 1;
  }

  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
  }

  .gallery-caption {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: var(--spacing-xs);
  }

  /* Masonry layout for phones - shorter images */
  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(2) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(3) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-row: span 3;
  }

  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(6) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(7) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(8) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(9) {
    grid-row: span 3;
  }

  .gallery-item:nth-child(10) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(11) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(12) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(13) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(14) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(15) {
    grid-row: span 3;
  }

  .gallery-item:nth-child(16) {
    grid-row: span 2;
  }
}

/* Ligh
tbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn var(--transition-medium);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  animation: zoomIn var(--transition-medium);
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-heavy);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 107, 53, 0.8);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  padding: var(--spacing-sm);
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  pointer-events: all;
}

.lightbox-prev {
  margin-left: -60px;
}

.lightbox-next {
  margin-right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 107, 53, 0.8);
  transform: scale(1.1);
}

/* Lightbox Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Lightbox Indicators */
.lightbox-indicators {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.lightbox-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-indicator.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

.lightbox-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 85%;
  }

  .lightbox-close {
    top: -35px;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    margin-left: -50px;
  }

  .lightbox-next {
    margin-right: -50px;
  }

  .lightbox-indicators {
    bottom: -40px;
    gap: 8px;
  }

  .lightbox-indicator {
    width: 10px;
    height: 10px;
  }
}

/* Conta
ct Section Styles */
.contact {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--light-gray) 100%);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.contact-card {
  background: #fffbeb;
  padding: var(--spacing-xl);
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  border: 1px solid #fef3c7;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.contact-title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-detail {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--primary-color);
}

.contact-message {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact {
    padding: var(--spacing-xl) 0;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  .contact-card {
    padding: var(--spacing-lg);
  }

  .contact-icon {
    font-size: 2rem;
  }

  .contact-cta {
    padding: var(--spacing-lg);
  }

  .contact-message {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer S
tyles */
.footer {
  background: linear-gradient(135deg, var(--text-dark), var(--dark-gray));
  color: var(--white);
  text-align: center;
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-xxl);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp-btn {
  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: var(--shadow-heavy);
  transition: all var(--transition-medium);
  z-index: 1000;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.sticky-whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-text {
  display: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-medium);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.back-to-top:active {
  transform: translateY(-1px);
}

/* Responsive Footer and Back to Top */
@media (max-width: 768px) {
  .footer {
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
  }

  .sticky-whatsapp-btn {
    bottom: 80px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon svg {
    width: 22px;
    height: 22px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* Main content spacing to account for fixed header and top strip */
.main {
  padding-top: 0;
  /* Hero section will handle its own positioning */
}

/* Only apply spacing to sections after the hero */
.main section:not(.hero) {
  padding-top: 50px;
  /* 40px for top strip + 80px for header */
}

@media (max-width: 768px) {
  .main section:not(.hero) {
    padding-top: 110px;
    /* Adjusted for mobile with smaller top strip */
  }

  .header {
    top: 50px;
    /* Adjusted for mobile top strip height */
  }

  .nav-menu {
    top: 120px;
    /* Adjusted for mobile menu position */
  }
}

/* Animation Styles */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card:nth-child(2) {
  transition-delay: 0.2s;
}

.service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.service-card:nth-child(4) {
  transition-delay: 0.4s;
}

.service-card:nth-child(5) {
  transition-delay: 0.5s;
}

.service-card:nth-child(6) {
  transition-delay: 0.6s;
}

.gallery-item:nth-child(odd) {
  transition-delay: 0.1s;
}

.gallery-item:nth-child(even) {
  transition-delay: 0.2s;
}

.contact-card:nth-child(1) {
  transition-delay: 0.1s;
}

.contact-card:nth-child(2) {
  transition-delay: 0.2s;
}

.contact-card:nth-child(3) {
  transition-delay: 0.3s;
}

.contact-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* Hero content initial state */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

/* Image loading animation */
img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* Ripple effect for buttons */
.cta-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* YouTube Section Styles */
.youtube {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--pink-light) 50%, var(--white) 100%);
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.youtube-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-medium);
  border: 1px solid #fef3c7;
}

.youtube-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.youtube-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Responsive YouTube Grid */
@media (max-width: 768px) {
  .youtube {
    padding: var(--spacing-xl) 0;
  }

  .youtube-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .youtube-embed {
    padding-bottom: 56.25%;
    /* Maintain 16:9 aspect ratio on mobile */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Loading states */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Smooth transitions for all interactive elements */
* {
  transition-property: transform, opacity, background-color, color, box-shadow;
  transition-duration: var(--transition-fast);
  transition-timing-function: ease;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  .animate-element,
  .hero-content,
  img,
  .ripple {
    transition: none !important;
    animation: none !important;
  }
}

/* 
Additional Accessibility Improvements */
/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #d63031;
    --text-dark: #000000;
    --text-light: #2d3436;
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.5);
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: rgba(214, 48, 49, 0.2);
  }
}

/* Focus management improvements */
.nav-toggle:focus,
.gallery-item:focus,
.service-card:focus,
.contact-card:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Ensure sufficient color contrast */
.hero-subtitle {
  color: rgba(255, 255, 255, 1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Performance optimizations */
.gallery-image {
  will-change: transform;
}

.service-card,
.gallery-item,
.contact-card {
  will-change: transform, box-shadow;
}

/* Lazy loading placeholder */
.gallery-image[loading="lazy"] {
  background: var(--medium-gray);
  min-height: 200px;
}

/* Print styles */
@media print {

  .header,
  .nav-toggle,
  .back-to-top,
  .lightbox {
    display: none !important;
  }

  .hero {
    background: none !important;
    color: var(--text-dark) !important;
    min-height: auto !important;
  }

  .main {
    padding-top: 0 !important;
  }

  .service-card,
  .contact-card {
    box-shadow: none !important;
    border: 1px solid var(--medium-gray) !important;
  }
}

/* Cross
-browser compatibility improvements */
/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
  .hero {
    background-attachment: scroll;
    /* Fix for iOS Safari */
  }

  .nav-toggle {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Firefox-specific fixes */
@-moz-document url-prefix() {
  .gallery-grid {
    gap: var(--spacing-lg);
  }
}

/* Edge/IE compatibility */
@supports not (display: grid) {

  .services-grid,
  .gallery-grid,
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
  }

  .service-card,
  .gallery-item,
  .contact-card {
    flex: 1 1 300px;
  }
}

/* Additional responsive refinements */
@media (max-width: 320px) {
  :root {
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.25rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .nav-brand h1 {
    font-size: 1.1rem;
  }

  .service-card,
  .contact-card {
    padding: var(--spacing-md);
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .service-card:hover,
  .gallery-item:hover,
  .contact-card:hover {
    transform: none;
  }

  .service-card,
  .gallery-item,
  .contact-card,
  .cta-button,
  .nav-link {
    min-height: 44px;
    /* Minimum touch target size */
  }

  .gallery-overlay {
    transform: translateY(0);
    opacity: 0.9;
  }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Large screen optimizations */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }

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

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

/* Reduced data usage for slow connections */
@media (prefers-reduced-data: reduce) {
  .hero {
    background-image: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  }

  .gallery-image {
    background: var(--medium-gray);
  }
}

/* Dark mode support disabled - using light theme only */
/* @media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --light-gray: #2d2d2d;
    --medium-gray: #404040;
    --text-dark: #ffffff;
    --text-light: #cccccc;
  }

  .header {
    background: rgba(26, 26, 26, 0.95);
  }

  .service-card,
  .contact-card {
    background: var(--medium-gray);
    border-color: #555;
  }

  .lightbox {
    background-color: rgba(0, 0, 0, 0.95);
  }
} */

/* A
bout Section Styles */
.about {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 50%, var(--light-gray) 100%);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

.about-description {
  max-width: 900px;
  margin: var(--spacing-xl) auto 0;
  text-align: left;
}

.about-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.about-card {
  background: #fffbeb;
  padding: var(--spacing-xl);
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  border: 1px solid var(--medium-gray);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
  transition: transform var(--transition-medium);
}

.about-card:hover .about-icon {
  transform: scale(1.1);
}

.about-card-title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-card-text {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  align-items: start;
  background: var(--white);
  padding: var(--spacing-xxl);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--medium-gray);
}

.story-content {
  padding-right: var(--spacing-lg);
}

.story-title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
}

.story-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin-top: var(--spacing-sm);
  border-radius: 2px;
}

.story-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.story-text:last-child {
  margin-bottom: 0;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  color: var(--white);
  transition: transform var(--transition-medium);
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about {
    padding: var(--spacing-xl) 0;
  }

  .about-lead {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  .about-card {
    padding: var(--spacing-lg);
  }

  .about-icon {
    font-size: 2.5rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-lg);
  }

  .story-content {
    padding-right: 0;
  }

  .story-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .story-title::after {
    margin: var(--spacing-sm) auto 0;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .stat-item {
    padding: var(--spacing-md);
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-story {
    padding: var(--spacing-md);
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: var(--spacing-sm);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

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

/* Animation for about cards */
.about-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.about-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for about cards */
.about-card:nth-child(1) {
  transition-delay: 0.1s;
}

.about-card:nth-child(2) {
  transition-delay: 0.2s;
}

.about-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Fix f
or hero and about section spacing */
.hero {
  position: relative;
  z-index: 1;
}

.about {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

/* Ensure sections don't overlap */
section {
  position: relative;
  clear: both;
}

/* Additional spacing fix for mobile */
@media (max-width: 768px) {
  .about {
    margin-top: 0;
  }
}

/* Google
 Form Integration Styles */
.contact-form-section {
  margin: var(--spacing-xxl) 0;
  padding: var(--spacing-xxl);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--medium-gray);
}

.form-section-title {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.form-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}

.form-section-description {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.google-form-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--medium-gray);
}

.google-form-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  background: var(--white);
  transition: opacity var(--transition-medium);
}

.google-form-iframe:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

.form-fallback {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.fallback-text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.form-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.form-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* Loading state for iframe */
.google-form-container::before {
  content: 'Loading form...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 1.1rem;
  z-index: 1;
  pointer-events: none;
}

.google-form-iframe[src*="docs.google.com"]+.google-form-container::before {
  display: none;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
  .contact-form-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
  }

  .form-section-title {
    font-size: 1.5rem;
  }

  .form-section-description {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }

  .google-form-iframe {
    height: 500px;
  }

  .form-fallback {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
  }

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

@media (max-width: 480px) {
  .contact-form-section {
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
  }

  .google-form-iframe {
    height: 450px;
  }

  .form-section-title {
    font-size: 1.25rem;
  }
}

/* Enhanced accessibility for form */
@media (prefers-reduced-motion: reduce) {
  .google-form-iframe {
    transition: none;
  }
}

/* High contrast mode support for form */
@media (prefers-contrast: high) {
  .google-form-container {
    border-color: var(--text-dark);
    border-width: 3px;
  }

  .form-fallback {
    background: var(--light-gray);
    border-color: var(--text-dark);
  }
}

/* Print styles for form section */
@media print {
  .contact-form-section {
    display: none;
  }
}

/* S
ticky Call Button */
.sticky-call-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  padding: var(--spacing-sm) var(--spacing-xs);
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-heavy);
  z-index: 999;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 600;
  font-size: 0.8rem;
  min-width: 50px;
  overflow: hidden;
  animation: pulse-glow 2s infinite;
}

.sticky-call-btn:hover {
  transform: translateY(-50%) translateX(5px);
  box-shadow: var(--shadow-heavy), 0 0 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
}

.sticky-call-btn:active {
  transform: translateY(-50%) translateX(2px);
}

.call-icon {
  font-size: 1rem;
  animation: bounce 1s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

.call-text {
  white-space: nowrap;
  opacity: 0;
  width: 0;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.sticky-call-btn:hover .call-text {
  opacity: 1;
  width: auto;
  padding-left: var(--spacing-xs);
}

/* Animations for sticky call button */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: var(--shadow-heavy), 0 0 0 0 rgba(255, 107, 53, 0.7);
  }

  50% {
    box-shadow: var(--shadow-heavy), 0 0 0 8px rgba(255, 107, 53, 0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-2px);
  }
}

/* Responsive sticky call button */
@media (max-width: 768px) {
  .sticky-call-btn {
    padding: var(--spacing-sm) var(--spacing-xs);
    font-size: 0.8rem;
    border-radius: 0 20px 20px 0;
    min-width: 50px;
  }

  .call-icon {
    font-size: 1rem;
  }

  .sticky-call-btn:hover .call-text {
    padding-left: var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  .sticky-call-btn {
    padding: var(--spacing-xs);
    border-radius: 0 15px 15px 0;
    min-width: 45px;
  }

  .call-icon {
    font-size: 0.9rem;
  }

  .call-text {
    font-size: 0.75rem;
  }
}

/* Accessibility improvements for sticky call button */
.sticky-call-btn:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .sticky-call-btn {
    border: 2px solid var(--white);
    background: var(--primary-color);
  }

  .sticky-call-btn:hover {
    border-color: var(--accent-color);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .sticky-call-btn {
    animation: none;
  }

  .call-icon {
    animation: none;
  }

  @keyframes pulse-glow {

    0%,
    100% {
      box-shadow: var(--shadow-heavy);
    }
  }
}

/* Print styles - hide sticky button */
@media print {
  .sticky-call-btn {
    display: none;
  }
}

/* Ensure sticky button doesn't interfere with other elements */
.sticky-call-btn {
  pointer-events: all;
}

/* Alternative positioning for very small screens */
@media (max-height: 400px) {
  .sticky-call-btn {
    top: 60%;
  }
}

/* Ensure button is above other fixed elements but below modals */
.sticky-call-btn {
  z-index: 999;
}

.lightbox {
  z-index: 2000;
}

.header {
  z-index: 1000;
}