/* Premium Header Styling */
:root {
  --primary-color: #1D7E45; /* Deep green from logo */
  --secondary-color: #E2A139; /* Gold/orange from logo */
  --accent-color: #27AE60; /* Lighter green for accents */
  --text-color: #2C3E30; /* Dark green-gray for text */
  --text-light: #5D6D64; /* Medium green-gray for lighter text */
  --light-color: #f9f9f9; /* Off-white for backgrounds */
  --dark-color: #1a382a; /* Very dark green for dark sections */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
  --border-radius: 10px;
  --gradient-primary: linear-gradient(135deg, #1D7E45 0%, #27AE60 100%); /* Green gradient */
  --gradient-dark: linear-gradient(135deg, #1a382a 0%, #2C3E30 100%); /* Dark green gradient */
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f9fafb;
  color: var(--text-color);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6, .logo-text, .nav-link {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.3px;
}

h1, h2, h3 {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styling */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: var(--transition);
  position: relative;
}

.header.scrolled .header-inner {
  padding: 8px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-img {
  max-height: 68px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.header.scrolled .logo-img {
  max-height: 48px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0px 2px 4px rgba(155, 89, 182, 0.2);
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.animate-logo {
  animation: pulse 2s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 0 rgba(74, 144, 226, 0);
  }
  100% {
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
  }
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin-right: 20px;
}

.nav-item {
  margin: 0 20px;
  position: relative;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
}

.nav-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 6px;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  margin: 0 5px;
}

.header.scrolled .nav-link {
  font-size: 14px;
}

.nav-icon {
  margin-right: 8px;
  font-size: 14px;
  transition: var(--transition);
  color: var(--secondary-color);
}

.icon-pulse {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
    color: var(--secondary-color);
  }
  100% {
    transform: scale(1);
  }
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  opacity: 0;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link:hover .nav-icon {
  transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
  opacity: 1;
}

.nav-link.active {
  color: var(--secondary-color);
}

/* Contact Button */
.contact-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(155, 89, 182, 0.3);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  letter-spacing: 0.5px;
}

.header.scrolled .contact-button {
  padding: 10px 20px;
  font-size: 14px;
}

.contact-button.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-button i {
  margin-right: 8px;
  font-size: 14px;
}

.contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
}

.contact-button:hover::before {
  left: 100%;
}

.contact-button:active {
  transform: translateY(0);
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary-color);
  z-index: 3;
}

.close-menu {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  
  .close-menu {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 2;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-link::before {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    padding-left: 5px;
  }

  .contact-button {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Page Content Spacing */
main {
  padding-top: 90px; /* Adjust based on header height */
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 126, 69, 0.85), rgba(226, 161, 57, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-container {
  margin-bottom: 20px;
}

.main-logo {
  max-width: 150px;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.brand-name {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
  background: linear-gradient(to right, #fff, #f8e9c0); /* White to light gold gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Montserrat', sans-serif;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.primary-button {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 6px 15px rgba(155, 89, 182, 0.4);
  border: none;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-5px);
}

.primary-button:hover {
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.5);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

.primary-button i,
.secondary-button i {
  margin-right: 8px;
}

/* Service Highlights Section */
.service-highlights {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f9f9f9, #e9f5ee); /* Light green tint gradient */
  position: relative;
  overflow: hidden;
}

.service-highlights::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 126, 69, 0.1) 0%, rgba(29, 126, 69, 0) 70%); /* Green radial gradient */
  z-index: 1;
}

.service-highlights::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 161, 57, 0.08) 0%, rgba(226, 161, 57, 0) 70%); /* Gold/orange radial gradient */
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--secondary-color); /* Gold/orange border */
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to bottom, rgba(29, 126, 69, 0.05), transparent); /* Very light green gradient */
  transition: height 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f0f7f3; /* Very light green background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--secondary-color); /* Gold/orange icon color */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(29, 126, 69, 0.15);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary); /* Green gradient */
  color: #fff;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(29, 126, 69, 0.3);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.service-card:hover h3 {
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid transparent;
}

.service-link i {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--secondary-color); /* Gold/orange text */
  background: rgba(29, 126, 69, 0.08); /* Very light green background */
  border: 1px solid rgba(226, 161, 57, 0.2); /* Light gold border */
}

.service-link:hover i {
  transform: translateX(5px);
}

.coming-soon-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  transform: rotate(45deg);
  background: var(--accent-color);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(230, 126, 34, 0.3);
  z-index: 3;
}

/* Contact Section */
.contact-section {
  padding: 120px 0 100px;
  background: linear-gradient(to bottom, #fff, #f0f7f3); /* White to very light green */
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 161, 57, 0.1) 0%, rgba(226, 161, 57, 0) 70%); /* Gold radial gradient */
  z-index: 1;
}

