
/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f4f9fc 0%, #e6f2f0 100%);
    color: #1f2f3a;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.2s ease-in-out forwards;
    perspective: 1000px;

}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Header and Nav */
header {
    background: linear-gradient(135deg, #0d3e14 0%, #00b327 100%);
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateZ(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: rotateY(5deg);
    background: transparent;  /* Added to remove any background */
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 5px;
    padding: 5px;
}

.nav-menu li {
    margin-left: 35px;
}

.nav-menu a {
    color: white;
    text-decoration: blanchedalmond;
    padding: 12px 18px;
    transition: all 0.10s ease;
    border-radius: 5px;
    transform: translateZ(0);
}

.nav-menu a:hover {
    background-color: #008535;
    transform: translateY(3px) rotateX(5deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(135deg, #28a745 0%, #155724 100%);  /* Changed to green gradient for pest control theme */
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 1;
    border-radius: 8px;
    transform: translateZ(0);
}

.dropdown-content a {
    color: white;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #0f5132;  /* Changed to darker green for hover */
    transform: translateX(5px);
}

.dropdown:hover .dropdown-content {
    display: block;
}
.social-icons {
    display: flex;
    gap: 18px;
    margin-left: auto;
}

.social-icons a {
    color: white;
    font-size: 1.6em;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.social-icons a:hover {
    color: #cce5ff;
    transform: scale(1.2) rotateY(10deg);
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 4px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #00ff66 0%, #159843 100%);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .logo-image {
        width: 45px;
        height: 45px;
    }
    .logo {
        font-size: 1.4em;
    }
    .social-icons {
        gap: 12px;
    }
}

/* WhatsApp Fixed Floating Button - 100% WORKING */
.whatsapp-float {
    position: fixed !important;
    bottom: 25px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 60px !important;
    font-size: 28px !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 3px solid transparent !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    background: #128C7E !important;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4) !important;
}

.whatsapp-float i {
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mobile */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        width: 55px !important;
        height: 55px !important;
        line-height: 49px !important;
        font-size: 24px !important;
    }
}
/* Hero Section (Full Background) */
.hero {
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    perspective: 1200px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 30px;
    transform: translateZ(50px) rotateX(2deg);
    animation: slideIn 1.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateZ(0) rotateX(10deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateZ(50px) rotateX(2deg) translateY(0);
    }
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.6em;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-button {
    background: linear-gradient(135deg, #0fa528 0%, #0e910e 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transform: translateZ(0);
}

.cta-button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-5px) rotateX(-5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* About Us Section */
.about-us {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: perspective(1000px) rotateX(1deg);
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.1);
}

.about-us h2 {
    color: #13902a;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    padding: 70px 20px;
    text-align: center;
    background: white;
    transform: perspective(1000px) rotateX(-1deg);
}

.services h2 {
    color: #21a315;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    transition: all 0.4s ease;
    transform: translateZ(0);
    border: 1px solid #dee2e6;
}

.service-card:hover {
    transform: translateY(-15px) rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card:hover img {
    transform: scale(1.15) rotateY(10deg);
}

.service-card h3 a {
    color: #086b18;
    text-decoration: none;
    font-size: 1.3em;
    transition: color 0.3s;
}

.service-card h3 a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 70px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    text-align: center;
    transform: perspective(1000px) rotateX(1deg);
}

.why-choose-us h2 {
    color: #0b6611;
    margin-bottom: 45px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.feature {
    flex: 1 1 280px;
    margin: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    transform: translateZ(0);
    border: 1px solid #dee2e6;
}

.feature:hover {
    transform: translateY(-10px) rotateX(-5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.feature i {
    font-size: 3.5em;
    color: #086715;
    margin-bottom: 18px;
    transition: transform 0.3s;
}

.feature:hover i {
    transform: scale(1.2) rotateY(15deg);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 25px auto;
    max-width: 1300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 1.2s ease-in-out;
    transform: perspective(1000px) rotateX(1deg);
}

.trust-content h2 {
    color: #0a5714;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.trust-content p {
    font-size: 1.3em;
    color: #495057;
    margin-bottom: 25px;
}

.trust-icons {
    display: inline-flex;
    align-items: center;
    margin: 12px 25px;
    font-size: 1.6em;
    color: #05611a;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.trust-icons:hover {
    transform: scale(1.15) rotateY(10deg);
}

.trust-icons i {
    margin-right: 12px;
}

.icon-text {
    font-size: 1em;
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 70px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    text-align: center;
    transform: perspective(1000px) rotateX(-1deg);
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.step {
    flex: 1 1 280px;
    margin: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    transform: translateZ(0);
    border: 1px solid #dee2e6;
}

.step:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.step i {
    font-size: 2.5em;
    color: #1c6209;
    margin-bottom: 18px;
    transition: transform 0.3s;
}

.step:hover i {
    transform: scale(1.2) rotateY(15deg);
}

/* Testimonials Section */
.testimonials {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: perspective(1000px) rotateX(1deg);
}

.testimonials h2 {
    color: #0c611a;
    margin-bottom: 45px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.testimonial {
    max-width: 700px;
    margin: 25px auto;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    transform: translateZ(0);
    border: 1px solid #dee2e6;
}

.testimonial:hover {
    transform: translateY(-10px) rotateX(-5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial cite {
    font-weight: bold;
    color: #128132;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateX(10deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: perspective(1200px) rotateX(1deg) translateY(0);
    }
}

.form-group {
    text-align: left;
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 10px;
    color: #00ff66;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #ced4da;
    border-radius: 10px;
    font-size: 1em;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    transform: translateZ(0);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0,123,255,0.3), inset 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-2px) rotateX(2deg);
    background: white;
}

.submit-button {
    background: linear-gradient(135deg, #00ff04 0%, #0056b3 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.submit-button:hover {
    transform: translateY(-5px) rotateX(-5deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #00ff1a 0%, #023c0a 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateX(1deg);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 280px;
    margin: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.footer-section:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-section h3 {
    margin-bottom: 18px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #cce5ff;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 55vh;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .features, .process-steps {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .service-card img {
        width: 70px;
        height: 70px;
    }
    .trust-content h2 {
        font-size: 2em;
    }
    .trust-content p {
        font-size: 1.1em;
    }
    .trust-icons {
        font-size: 1.4em;
        margin: 12px 15px;
    }
 
    
    .footer-content {
        flex-direction: column;
    }
    .carousel img {
        height: 350px;
    }
}
/* Content Section - Professional Styling for Fonts, Backgrounds, and Boxes */
.content-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* Subtle gradient background for depth */
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 15px; /* Rounded box */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Box shadow for 3D effect */
    border: 1px solid #dee
}
/* Google My Business Section - Enhanced with Colors, Formatting, and 3D Effects */
/* Google My Business Section - Enhanced with Colors, Formatting, and 3D Effects */
.gmb-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* Subtle gradient background */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* 3D shadow for depth */
    transform: perspective(1000px) rotateX(2deg); /* Slight 3D tilt */
    animation: fadeInUp 1.5s ease-out; /* Fade-in animation */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(10deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(2deg) translateY(0);
    }
}

.gmb-section h2 {
    color: #2e7d32; /* Green accent for headings */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* 3D text shadow */
    font-size: 2.5em;
    font-weight: bold;
}

.gmb-section p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.2em;
}

.gmb-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gmb-item {
    background: white; /* White background for contrast */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* 3D shadow */
    text-align: left;
    transition: all 0.4s ease; /* Smooth hover transition */
    transform: translateZ(0); /* 3D transform base */
    border: 2px solid #e9ecef; /* Subtle border */
}

.gmb-item:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.05); /* 3D lift, rotate, and scale on hover */
    box-shadow: 0 20px 50px rgba(0,0,0,0.25); /* Deeper 3D shadow */
    border-color: #2e7d32; /* Green border on hover */
}

.gmb-item i {
    font-size: 2.5em;
    color: #2e7d32; /* Green icons */
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.gmb-item:hover i {
    transform: scale(1.2) rotate(10deg); /* 3D scale and rotate icon on hover */
}

.gmb-item strong {
    color: #2e7d32; /* Green for strong text */
    font-weight: bold;
    font-size: 1.1em;
}

.gmb-item p {
    margin: 10px 0;
    color: #333;
    line-height: 1.6;
}

.gmb-link {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); /* Green gradient button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* 3D shadow */
    transform: translateZ(0);
}

.gmb-link:hover {
    transform: translateY(-5px) rotateX(-5deg) scale(1.1); /* 3D lift, tilt, and scale */
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #1b5e20 0%, #0d3e14 100%); /* Darker green on hover */
}

.gmb-reviews {
    margin-top: 20px;
    font-style: italic;
    color: #777;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.1); /* Inset 3D shadow for placeholder */
}

/* Responsive Adjustments for GMB Section */
@media (max-width: 768px) {
    .gmb-section {
        padding: 50px 20px;
        transform: perspective(1000px) rotateX(1deg); /* Less tilt on mobile */
    }
    .gmb-section h2 {
        font-size: 2em;
    }
    .gmb-details {
        grid-template-columns: 1fr;
    }
    .gmb-item:hover {
        transform: translateY(-5px) scale(1.02); /* Reduced 3D effects on mobile */
    }
    .gmb-link:hover {
        transform: translateY(-3px) scale(1.05);
    }
}
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Centers the element vertically */
  background-color: #f8f9fa; /* Light background for professionalism */
}

.contact-info {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  font-family: 'Arial', sans-serif; /* Clean, professional font */
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  font-weight: bold;
}

.contact-info p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: #0056b3;
  text-decoration: underline;
}
/* Blog Header */
.blog-header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.blog-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

/* Blog Grid */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 10%;
    background-color: #f4f4f4;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.blog-content h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #333;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Video Embed Styling */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ==========================================
   ENQUIRY POPUP MODAL
   ========================================== */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

.popup-header {
    background: linear-gradient(135deg, #0d3e14 0%, #00b327 100%);
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.popup-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.8em;
}

.popup-header p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.9;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #0d3e14;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.popup-close:hover {
    color: #00b327;
    transform: rotate(90deg);
}

.popup-form {
    padding: 25px;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    border-color: #00b327;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 179, 39, 0.3);
}

.popup-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0d3e14 0%, #00b327 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.popup-submit:hover {
    background: linear-gradient(135deg, #00b327 0%, #0d3e14 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 179, 39, 0.4);
}

.popup-footer {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.popup-footer p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

.popup-footer a {
    color: #00b327;
    text-decoration: none;
    font-weight: bold;
}

.popup-footer a:hover {
    text-decoration: underline;
}

.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .popup-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .popup-header h2 {
        font-size: 1.4em;
    }
    
    .popup-form {
        padding: 20px;
    }
}
/* ========================================
   ENQUIRY FORM - COMPLETE FIX + 3D STYLING
   ======================================= */
.enquiry-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    margin-bottom: 80px !important; /* Footer spacing */
}

.enquiry-section h2 {
    color: #0d3e14;
    font-size: clamp(2.2em, 6vw, 2.8em);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.enquiry-section > p {
    font-size: 1.3em;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* SUCCESS/ERROR MESSAGES */
.success-message,
.error-message {
    padding: 20px 25px !important;
    border-radius: 12px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid;
    font-weight: 500;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    color: #155724 !important;
    border-left-color: #28a745 !important;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    color: #721c24 !important;
    border-left-color: #dc3545 !important;
}

/* ENQUIRY FORM CONTAINER */
.enquiry-form {
    max-width: 600px !important;
    margin: 0 auto 60px auto !important; /* CRITICAL: Footer gap */
    background: white;
    padding: 45px !important;
    border-radius: 24px;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 10px 30px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden !important;
    transform: translateZ(0);
    transition: all 0.4s ease;
}

.enquiry-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00b327, #28a745, #00ff66);
}

/* FORM GROUPS */
.form-group {
    margin-bottom: 30px !important;
    text-align: left !important;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.05em;
}

.form-group label i {
    margin-right: 12px;
    color: #00b327;
    font-size: 1.2em;
    width: 20px;
}

/* INPUT FIELDS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 20px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 16px !important;
    font-size: 1em !important;
    background: linear-gradient(145deg, #fafbfc 0%, #ffffff 100%) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #00b327 !important;
    box-shadow: 
        0 0 0 4px rgba(0,179,39,0.1),
        0 10px 30px rgba(0,179,39,0.15),
        inset 0 1px 0 rgba(255,255,255,1) !important;
    transform: translateY(-2px) !important;
}

/* SELECT STYLING */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c757d'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px !important;
    appearance: none;
}

/* TEXTAREA */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ULTIMATE SUBMIT BUTTON FIX */
.submit-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 30px !important;
    margin: 40px 0 0 0 !important; /* Top margin only */
    background: linear-gradient(135deg, #00b327 0%, #28a745 50%, #00ff66 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.25em !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 15px 40px rgba(0,179,39,0.4),
        0 5px 15px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.3) !important;
    transform: translateZ(0) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.submit-button:hover {
    transform: translateY(-5px) translateZ(20px) scale(1.05) !important;
    box-shadow: 
        0 25px 60px rgba(0,179,39,0.5),
        0 15px 40px rgba(0,0,0,0.2) !important;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-2px) scale(1.02) !important;
}

/* MOBILE FORM */
@media (max-width: 768px) {
    .enquiry-section {
        padding: 60px 15px;
        margin-bottom: 100px !important;
    }
    
    .enquiry-form {
        padding: 35px 25px !important;
        margin-bottom: 80px !important;
    }
    
    .submit-button {
        padding: 22px 30px !important;
        font-size: 1.3em !important;
        margin-top: 30px !important;
    }
}

/* FOOTER PROTECTION */
footer {
    margin-top: 100px !important;
    position: relative !important;
    z-index: 100 !important;
}

/* GLOBAL FORM SAFETY */
html, body {
    padding-bottom: 120px !important;
}
/* EMERGENCY HIDE */
.success-message,
.error-message,
[style*="background: #d4edda"],
[style*="background: #f8d7da"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
}
