/* css/style.css - Modern Minimalistic Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color System */
  --primary-color: #2D6356;
  --primary-light: #3A7D6B;
  --primary-dark: #1F4B3F;
  --dark-color: #2D6356;
  --accent-color: #4ECDC4;
  --accent-light: #7FDBDA;
  --accent-dark: #3ABAB0;
  --text-primary: #2C3E50;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F8FC;
  --bg-tertiary: #E8EBF0;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(45, 99, 86, 0.15);
  
  /* Typography Scale */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-headings: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --font-size-3xl: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --font-size-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --font-size-5xl: clamp(3rem, 2.5rem + 3vw, 5rem);
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: 100px;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headings);
  line-height: 1.2;
  margin: 0 0 var(--space-lg) 0;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

h2 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

h6 {
  font-size: var(--font-size-base);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Fallback for when JavaScript is disabled or fails */
.no-js .fade-in,
.fade-in:not(.animate):not(.slide-in-left):not(.slide-in-right) {
  animation: fadeInFallback 0.8s ease-out forwards;
}

@keyframes fadeInFallback {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure text is visible after page load even if animations fail */
body.loaded .fade-in:not(.animate) {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

/* Modern Card System */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px var(--shadow-light), 0 1px 2px var(--shadow-medium);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium), 0 2px 4px var(--shadow-dark);
}
header {
  background: rgba(45, 99, 86, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  transition: padding var(--transition-base);
}
header .logo {
  height: 80px;
  display: block;
  margin-right: -2px;
  clip-path: inset(0 2px 0 0);
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 30px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: block;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
nav ul li a.active {
  background-color: var(--primary-color);
  color: white;
}
.phone {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
.hero {
  background:
    linear-gradient(135deg, rgba(45, 99, 86, 0.8), rgba(31, 75, 63, 0.9)),
    url("../images/header.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  padding: var(--space-2xl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 99, 86, 0.1), transparent);
  pointer-events: none;
}

/* Fallback for browsers that don't support WebP */
.no-webp .hero {
  background:
    linear-gradient(135deg, rgba(45, 99, 86, 0.8), rgba(31, 75, 63, 0.9)),
    url("../images/header.JPG") no-repeat center center;
  background-size: cover;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero p {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .btn {
  background: white;
  color: var(--primary-color);
  padding: var(--space-lg) var(--space-2xl);
  text-decoration: none;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.hero .btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

.hero .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.hero .btn:hover::before {
  left: 100%;
}
.about, .services, .contact {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

/* Reduce top padding for first section after hero */
.about {
  padding-top: var(--space-2xl);
}

.about:nth-child(even),
.services:nth-child(even),
.contact:nth-child(even) {
  background: var(--bg-primary);
}
.about h2, .services h2, .contact h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.025em;
  position: relative;
}

.about h2::after, .services h2::after, .contact h2::after {
  content: '';
  position: absolute;
  bottom: -var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-sm);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.service-item {
  background: var(--bg-primary);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px var(--shadow-light), 0 2px 8px var(--shadow-medium);
  transition: all var(--transition-slow);
  border: 1px solid rgba(45, 99, 86, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), #4ECDC4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(45, 99, 86, 0.1), transparent, rgba(78, 205, 196, 0.1));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(45, 99, 86, 0.15), 0 8px 24px var(--shadow-dark);
  border-color: rgba(45, 99, 86, 0.15);
}

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

.service-item:hover::after {
  opacity: 1;
}

.service-item:nth-child(1) {
  animation-delay: 0.1s;
}

.service-item:nth-child(2) {
  animation-delay: 0.2s;
}

.service-item:nth-child(3) {
  animation-delay: 0.3s;
}
/* Service Icons */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: white;
  z-index: 1;
}

.service-icon i {
  font-size: 24px;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.service-item:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-item:hover .service-icon i {
  color: var(--accent-color);
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-color);
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item ul li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
  color: var(--text-secondary);
  font-weight: 400;
}

.service-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}
.contact input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
 .btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: var(--space-md) var(--space-2xl);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--font-size-base);
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  box-shadow: 0 2px 8px var(--shadow-light), 0 1px 4px var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-dark), 0 4px 12px rgba(45, 99, 86, 0.2);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--shadow-medium);
}

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

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

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-base);
  min-height: 48px;
  font-weight: 600;
}
 
 .more {
   display: inline-block;
   background: var(--primary-color);
   color: white;
   padding: var(--space-md) var(--space-xl);
   text-decoration: none;
   border-radius: var(--radius-md);
   margin-top: var(--space-xl);
   text-align: center;
   font-weight: 500;
   transition: all var(--transition-base);
   position: relative;
   overflow: hidden;
 }

 .more:hover {
   background: var(--primary-dark);
   transform: translateY(-1px);
   box-shadow: 0 4px 12px var(--shadow-dark);
 }

 .more::after {
   content: '→';
   margin-left: var(--space-sm);
   transition: transform var(--transition-base);
 }

 .more:hover::after {
   transform: translateX(4px);
 }
  footer {
    background: linear-gradient(135deg, #293241, #1e2a38);
    color: #cbd5e0;
    padding: var(--space-2xl) 0;
    position: relative;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
  footer a {
    color: #fff;
    text-decoration: none;
  }
  footer .footer-info {
    margin-bottom: 20px;
  }

/* Compact footer layout */
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-info {
  flex: 1;
  margin-bottom: 0;
}
footer .footer-legal {
  text-align: right;
  flex: 0 0 auto;
  align-self: flex-end;
}
footer .footer-info h3 {
  margin-bottom: 0.5em;
  font-size: 1rem;
}
footer .footer-info p,
footer .footer-legal p {
  margin: 0.2em 0;
  font-size: 0.85rem;
  color: #ccc;
}
footer .footer-legal a.cookies {
  font-size: 0.75rem;
  text-decoration: none;
  color: #ccc;
}

/* Shrink header on scroll */
header {
  transition: padding 0.3s ease;
}
header .logo {
  transition: height 0.3s ease, margin-right 0.3s ease, clip-path 0.3s ease;
}
header.shrink .container {
  padding: 5px 0;
}
header.shrink .logo {
  height: 50px;
  clip-path: inset(0 2px 0 0);
  margin-right: -2px;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  z-index: 1002;
  transition: width 0.1s ease-out;
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 2s infinite;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Enhanced button ripple effect */
.btn, .more {
  position: relative;
  overflow: hidden;
}

.btn::after, .more::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after, .more:active::after {
  width: 300px;
  height: 300px;
}

/* Two-column layout for About page */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
.about-image {
  flex: 0 0 300px;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.about-text {
  flex: 1;
}
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }
}
/* Contact page layout */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.contact-details {
  flex: 1;
  min-width: 250px;
}
.contact-details h2 {
  margin-top: 0;
}
.contact-details a {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact-form {
  flex: 2;
  min-width: 300px;
}
.contact-form h2 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }
}

/* Simple map styling */
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 4px;
  margin-top: 20px;
}