/* --- START OF CORRECTED CONTACT CONTAINER CSS --- */
.contact-container {
  display: flex;
  flex-wrap: wrap; /* CRITICAL: Allows sections to wrap on smaller screens */
  gap: 50px;
  margin-top: 60px;
  align-items: flex-start;
}

/* Define the flex distribution for large screens */
.contact-info {
  flex: 2; /* Contact info column takes 2/3 space */
  min-width: 0; /* Ensures the item can shrink on small screens */
}

.whatsapp-chat {
  flex: 1; /* WhatsApp column takes 1/3 space */
  min-width: 0; /* Ensures the item can shrink on small screens */
  background: #fff;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #25D366;
  z-index: 2;
}
/* --- END OF CORRECTED CONTACT CONTAINER CSS --- */

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-right: 25px;
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
  flex-shrink: 0; /* Prevent any shrinking */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 25px rgba(155, 89, 182, 0.4);
}

.contact-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Fix for map marker icon */
.contact-icon .fa-map-marker-alt {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.contact-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-text h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.contact-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  /* --- CRITICAL ADDITION FOR ADDRESS WRAPPING --- */
  word-wrap: break-word; 
  word-break: break-word; 
  overflow-wrap: break-word;
  /* ----------------------------------------------- */
}

.contact-text a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.contact-text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--secondary-color);
}

.contact-text a:hover::after {
  width: 100%;
}

/* Original whatsapp-chat styling integrated into the container definition above */

.whatsapp-chat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), transparent);
  z-index: -1;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin-right: 15px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-chat:hover .whatsapp-icon {
  transform: scale(1.1) rotate(-10deg);
}

.whatsapp-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
}

.whatsapp-chat p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  width: 100%;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: all 0.6s ease;
}

.whatsapp-button:hover::before {
  transform: translateX(100%);
}

.whatsapp-button i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.whatsapp-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: #fff;
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.whatsapp-float a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  top: -50%;
  left: -50%;
  transition: all 0.5s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a:hover::before {
  top: -20%;
  left: -20%;
}

