/*
Theme Name: Fresh Hair & Beauty
Theme URI: https://www.incahootsco.com.au
Description: Custom theme for Fresh Hair & Beauty Wellness Spa
Version: 1.0
Author: In Cahoots Co
Author URI: https://www.incahootsco.com.au
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fresh-theme
Domain Path: /languages
*/

:root {
  --primary-green: #4CAF50;
  --dark-green: #2d5a3d;
  --light-green: #e8f5e9;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Lato', sans-serif !important;
  line-height: 1.6 !important;
  color: var(--text-dark) !important;
  background-color: var(--white) !important;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Header & Navigation */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 100%;
  margin: 0;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.site-logo img,
.header-left img,
.custom-logo {
  max-width: 50px !important;
  height: auto !important;
  width: 50px !important;
}

.site-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--dark-green) !important;
  margin: 0 !important;
  margin-left: 0 !important;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-navigation a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: var(--primary-green);
}

.main-navigation-right {
  margin-left: auto;
  padding-right: 20px;
}

/* Hero Section - Full Screen Premium */
.hero-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 0;
  text-align: center;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: 80vh;
    height: 80vh;
    background-attachment: scroll;
    background-size: cover !important;
    background-position: center !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    background-attachment: scroll;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 80px 20px 60px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    background-attachment: scroll;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 60px 15px 50px;
  }
}

.hero-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 180px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 150px;
    margin-bottom: 10px;
  }
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 85%;
  }
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

.hero-button {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white) !important;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  position: relative;
  z-index: 1;
}

.hero-button:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  color: var(--white) !important;
}

/* Wave Divider */
.wave-divider {
  position: relative;
  height: 80px;
  background: transparent;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 20px !important;
  background-color: inherit !important;
  position: relative;
}

/* Gradient backgrounds for seamless section transitions */

.section-title {
  font-size: 36px;
  color: var(--dark-green);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
}