/* Full-width contact form */
.contact-form-full {
  width: 100%;
  margin-top: 30px;
}
/* Enhanced Contact Page Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-form-section h3 {
  font-size: var(--font-size-2xl);
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.contact-item:hover {
  background: white;
  transform: translateX(8px);
  box-shadow: 0 4px 16px var(--shadow-light);
}

.contact-item:hover::before {
  transform: scaleY(1);
}

.contact-item i {
  font-size: 20px;
  color: var(--primary-color);
  width: 24px;
  text-align: center;
  margin-top: 2px;
  transition: all var(--transition-base);
}

.contact-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

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

/* Responsive Contact Layout */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .contact-form-section {
    order: -1;
  }
}

/* Map styling under hours */
.contact-map {
  width: 100%;
  margin-top: var(--space-xl);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px var(--shadow-light);
}

/* Contact Form Styles */
.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--bg-tertiary);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-base);
  background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 99, 86, 0.1);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--primary-light);
}

.contact-form .btn {
  width: 100%;
  margin-top: var(--space-lg);
}

/* Zoho Form Styling Integration */
#zoho-form,
#zoho-form-index {
  width: 100%;
  min-height: 400px;
}

/* Style Zoho form elements to match website design */
#zoho-form iframe,
#zoho-form-index iframe {
  width: 100% !important;
  height: 600px !important;
  border: none !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 4px 16px var(--shadow-light) !important;
  background: var(--bg-primary) !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Override Zoho form styles to match our design */
.zoho-form-wrapper {
  font-family: var(--font-family-primary) !important;
}

/* Loading state for Zoho forms */
#zoho-form:empty::after,
#zoho-form-index:empty::after {
  content: 'Loading contact form...';
  display: block;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-secondary);
  font-style: italic;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

/* Mobile navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  position: relative;
  z-index: 1001;
}

.nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

/* Hamburger animation */
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(45, 99, 86, 0.98);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px var(--shadow-dark);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    transform: translateY(-10px);
    opacity: 0;
    transition: all var(--transition-base);
  }
  
  nav ul.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  
  nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul li:last-child {
    border-bottom: none;
  }
  
  nav ul li a {
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
  }
  
  nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    padding-left: calc(var(--space-xl) + var(--space-sm));
  }
  
  .hero {
    min-height: 80vh;
    padding: var(--space-xl) 0;
  }
  
  .about {
    padding-top: var(--space-xl);
  }
  
  .hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .about-flex {
    flex-direction: column;
  }
  
  .about-image {
    flex: none;
    max-width: 300px;
    align-self: center;
  }
}