/* Global Styles */
:root {
   --primary-color: #059669;
   /* Emerald Green 600 - Dynamic & Elegant */
   --primary-dark: #047857;
   /* Emerald Green 700 */
   --secondary-color: #ecfdf5;
   /* Very Light Mint for backgrounds */
   --text-dark: #1e293b;
   --text-light: #64748b;
   --white: #ffffff;
   --max-width: 1200px;
   --border-radius: 12px;
   /* Slightly more rounded for modern feel */
   --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
   font-family: 'Inter', sans-serif;
   color: var(--text-dark);
   line-height: 1.6;
   background-color: var(--white);
   -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
   font-family: 'Playfair Display', serif;
   color: var(--text-dark);
   line-height: 1.2;
}

a {
   text-decoration: none;
   color: inherit;
}

img {
   max-width: 100%;
   display: block;
}

.container {
   width: 90%;
   max-width: var(--max-width);
   margin: 0 auto;
   padding: 0 1rem;
}

/* Buttons */
.btn {
   display: inline-flex;
   /* Changed to flex for icon alignment */
   align-items: center;
   gap: 0.5rem;
   padding: 1rem 2rem;
   border-radius: 50px;
   font-weight: 600;
   text-align: center;
   transition: var(--transition);
   cursor: pointer;
   justify-content: center;
}

.btn i {
   font-size: 1.2rem;
}

.btn-primary {
   background-color: var(--primary-color);
   color: var(--white);
   box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
   background-color: var(--primary-dark);
   transform: translateY(-2px);
   box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.5);
}

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

.btn-white:hover {
   background-color: #f0fdf4;
}