/* About Section - White with gradient transitions */
.about-section {
  background: linear-gradient(to bottom, 
    #2d5a3d 0%,
    rgba(45, 90, 61, 0.8) 3%,
    rgba(45, 90, 61, 0.3) 8%, 
    rgba(255, 255, 255, 1) 15%, 
    rgba(255, 255, 255, 1) 85%, 
    rgba(232, 245, 233, 0.5) 92%,
    rgba(232, 245, 233, 0.9) 97%,
    #e8f5e9 100%) !important;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-light);
}

/* Services Section - Light Green with gradient transitions */
.services-section {
  background: linear-gradient(to bottom, 
    #e8f5e9 0%,
    rgba(232, 245, 233, 0.9) 3%,
    rgba(232, 245, 233, 1) 8%, 
    rgba(232, 245, 233, 1) 15%, 
    rgba(232, 245, 233, 1) 85%, 
    rgba(232, 245, 233, 0.5) 92%,
    rgba(255, 255, 255, 0.7) 97%,
    #ffffff 100%) !important;
}

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

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(45, 90, 61, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card h3 {
  color: var(--dark-green);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Team Section - White */
.team-section {
  background: linear-gradient(to bottom, 
    #e8f5e9 0%,
    rgba(232, 245, 233, 0.7) 3%,
    rgba(255, 255, 255, 0.5) 8%,
    rgba(255, 255, 255, 1) 15%, 
    rgba(255, 255, 255, 1) 85%, 
    rgba(255, 255, 255, 0.9) 92%,
    rgba(255, 255, 255, 0.95) 97%,
    #ffffff 100%) !important;
  padding-top: 40px !important;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
}

.team-member-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.team-member h3 {
  color: var(--dark-green);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
}

.team-member-role {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p {
  color: var(--text-light);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: #1a4d2e !important;
  background-color: #1a4d2e !important;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--dark-green);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section - White (no gradient) */
.contact-section {
  background-color: #ffffff !important;
  background-image: none !important;
  background: #ffffff !important;
}

.contact-section::before,
.contact-section::after {
  display: none !important;
  background: none !important;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-map {
    grid-column: 1 / -1;
  }
}

.contact-info h3 {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.contact-info h4 {
  color: var(--dark-green);
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.submit-button {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.submit-button:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Footer */
.site-footer {
  background: #1a4d2e !important;
  background-color: #1a4d2e !important;
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  margin-top: 0 !important;
  border-top: none !important;
}

.contact-section + .site-footer {
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.footer-credit {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--white);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer-credit a:hover {
  opacity: 1;
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ===== MODERN 2026 ANIMATIONS ===== */

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(76, 175, 80, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Scroll Reveal - Fade In Up */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-up.visible {
  opacity: 1;
}

/* Team Member Cards - Glassmorphism */
.team-member {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out forwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

/* Shimmer removed - cleaner look */

.team-member:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-green);
  box-shadow: 0 20px 50px rgba(45, 90, 61, 0.2);
}

.team-member-image {
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 15px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
}

.team-member:hover .team-member-image {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.1);
}

.team-member h3 {
  transition: color 0.3s ease;
}

.team-member:hover h3 {
  color: var(--primary-green);
}

/* Service Cards - Enhanced Hover */
.service-card {
  background: var(--white);
  border: 2px solid var(--light-green);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(232, 245, 233, 0.5));
}

.service-card h3 {
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-green);
}

/* Hero Section - Subtle Parallax Effect */
.hero-section {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  animation: fadeInScale 1s ease-out;
}

/* Button Animations */
.hero-button,
.submit-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-button::before,
.submit-button::before {
  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;
}

.hero-button:hover::before,
.submit-button:hover::before {
  width: 300px;
  height: 300px;
}

/* Section Animations */
.section {
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-title {
  animation: slideInLeft 0.8s ease-out;
}

.section-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* CTA Section Animation */
.cta-section {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Trigger Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 20px;
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 22px;
  }
}


/* Gallery Section */
.gallery-section {
  background-color: var(--white) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.8), rgba(76, 175, 80, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay p {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(45, 90, 61, 0.2);
}

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

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

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

/* Floating Leaf Animation */
@keyframes floatingLeaf {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(10deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-40px) translateX(-10px) rotate(20deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(15px) rotate(-10deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
}

.floating-leaf-hero {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  z-index: 1;
  animation: floatingLeaf 6s ease-in-out infinite;
}

.hero-section {
  position: relative;
}

.floating-leaf-hero:nth-child(2) {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.floating-leaf-hero:nth-child(3) {
  left: 15%;
  top: 40%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.floating-leaf-hero:nth-child(4) {
  right: 10%;
  top: 30%;
  animation-delay: 2s;
  animation-duration: 7.5s;
}

.floating-leaf-hero:nth-child(5) {
  right: 20%;
  top: 60%;
  animation-delay: 1.5s;
  animation-duration: 8.5s;
}

.floating-leaf-hero:nth-child(6) {
  left: 50%;
  top: 50%;
  animation-delay: 0.5s;
  animation-duration: 9s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-leaf-hero {
    font-size: 1.5rem;
    opacity: 0.15 !important;
  }
}


/* Mobile Touch Target Optimization */
@media (max-width: 768px) {
  .hero-button,
  .cta-button,
  .submit-button {
    padding: 18px 40px;
    font-size: 16px;
    min-height: 48px;
    min-width: 48px;
  }

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

  .contact-map iframe {
    height: 300px;
  }

  .service-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-map iframe {
    height: 250px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 14px;
  }

  .header-left {
    gap: 10px;
  }

  .main-navigation-right ul {
    gap: 15px;
  }

  .service-card {
    padding: 20px;
  }

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


/* Decorative Orchid Divider */
.orchid-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
  background: transparent;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--dark-green), transparent);
  max-width: 300px;
}

.divider-orchid {
  font-size: 2.5rem;
  animation: floatingDivider 3s ease-in-out infinite;
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .orchid-divider {
    gap: 15px;
    padding: 20px 15px;
  }

  .divider-line {
    max-width: 150px;
  }

  .divider-orchid {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .orchid-divider {
    gap: 10px;
    padding: 15px 10px;
  }

  .divider-line {
    max-width: 100px;
    height: 1.5px;
  }

  .divider-orchid {
    font-size: 1.5rem;
  }
}


/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark-green);
  padding: 5px 10px;
  z-index: 101;
}

.menu-toggle:hover {
  color: var(--primary-green);
}

/* Mobile Menu Container */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

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

.mobile-menu a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-green);
  color: var(--text-dark);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
  background-color: var(--light-green);
  color: var(--primary-green);
}

/* Mobile Menu Breakpoint */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation-right {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

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


/* Service List Items */
.service-list {
  margin-top: 15px;
  text-align: left;
  font-size: 14px;
}

.service-item {
  color: var(--text-light);
  margin: 8px 0;
  line-height: 1.5;
}


/* Contact Page Logo */
.contact-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 80px auto 20px;
  padding: 10px 20px;
}

.contact-logo a {
  display: block;
}

.contact-logo img,
.contact-logo .custom-logo,
.contact-page-logo {
  max-width: 300px !important;
  height: auto !important;
  width: auto !important;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .contact-page-logo {
    max-width: 220px !important;
  }
}

/* Improved Orchid Divider - Stylish Alternative */
.orchid-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: transparent;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-green) 20%, var(--primary-green) 80%, transparent);
  max-width: 300px;
}

.divider-orchid {
  font-size: 2.5rem;
  animation: floatingLeaf 4s ease-in-out infinite;
  flex-shrink: 0;
}

/* Service Grid - Horizontal Layout on Desktop */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 0;
}

.service-card > p:first-of-type {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-list {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--light-green);
}

/* Tablet - 2 Columns */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile - 1 Column */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .orchid-divider {
    gap: 15px;
    padding: 30px 15px;
  }

  .divider-line {
    max-width: 150px;
  }

  .divider-orchid {
    font-size: 2rem;
  }

  .service-card {
    padding: 20px;
  }

  .service-image {
    height: 150px;
  }
}


/* Service Modal Styles */
.service-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
  position: relative;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--dark-green);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--primary-green);
}

.modal-content h2 {
  color: var(--dark-green);
  margin-bottom: 15px;
  margin-top: 0;
}

.modal-content h3 {
  color: var(--dark-green);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 18px;
}

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

.service-list-modal li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--light-green);
}

