/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f3f4f6; /* Lighter background for content sections */
    color: #333; /* Darker text for readability on white/light backgrounds */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.top-info-bar {
    background-color: #ffffff;
    padding: 1rem 4rem;
    width: 100%;
    z-index: 101;
    position: relative;
    border-bottom: 3px solid #e0e0e0;
    
    /* Animation */
    opacity: 0; /* Start hidden */
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

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

.logo-area .info-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.info-items {
    display: flex;
    gap: 3rem;
}

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

.info-icon {
    font-size: 2rem;
    color: #f97316; /* Orange color like the reference */
}

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

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
    text-transform: capitalize;
}

.info-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #4b5563;
    font-size: 0.9rem;
}

.header {
    display: flex;
    justify-content: center; /* Centered nav */
    align-items: center;
    padding: 1rem 4rem;
    position: absolute; /* Kept absolute to overlap hero */
    top: 115px; /* Height of top bar approx */
    left: 0;
    width: 100%;
    z-index: 100;
    flex-direction: column; /* Stack nav and social */
    gap: 1rem;
    
    /* Animation */
    opacity: 0; /* Start hidden */
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* Adjust nav menu to center */
.nav-menu ul {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* User requested Button Design .btn-23 */
.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #22c55e; /* Green color */
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: 'Oswald', sans-serif; /* Stronger font for buttons */
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
  
  /* Shape and layout */
  border-radius: 99rem;
  border-width: 0; /* Removed border as requested */
  overflow: hidden;
  padding: 0.6rem 1.5rem;
  position: relative;
  display: inline-block;
}

.btn-23:disabled {
  cursor: default;
}

.btn-23:-moz-focusring {
  outline: auto;
}

.btn-23 svg {
  display: block;
  vertical-align: middle;
}

.btn-23 [hidden] {
  display: none;
}

.btn-23 span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
  pointer-events: none;
  width: 100%;
  height: 100%;
  white-space: nowrap; /* Fix for text stacking/wrapping */
}

/* Ensure the static text is visible initially */
.btn-23 .text {
    position: relative; /* Changed from absolute to relative to give the button height/width if needed, but grid handles it. Keeping absolute as per snippet but ensuring parent has size */
    opacity: 1;
}

.btn-23 .marquee {
  --spacing: 15em; /* Increased from 5em to prevent overlap on long text */
  --start: 0em;
  --end: 15em; /* Match spacing */
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: absolute;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}

.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-23:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: #333; /* Darker icons for visibility if background is light, or keep white if over hero */
    color: #fff; /* Keep white for over hero */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Shadow for visibility */
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    height: calc(100vh - 115px); /* Subtract approx top bar height */
    margin-top: 0; /* Header is absolute, but top bar is relative flow */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out;
    color: #fff; /* Ensure hero text is white */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to improve text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    max-width: 900px;
    padding: 0 1rem;
    
    /* Animation */
    opacity: 0; /* Start hidden */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: #22c55e; /* Match button green */
    display: block; /* Make it stack or remove this to keep inline */
}

/* Adjust for desktop to be side-by-side or stacked as preferred. 
   User asked to change arrangement. Let's make "Fumigaciones" small top, "Somar" big bottom? 
   Or just one big block. Let's try block. */