/* Hero Section */
.hero {
   padding-top: 80px;
   /* Reduced since no header */
   padding-bottom: 80px;
   background: linear-gradient(to bottom right, #ffffff, #ecfdf5);
   /* Lighter, fresher gradient */
}

.hero-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.hero-content h1 {
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
}

.hero-content h1 span {
   color: var(--primary-color);
   font-style: italic;
}

.hero-content p {
   font-size: 1.2rem;
   color: var(--text-light);
   margin-bottom: 2rem;
   max-width: 500px;
}

.hero-image img {
   border-radius: 20px;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* About Section */
.about {
   padding: 100px 0;
}

.about-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.about-content h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.about-content p {
   color: var(--text-light);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.stats {
   display: flex;
   gap: 3rem;
   margin-top: 2rem;
}

.stat-item {
   display: flex;
   flex-direction: column;
}

.stat-number {
   font-size: 2rem;
   font-weight: 700;
   color: var(--primary-color);
}

.stat-text {
   font-size: 0.9rem;
   color: var(--text-light);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.about-image img {
   border-radius: var(--border-radius);
   height: 100%;
   object-fit: cover;
}

/* Methodology Section (New) */
.methodology {
   padding: 100px 0;
   background-color: var(--white);
}

.steps-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.step-item {
   position: relative;
   padding: 2rem;
   background: #fdfdfd;
   border: 1px solid #f1f5f9;
   border-radius: var(--border-radius);
   transition: var(--transition);
}

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

.step-number {
   font-size: 3rem;
   font-weight: 700;
   color: #e2e8f0;
   margin-bottom: 1rem;
   line-height: 1;
}

.step-item h3 {
   font-family: 'Inter', sans-serif;
   font-size: 1.25rem;
   margin-bottom: 0.5rem;
   color: var(--primary-color);
   font-weight: 700;
}

/* Services */
.services {
   padding: 100px 0;
   background-color: var(--secondary-color);
}

.section-header {
   text-align: center;
   max-width: 700px;
   margin: 0 auto 4rem;
}

.section-header h2 {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.section-header p {
   color: var(--text-light);
   font-size: 1.1rem;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.service-card {
   background: var(--white);
   padding: 2.5rem;
   border-radius: var(--border-radius);
   box-shadow: var(--shadow);
   transition: var(--transition);
}

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

.icon-box {
   font-size: 2rem;
   color: var(--primary-color);
   margin-bottom: 1.5rem;
}

.service-card h3 {
   font-family: 'Inter', sans-serif;
   font-size: 1.25rem;
   margin-bottom: 1rem;
}

/* Deliverables Section (New) */
.deliverables {
   padding: 100px 0;
   background-color: #fff;
}

.deliverables-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

@media (max-width: 768px) {
   .deliverables-container {
      grid-template-columns: 1fr;
   }

   .deliverables-image {
      order: -1;
   }
}

.deliverables-content h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.deliverables-list {
   list-style: none;
   margin: 2rem 0;
}

.deliverables-list li {
   display: flex;
   gap: 1rem;
   margin-bottom: 1.5rem;
   align-items: flex-start;
}

.deliverables-list i {
   color: var(--primary-color);
   font-size: 1.2rem;
   margin-top: 5px;
   background: #f0fdf4;
   padding: 10px;
   border-radius: 50%;
   width: 45px;
   height: 45px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.deliverables-list strong {
   display: block;
   color: var(--text-dark);
   font-size: 1.1rem;
   margin-bottom: 0.2rem;
}

.deliverables-list span {
   color: var(--text-light);
   font-size: 0.95rem;
}

.deliverables-image img {
   border-radius: 20px;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
   padding: 100px 0;
   background-color: var(--primary-color);
   text-align: center;
   color: var(--white);
}

.cta-section h2 {
   color: var(--white);
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-section p {
   margin-bottom: 2rem;
   font-size: 1.2rem;
   opacity: 0.9;
}

/* Testimonials */
.testimonials {
   padding: 100px 0;
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
   background: #fff;
   border: 1px solid #e2e8f0;
   padding: 2rem;
   border-radius: var(--border-radius);
}

.testimonial-card p {
   font-style: italic;
   color: var(--text-dark);
   margin-bottom: 1.5rem;
}

.author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.author img {
   border-radius: 50%;
   width: 50px;
   height: 50px;
}

.author span {
   font-weight: 600;
}

/* Location Section (New) */
.location {
   padding: 100px 0;
   background-color: var(--secondary-color);
}

.location-grid {
   display: flex;
   justify-content: center;
   gap: 2rem;
   flex-wrap: wrap;
}

.location-card {
   background: var(--white);
   padding: 3rem;
   border-radius: var(--border-radius);
   flex: 1;
   min-width: 300px;
   max-width: 500px;
   box-shadow: var(--shadow);
   border: 2px solid transparent;
   transition: var(--transition);
}

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

/* Removed featured styling to equalize options */


.location-features {
   list-style: none;
   margin-top: 2rem;
}

.location-features li {
   margin-bottom: 0.8rem;
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--text-light);
}

.location-features i {
   color: var(--primary-color);
}

/* FAQ */
.faq {
   padding: 100px 0;
   background-color: var(--white);
}

.faq-list {
   max-width: 800px;
   margin: 0 auto;
}

details {
   background: var(--secondary-color);
   margin-bottom: 1rem;
   padding: 1.5rem;
   border-radius: var(--border-radius);
   cursor: pointer;
   transition: var(--transition);
}

details:hover {
   background: #eef2f6;
}

summary {
   font-weight: 600;
   list-style: none;
   /* Hide default triangle */
   position: relative;
   padding-right: 20px;
}

summary::-webkit-details-marker {
   display: none;
}

summary::after {
   content: '+';
   position: absolute;
   right: 0;
   font-weight: bold;
   color: var(--primary-color);
}

details[open] summary::after {
   content: '-';
}

details p {
   margin-top: 1rem;
   color: var(--text-light);
   padding-top: 1rem;
   border-top: 1px solid #e2e8f0;
}

/* Footer */
.footer {
   padding: 60px 0 20px;
   background-color: #f8fafc;
   border-top: 1px solid #e2e8f0;
}

.footer-content {
   display: flex;
   justify-content: space-between;
   margin-bottom: 40px;
}

.footer h3 {
   color: var(--primary-color);
   margin-bottom: 1rem;
}

.footer h4 {
   font-family: 'Inter', sans-serif;
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

.socials {
   margin-top: 1rem;
   display: flex;
   gap: 1rem;
}

.socials a {
   color: var(--text-light);
   font-size: 1.2rem;
   transition: var(--transition);
}

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

.footer-bottom {
   text-align: center;
   padding-top: 20px;
   border-top: 1px solid #e2e8f0;
   font-size: 0.9rem;
   color: var(--text-light);
}

/* Floating WhatsApp Section - FIXED POSITION BOTTOM */
.whatsapp-float-section {
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   background-color: var(--white);
   box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
   padding: 1.5rem 0;
   z-index: 9999;

   /* Animation Properties */
   transform: translateY(100%);
   /* Start hidden (slid down) */
   opacity: 0;
   transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.whatsapp-float-section.visible {
   transform: translateY(0);
   opacity: 1;
}

.whatsapp-content-wrapper {
   max-width: var(--max-width);
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 0 1rem;
}

.whatsapp-title {
   font-weight: 700;
   font-size: 1.1rem;
   margin-bottom: 0.25rem;
   color: var(--text-dark);
}

.whatsapp-subtitle {
   font-size: 0.9rem;
   color: var(--text-light);
   margin-bottom: 1rem;
}

.whatsapp-btn {
   background-color: var(--primary-color);
   /* Matches page theme */
   color: white;
   padding: 0.8rem 2rem;
   border-radius: 50px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   font-size: 1rem;
   box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
   transition: var(--transition);
   min-width: 250px;
   justify-content: center;
   /* Touch target size */
   min-height: 48px;
}

.whatsapp-btn:hover {
   background-color: var(--primary-dark);
   transform: translateY(-2px);
}

.whatsapp-btn i {
   font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
   .nav {
      display: none;
      /* Simple hiding for now, normally would be hamburger */
   }

   .hero-container,
   .about-container,
   .deliverables-container {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-content h1 {
      font-size: 2.5rem;
   }

   /* Fix Hero Button Line Breaking on Mobile */
   .hero-content .btn {
      width: 100%;
      padding: 0.9rem 1rem;
      /* Reduced padding */
      font-size: 0.95rem;
      /* Sligthly smaller text */
      white-space: nowrap;
      /* Prevent wrapping */
      overflow: hidden;
      text-overflow: ellipsis;
      /* Should not happen but good safety */
   }

   .hero-image,
   .about-image,
   .deliverables-image {
      order: -1;
      /* Image on top on mobile */
   }

   .footer-content {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
   }

   .socials {
      justify-content: center;
   }

   .stats {
      justify-content: center;
   }

   .deliverables-list li {
      text-align: left;
   }
}
/* Footer Credits */
.footer-credits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #cbd5e1;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-credits strong {
    color: var(--primary-color);
    font-weight: 700;
}