.service-list-modal li:last-child {
  border-bottom: none;
}

.service-list-modal li:before {
  content: "✓ ";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 10px;
}

.modal-button {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white) !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.modal-button:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Service Tile Styling */
.service-tile {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-tile .gallery-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.view-details {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
}

.service-tile:hover .view-details {
  opacity: 1;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 25px;
    max-width: 90%;
    margin: 20px;
  }

  .close-modal {
    right: 15px;
    top: 10px;
    font-size: 24px;
  }

  .modal-content h2 {
    font-size: 24px;
  }

  .modal-content h3 {
    font-size: 16px;
  }

  .service-list-modal li {
    font-size: 14px;
  }
}


/* ===== WHY CHOOSE US SECTION ===== */

.why-choose-us-section {
  background: #e8f5e9 !important;
  background-color: #e8f5e9 !important;
  background-image: none !important;
  padding: 80px 20px !important;
}

.why-choose-us-section::before,
.why-choose-us-section::after {
  display: none !important;
  background: none !important;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-choose-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-green);
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-choose-icon-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

.why-choose-card h3 {
  font-size: 20px;
  color: var(--dark-green);
  margin-bottom: 12px;
  font-weight: 600;
}

.why-choose-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .why-choose-card {
    padding: 30px 20px;
  }
  
  .why-choose-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .why-choose-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .why-choose-card h3 {
    font-size: 18px;
  }
  
  .why-choose-card p {
    font-size: 13px;
  }
}


/* ===== FINAL OVERRIDES - NO GRADIENTS ===== */
/* These rules override any Customizer CSS that may add gradients */

/* Why Choose Us Section - Solid Green */
.why-choose-us-section,
.section.why-choose-us-section {
  background: #e8f5e9 !important;
  background-color: #e8f5e9 !important;
  background-image: none !important;
}

/* Orchid Divider - Solid backgrounds */
.orchid-divider {
  background-image: none !important;
}

/* Contact Section - Solid White */
.contact-section,
.section.contact-section {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Services Section - Solid Green */
.services-section,
.section.services-section {
  background: #e8f5e9 !important;
  background-color: #e8f5e9 !important;
  background-image: none !important;
}

/* Team Section - Solid White */
.team-section,
.section.team-section {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Remove all section pseudo-element gradients */
.section::before,
.section::after,
.why-choose-us-section::before,
.why-choose-us-section::after,
.services-section::before,
.services-section::after,
.contact-section::before,
.contact-section::after {
  display: none !important;
  content: none !important;
  background: none !important;
}


/* ===== MOBILE MENU FIX ===== */
/* Override Customizer CSS that hides mobile-menu on all screen sizes */
/* Mobile menu should be hidden by default but show when .active class is added */

@media (max-width: 768px) {
  /* Show hamburger button on mobile */
  .menu-toggle {
    display: block !important;
  }
  
  /* Hide desktop navigation on mobile */
  .main-navigation-right {
    display: none !important;
  }
  
  /* Mobile menu - hidden by default */
  .mobile-menu {
    display: none !important;
  }
  
  /* Mobile menu - shown when active */
  .mobile-menu.active {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Hide mobile menu on desktop (to fix duplicate nav) */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  
  .menu-toggle {
    display: none !important;
  }
}

/* ===== HERO IMAGE MOBILE FIX ===== */
/* Ensure hero background image displays on mobile devices */

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
  }
}