.hero-title .highlight {
    display: inline-block;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-description strong {
    color: #22c55e;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: #22c55e; /* Green to match branding */
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.cta-button:hover {
    background-color: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10; /* Ensure arrows are clickable above the overlay */
}

.nav-arrow:hover {
    opacity: 1;
}

.prev {
    left: 4rem;
}

.next {
    right: 4rem;
}

/* Features Section (Cards) */
.features-section {
    padding: 0 2rem;
    margin-top: -50px; /* Overlap with hero */
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 250px;
}

.feature-card:hover {
    background-color: #22c55e; /* Green hover */
    transform: translateY(-10px);
}

.feature-card:hover h3,
.feature-card:hover .feature-icon {
    color: white;
}

.feature-card:hover .accent-line {
    background-color: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.accent-line {
    width: 50px;
    height: 4px;
    background-color: #22c55e;
    transition: background-color 0.3s ease;
}

/* About Us Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-image .image-wrapper {
    position: relative;
    border-radius: 50% 0 50% 50%; /* Organic shape like reference */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05); /* Zoom in slightly */
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f97316;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-content p {
    font-family: 'Montserrat', sans-serif;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.services-list ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #1f2937;
    font-weight: 500;
    font-size: 0.95rem;
}

.services-list ul li i {
    color: #22c55e; /* Green checks */
    font-size: 1rem;
}

.btn-about {
    display: inline-block;
    background-color: #b45309; /* Golden/Brown tone from image */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-about:hover {
    background-color: #92400e;
}

/* Process Section (How We Work) */
.process-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.process-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.process-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.process-header p {
    font-family: 'Montserrat', sans-serif;
    color: #6b7280;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: #f9fafb;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.process-image {
    margin: 0 auto 2rem auto;
    border-radius: 16px;
    overflow: hidden;
    max-height: 220px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #22c55e;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #e5e7eb;
    z-index: 1;
    opacity: 0.5;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: #dcfce7; /* Light green bg */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    color: #16a34a; /* Darker green icon */
    position: relative;
    z-index: 2;
}

.process-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.process-card p {
    font-family: 'Montserrat', sans-serif;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-header p {
    font-family: 'Montserrat', sans-serif;
    color: #6b7280;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #374151;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316; /* Orange focus like image button */
    background-color: #fff;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.btn-submit {
    background-color: #b45309; /* Golden/Brown tone match */
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #92400e;
}

/* Philosophy Section */
.philosophy-section {
    text-align: center;
    padding: 4rem 0;
    background-color: #f3f4f6;
}

.philosophy-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.philosophy-banner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #7e22ce; /* Purple background */
    color: white;
    min-height: 300px;
}

.philosophy-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.philosophy-text {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -40px; /* Overlap image */
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.icon-circle i {
    font-size: 2rem;
    color: #333;
}

.philosophy-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.highlight-text {
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Footer */
.site-footer {
    background-color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-bug-icon {
    font-size: 2rem;
    color: #f97316; /* Orange accent */
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item i {
    font-size: 1.5rem;
    color: #b45309;
}

.footer-contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.footer-contact-item a {
    color: #4b5563;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #3b5998; /* FB Blue */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 1.2rem;
}

.footer-social a:nth-child(2) {
    background-color: #E1306C; /* Insta gradient/color */
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-line {
    width: 50px;
    height: 3px;
    background-color: #b45309;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.footer-address {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.5;
}

.footer-address i {
    color: #b45309;
    margin-top: 0.2rem;
}

.footer-phones .phone-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    align-items: center;
    color: #4b5563;
}

.footer-phones i {
    color: #b45309;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #9ca3af;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 4rem;
    }
    
    .top-info-bar {
        padding: 1rem;
    }
    
    .info-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .info-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .header {
        top: 300px; /* Push down further on mobile */
        padding: 1rem;
    }

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

    .about-content {
        text-align: center; /* Center align on mobile */
    }

    .services-list {
        text-align: left; /* Keep list left aligned usually better, or center */
        justify-items: center; /* If grid */
    }
    
    .section-label {
        justify-content: center;
    }
    
    .philosophy-banner {
        flex-direction: column;
    }
    
    .icon-circle {
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
    }
    
    .philosophy-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .header {
        position: relative; /* On mobile let it flow */
        top: 0;
        background-color: transparent;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        height: 60vh; /* Smaller hero on mobile */
    }

    .nav-menu ul {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-23 {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .nav-arrow {
        display: none; /* Hide arrows on mobile */
    }

    .features-section {
        margin-top: 2rem; /* Remove negative margin on mobile */
    }
    
    .about-section {
        padding: 2rem 1rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}
