:root {
  --primary-color: #0c2b5e; /* Navy Blue from logo */
  --secondary-color: #3b8e4e; /* Forest Green from logo */
  --accent-color: #4b89c4; /* Lighter blue from leaves */
  --accent-green: #97c85e; /* Lighter green from leaves */
  --text-dark: #333333;
  --text-light: #666666;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  
  --font-heading: 'Salesforce Sans', 'Inter', 'Roboto', sans-serif;
  --font-body: 'Salesforce Sans', 'Inter', 'Roboto', sans-serif;
  
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.8;
  background-color: var(--white);
}

p {
  margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--light-bg);
}

.bg-primary {
  background-color: var(--primary-color);
  color: var(--white);
}
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4 {
    color: var(--white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

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

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

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

/* Header & Nav */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(12, 43, 94, 0.8), rgba(12, 43, 94, 0.8)), url('../images/banner-bg.jpg') center/cover;
  padding: 100px 0 40px;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Home Hero */
.hero {
  padding: 100px 0 60px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%), url('../images/hero-bg.jpg') center right/cover;
}

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

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-title span {
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Features/Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  flex: 1 1 250px;
  max-width: 300px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(12, 43, 94, 0.1);
  border-color: rgba(12, 43, 94, 0.1);
}

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

.service-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* About Section */
.about-grid {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

.about-grid > div {
  flex: 1;
  height: 100%;
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  background-color: var(--light-bg);
  border-radius: 30px;
  z-index: -1;
  transition: var(--transition);
}

.about-image {
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper:hover .about-image {
  transform: translate(-10px, -10px);
}

.about-image-wrapper:hover::before {
  transform: translate(10px, 10px);
  background-color: rgba(59, 142, 78, 0.1);
}

.about-content {
  text-align: left;
}

.about-content p {
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-content h2.section-title {
  display: block;
  text-align: left;
  margin-bottom: 40px;
}

.about-content h2.section-title::after {
  left: 0;
  transform: none;
}

/* Modern Founder Section */
.founder-section-modern {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  padding: 100px 0;
  overflow: hidden;
}

.founder-modern-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.founder-modern-image {
  flex: 0 0 45%;
  position: relative;
  z-index: 2;
  display: block;
}

.founder-modern-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: top center;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(12, 43, 94, 0.15);
}

.image-overlay-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(12, 43, 94, 0.1);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.since-badge {
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.founder-modern-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-size: 80px;
  color: rgba(12, 43, 94, 0.05);
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: -1;
}

.modern-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  font-weight: 800;
}

.modern-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.message-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.founder-signature-box {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(12, 43, 94, 0.1);
}

.sig-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}

.sig-title {
  color: #666;
  font-size: 0.95rem;
}

/* Philosophy Section Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.philosophy-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 5px 20px rgba(12, 43, 94, 0.05);
  transition: transform 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
}

.philosophy-card.highlight-card {
  background: #f8faff;
  border-left-color: var(--primary-color);
}

.philosophy-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.pb-0 {
  padding-bottom: 0 !important;
}

@media (max-width: 992px) {
  .founder-modern-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .founder-modern-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .founder-modern-image img {
    height: 400px;
  }
  .image-overlay-card {
    bottom: 20px;
    right: 20px;
  }
  .modern-title {
    font-size: 2.2rem;
  }
  .sig-title {
    text-align: center;
  }

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

/* Process Section */
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: repeating-linear-gradient(to right, #ddd, #ddd 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(12, 43, 94, 0.2);
  border: 4px solid var(--white);
}

/* Highlight Box (Mission/Vision) */
.highlight-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a94 100%);
  color: var(--white);
  padding: 60px 80px;
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(12, 43, 94, 0.15);
}

.highlight-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: white !important;
}

.highlight-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  text-align: left;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 2.2rem;
  font-weight: 800;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

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

.package-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.package-body {
  padding: 30px;
  flex-grow: 1;
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
}

.package-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.package-footer {
  padding: 0 30px 30px;
  text-align: center;
}

.package-popular {
  border: 2px solid var(--secondary-color);
  position: relative;
}

.package-popular::after {
  content: 'Most Popular';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

/* Statistics Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(59, 142, 78, 0.05);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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

/* FAQ Section Modern 2-Column */
.faq-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-top: 50px;
}

.faq-modern-item {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(12, 43, 94, 0.08);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  height: fit-content;
}

.faq-modern-item:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(12, 43, 94, 0.04);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  background: rgba(12, 43, 94, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.faq-modern-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: #555;
  line-height: 1.7;
}

.faq-modern-item.active .faq-modern-content {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 24px;
}

.faq-modern-item.active .faq-icon-box {
  transform: rotate(180deg);
  background: var(--secondary-color);
  color: white;
}

@media (max-width: 992px) {
  .faq-modern-grid {
    grid-template-columns: 1fr;
  }
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #ccc;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--secondary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image {
    height: 400px;
  }
  
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .founder-img-container {
    flex: 0 0 250px;
    width: 250px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  
  .hero {
    background-position: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/hero-bg.jpg') center/cover;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .hero-title { font-size: 2.2rem; }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid::before { display: none; }
  
  .highlight-box { padding: 40px 30px; }
  
  .highlight-box h3 { font-size: 1.5rem; }
  
  .section-title { font-size: 1.8rem; }

  .mobile-menu-btn {
    display: block !important;
  }

  .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-item {
    margin: 10px 0 !important;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .nav-item .btn {
    width: 100%;
    margin: 5px 0;
  }

  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  
  .service-card {
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .logo-img { height: 40px; }
}

/* --- Form Styling --- */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(12, 43, 94, 0.08);
}

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

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

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(12, 43, 94, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8faff; /* Light modern tint */
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(59, 142, 78, 0.1);
  background-color: white;
}

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

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-container {
    padding: 30px 20px;
  }
}