/* Footer Styles */
.site-footer {
  position: relative;
  background: linear-gradient(to right, #1a382a, #144a2e); /* Dark green gradient */
  color: #fff;
  margin-top: 80px;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

/* Footer Top */
.footer-top {
  padding: 80px 0 50px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Footer Logo */
.footer-logo h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, #f8e9c0); /* White to light gold gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-logo h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color); /* Gold/orange underline */
  border-radius: 2px;
}

.footer-tagline {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
}

/* Footer Headings */
.footer-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.footer-links a i {
  margin-right: 10px;
  font-size: 0.85rem;
  transition: var(--transition);
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links a:hover i {
  transform: translateX(5px);
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-list li i {
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-list li a:hover {
  color: var(--secondary-color);
}

/* Newsletter Section */
.footer-newsletter {
  padding: 35px 0;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(155, 89, 182, 0.2);
}

.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1.05rem;
}

.footer-newsletter-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.footer-newsletter-form input {
  flex: 1;
  height: 55px;
  padding: 0 25px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-newsletter-form input:focus {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(155, 89, 182, 0.2);
}

.newsletter-button {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.newsletter-button:hover {
  background: #cb8e29; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(226, 161, 57, 0.4);
}

.newsletter-button i {
  font-size: 0.85rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 18px;
}

.back-to-top a:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(155, 89, 182, 0.5);
}

/* Position Back to Top differently when WhatsApp float is present */
body:has(.whatsapp-float) .back-to-top {
  right: 100px;
}

/* About Page Styles */
/* Page Hero */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background: url('../images/about-hero.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.page-hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Padding */
.section-padding {
  padding: 100px 0;
}

/* About Intro */
.about-intro {
  position: relative;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content .section-header.text-left {
  text-align: left;
  margin-bottom: 30px;
}

.about-content .section-header.text-left h2::after {
  left: 0;
  transform: none;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-primary);
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .years {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
}

/* Mission Vision Section */
.bg-light {
  background-color: #f9fafb;
}

.mission-vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.mv-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Authorizations Section */
.auth-container {
  margin-top: 50px;
}

.auth-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.auth-item:hover {
  box-shadow: var(--shadow-md);
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f5f8ff;
  border-radius: var(--border-radius);
}

.auth-logo img {
  max-width: 100%;
  max-height: 100px;
}

.auth-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.auth-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.auth-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
}

.certification-note {
  display: flex;
  align-items: center;
  background: #fff4e5;
  border-left: 4px solid #ffa000;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 25px;
  margin-top: 40px;
}

.note-icon {
  font-size: 36px;
  color: #ffa000;
  margin-right: 25px;
}

.note-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.note-content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Founder Section */
.founder-container {
  margin-top: 50px;
}

.founder-card {
  background: linear-gradient(to right bottom, #ffffff, #f8fbff);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-left: 5px solid var(--secondary-color);
}

.founder-image-container {
  flex: 0 0 350px;
  position: relative;
  overflow: hidden;
}

.founder-image {
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: flex-start;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 500px;
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}

.founder-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.founder-card:hover .founder-social {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.founder-info {
  flex: 1;
  padding: 40px;
  position: relative;
}

.founder-info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.founder-info h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.founder-info .designation {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin: 20px 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.founder-quote {
  background: #f0f7ff;
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  position: relative;
}

.quote-icon {
  color: var(--secondary-color);
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.7;
  display: block;
}

.founder-quote p {
  color: var(--text-color);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  font-weight: 500;
}

.founder-bio {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.founder-achievements {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.achievement-item {
  text-align: center;
  padding: 0 15px;
}

.achievement-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 992px) {
  .founder-card {
    flex-direction: column;
  }
  
  .founder-image-container {
    flex: 0 0 300px;
    width: 100%;
  }
  
  .founder-image img {
    min-height: 300px;
  }
  
  .founder-social {
    opacity: 1;
    transform: translateY(0);
  }
  
  .founder-achievements {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-section .secondary-button {
  border-color: white;
}

/* Services Page Styles */
/* Services Introduction */
.services-intro {
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Service Category */
.service-category {
  position: relative;
}

.service-category-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.category-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.category-icon i {
  font-size: 40px;
}

.service-category-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-category-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.category-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--gradient-primary);
  color: white;
  vertical-align: middle;
  margin-left: 10px;
}

.category-badge.coming-soon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid transparent;
  padding-top: 5px;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--secondary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin: 20px auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.service-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  font-size: 28px;
}

.service-item:hover .service-icon {
  background: var(--gradient-primary);
  color: white !important;
}

.service-item:hover .service-icon i {
  color: white !important;
}

.service-icon.coming-soon-icon {
  background: #ffeeee;
  color: #ff6b6b;
  margin: 20px auto 20px;
}

.service-item:hover .service-icon.coming-soon-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
  color: white;
}

.service-content {
  padding: 0 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
  flex-grow: 1;
}

/* Service Features */
.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Coming Soon Label */
.coming-soon-label {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

/* Service CTA */
.service-cta {
  margin-top: 60px;
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.service-cta-content {
  flex: 1;
}

.service-cta-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-cta-content h4 i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.service-cta-content p {
  color: var(--text-light);
  margin: 0;
}

/* Service Announcement */
.service-announcement {
  margin-top: 60px;
  background: #fff4e5;
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.announcement-icon {
  font-size: 36px;
  color: #ffa000;
  margin-right: 25px;
  flex-shrink: 0;
}

.announcement-content {
  flex: 1;
}

.announcement-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.announcement-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.notification-form {
  display: flex;
  gap: 10px;
}

.notification-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.notification-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.notification-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.notification-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Service Partners */
.service-partners {
  margin-top: 60px;
  text-align: center;
}

.service-partners h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.service-partners h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  max-height: 100%;
  max-width: 120px;
}

/* Loan Calculator */
.loan-calculator {
  margin-top: 60px;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.calculator-header {
  background: var(--gradient-primary);
  color: white;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}

.calculator-header i {
  font-size: 24px;
  margin-right: 15px;
}

.calculator-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.calculator-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.calc-input {
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.calc-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.calculator-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.calculator-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.calculator-result {
  background: #f9fafb;
  border-radius: var(--border-radius);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.result-item:last-child {
  border-bottom: none;
}

.result-label {
  font-weight: 500;
  color: var(--text-color);
}

.result-value {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Gallery Page Styles */
/* Gallery Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}

.filter-btn {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  box-shadow: var(--shadow-sm);
  color: var(--secondary-color);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  transition: all 0.5s ease;
  transform-origin: center;
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-image:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 41, 66, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: var(--transition);
  opacity: 0;
}

.gallery-image:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.gallery-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
}

.gallery-popup:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border: 5px solid white;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--secondary-color);
}

/* Announcements Section */
.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.announcement-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border-top: 5px solid #e2e8f0;
  height: 100%;
}

.announcement-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.announcement-card.highlight {
  border-color: var(--secondary-color);
}

.announcement-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.announcement-card.highlight .announcement-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
}

.announcement-icon {
  width: 70px;
  height: 70px;
  margin: 30px auto 20px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.announcement-card:hover .announcement-icon {
  background: var(--gradient-primary);
  color: white !important;
}

.announcement-card.highlight .announcement-icon {
  background: linear-gradient(45deg, #ffeeee, #ffe8e8);
  color: #ff6b6b;
}

.announcement-card.highlight:hover .announcement-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
  color: white !important;
}

.announcement-content {
  padding: 0 30px 30px;
  text-align: center;
}

.announcement-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.announcement-date {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.announcement-text {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.announcement-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.announcement-link i {
  transition: var(--transition);
  font-size: 0.8rem;
}

.announcement-link:hover {
  color: var(--primary-color);
}

.announcement-link:hover i {
  transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-color), #2d4063);
  color: white;
}

.newsletter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.newsletter-text h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 1rem;
}

.newsletter-form {
  flex: 1;
}

.newsletter-form .form-group {
  display: flex;
  max-width: 500px;
  margin-left: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
  outline: none;
}

.subscribe-button {
  padding: 15px 25px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-button:hover {
  background: #e85d5d;
}

/* Contact Page Styles */
/* Contact Info Section */
.contact-info-section {
  position: relative;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.section-header.text-left {
  text-align: left;
  margin-bottom: 30px;
}

.section-header.text-left h2::after {
  left: 0;
  transform: none;
}

.contact-detail-items {
  margin-top: 40px;
}

.contact-detail-item {
  display: flex;
  margin-bottom: 30px;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.detail-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.detail-content p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.detail-content a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.detail-content a:hover {
  color: var(--secondary-color);
}

.detail-note {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-style: italic;
}

.social-contact {
  margin-top: 40px;
}

.social-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.whatsapp-icon {
  background: #e8f7ed;
  color: #25D366;
}

.whatsapp-icon:hover {
  background: #25D366;
  color: white;
}

/* Contact Form */
.contact-form-container {
  position: relative;
}

.contact-form-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-form-card p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-submit {
  margin-top: 10px;
}

.submit-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.submit-button:active {
  transform: translateY(-1px);
}

.submit-button i {
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  padding: 60px 0;
}

.map-container {
  margin-top: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* WhatsApp Support Section */
.whatsapp-support-section {
  padding: 80px 0;
}

.whatsapp-support-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 30px;
}

.whatsapp-support-icon {
  width: 100px;
  height: 100px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-support-content {
  flex: 1;
}

.whatsapp-support-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.whatsapp-support-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.whatsapp-support-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-support-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  background: #20bd5a;
}

.whatsapp-support-button i {
  font-size: 1.3rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-question:hover .faq-toggle {
  background: var(--secondary-color);
  color: white;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background: #f0f7ff;
}

.faq-item.active .faq-toggle {
  background: var(--secondary-color);
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 25px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  
  .close-menu {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 2;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-link::before {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    padding-left: 5px;
  }

  .contact-button {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  /* --- CORRECTED CONTACT STACKING RULES (991px) --- */
  .contact-container {
    /* Override flex for large screens and force stacking */
    flex-direction: column;
    gap: 30px; 
  }
  
  .contact-info,
  .whatsapp-chat {
      flex: 1 1 100%; /* Force both items to take full width */
      min-width: 0; /* Allows content to wrap correctly */
  }
  /* ---------------------------------------------------- */
  
  .row {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-top: 40px;
    order: -1;
  }
  
  .experience-badge {
    right: 20px;
  }
  
  .auth-item {
    grid-template-columns: 1fr;
  }
  
  .auth-logo {
    margin-bottom: 20px;
  }
  
  .page-hero-content h1 {
    font-size: 2.8rem;
  }
  
  .service-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .service-cta .primary-button {
    margin-top: 20px;
  }
  
  .service-announcement {
    flex-direction: column;
  }
  
  .announcement-icon {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }
  
  .notification-form {
    flex-direction: column;
  }
  
  .calculator-body {
    grid-template-columns: 1fr;
  }
  
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-content {
    flex-direction: column;
  }
  
  .newsletter-form .form-group {
    margin: 0 auto;
  }
  
  .gallery-filter {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .whatsapp-support-card {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-support-icon {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .service-category-header h2 {
    font-size: 2rem;
  }
  
  .category-badge {
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
  
  .newsletter-form input,
  .subscribe-button {
    padding: 12px 15px;
  }
  
  .contact-form-card {
    padding: 25px;
  }
  
  .submit-button {
    padding: 12px 20px;
  }
  
  .whatsapp-support-content h3 {
    font-size: 1.5rem;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .service-category-header h2 {
    font-size: 2rem;
  }
  
  .category-badge {
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
  
  .newsletter-form input,
  .subscribe-button {
    padding: 12px 15px;
  }
  
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    padding: 15px 10px;
  }
  
  .service-card h3 {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .service-category-header h2 {
    font-size: 1.8rem;
  }
  
  .category-badge {
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    min-height: auto;
  }
}

@media screen and (max-width: 768px) {
  .brand-name {
    font-size: 2.2rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .primary-button,
  .secondary-button {
    width: 100%;
  }
  
  .service-highlights,
  .contact-section {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .service-card h3 {
    font-size: 1rem;
    min-height: 2.2rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

/* Animation classes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}