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

:root {
    --primary-color: #2a6e3f;
    --primary-dark: #1e4f2c;
    --secondary-color: #f8c300;
    --accent-color: #e74c3c;
    --light-color: #f9f9f9;
    --dark-color: #333;
    --gray-color: #666;
    --light-gray: #eee;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

/* Ensure content visibility */
section {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    z-index: 1001;
}

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

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.logo-highlight {
    color: var(--secondary-color);
}

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

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 50px;
    position: relative;
    overflow: hidden;
    background-image: url('images/yard2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(255, 255, 255, 0.4) 0%, rgba(30, 79, 44, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    justify-content: center;
}

.hero-image {
    display: none;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.floating-shield {
    font-size: 12rem;
    color: var(--primary-color);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.services {
    padding: 80px 5%;
    background-color: white;
}

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

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

/* Service Card Image Styles */
.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image.image-loading {
    opacity: 0;
}

.service-image.loaded {
    opacity: 1;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.service-header {
    background-color: var(--primary-color);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

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

.service-body {
    padding: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 20px;
}

.service-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 300px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 110, 63, 0.7), rgba(30, 79, 44, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 80px 5%;
    background-color: var(--light-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background-color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 25px;
    color: var(--dark-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--gray-color);
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Comparison Section Styles */
.comparison-section {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 30px;
    margin: 40px 0;
    align-items: center;
}

.comparison-item {
    text-align: center;
}

.comparison-img {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.comparison-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comparison-item:hover .comparison-img img {
    transform: scale(1.05);
}

.comparison-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(42, 110, 63, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-img.after .comparison-label {
    background: rgba(39, 174, 96, 0.9);
}

.comparison-icon {
    font-size: 3rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.comparison-item h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.comparison-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Map Placeholder Styles */
.map-placeholder {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: var(--shadow);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(42, 110, 63, 0.95);
    padding: 15px 30px;
    border-radius: 30px;
    text-align: center;
}

.map-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.map-overlay i {
    margin-right: 8px;
    color: var(--secondary-color);
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.feature p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    background-color: white;
}

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

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 110, 63, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info {
    padding: 30px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    min-width: 24px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding-top: 60px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 5% 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo p {
    margin-top: 15px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-services li {
    color: #ddd;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.footer-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #ddd;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer Certifications */
.footer-certifications {
    padding: 40px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-certifications h4 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.cert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cert-img.loaded {
    opacity: 1;
}

/* Lazy loading placeholder */
.cert-img:not(.loaded) {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.modal-header h2 i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-color);
    line-height: 1;
    padding: 0 5px;
}

.close-modal:hover {
    color: var(--dark-color);
}

.modal-body {
    color: var(--gray-color);
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Responsive Design - MOBILE FIRST APPROACH */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .floating-shield {
        font-size: 10rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 80px;
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: row;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .logo-img {
        height: 70px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: var(--shadow);
        padding: 120px 0 50px;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 20px 60px;
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .trust-item {
        justify-content: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        display: block;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Services */
    .services {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Features */
    .features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Gallery */
    .gallery {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Comparison Section */
    .comparison-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-icon {
        transform: rotate(90deg);
        font-size: 2.5rem;
    }
    
    .comparison-img {
        height: 200px;
    }
    
    /* Contact */
    .contact {
        padding: 60px 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-services li {
        justify-content: center;
        padding-left: 0;
    }
    
    .footer-services li::before {
        position: static;
        margin-right: 10px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Certifications */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }
    
    .hero {
        padding: 100px 15px 50px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .trust-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .trust-item i {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-header {
        padding: 20px 15px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-price {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    /* Certifications */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer-certifications h4 {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Ensure all content is visible */
*[style*="opacity: 0"] {
    opacity: 1 !important;
}

*[style*="visibility: hidden"] {
    visibility: visible !important;
}

*[style*="transform: translateY"] {
    transform: none !important;
}

/* Styling for the multi-select service box */
#service[multiple] {
    height: auto; /* Overrides fixed heights */
    padding: 10px;
    background-image: none; /* Removes the dropdown arrow which isn't needed here */
}

#service option {
    padding: 10px;
    border-bottom: 1px solid var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
}

#service option:checked {
    background-color: var(--primary-color) !important;
    color: white;
}

/* Booking UI */
.contact-page {
    padding: 140px 20px 40px;
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h1 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-section > p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.operating-hours {
    margin-top: -8px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 500;
}

.booking-alert {
    display: none;
    border-radius: var(--border-radius);
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.booking-alert.success,
.booking-alert.error,
.booking-alert.warning {
    display: block;
}

.booking-alert.success {
    background: #eaf9ef;
    color: #216e3b;
    border: 1px solid #bce3c8;
}

.booking-alert.error {
    background: #fff0f0;
    color: #8f1f1f;
    border: 1px solid #f3baba;
}

.booking-alert.warning {
    background: #fff8e8;
    color: #8c6414;
    border: 1px solid #f1d39a;
}

.booking-calendar {
    border: 1px solid #d9e6dd;
    border-radius: var(--border-radius);
    padding: 18px;
    margin-bottom: 22px;
    background: #fff;
}

.booking-calendar h2 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.calendar-help {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.field-hint {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #5f6c66;
}

.field-error {
    min-height: 1.1em;
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #b42318;
    font-weight: 500;
}

.form-group input.is-invalid,
.form-group select.is-invalid {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.checkbox-group {
    flex-wrap: wrap;
}

.calendar-days,
.time-slots {
    display: grid;
    gap: 10px;
}

.calendar-days {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-bottom: 18px;
}

.time-slots {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.calendar-day,
.time-slot {
    border: 1px solid #d4ddd7;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day:hover,
.time-slot:hover {
    border-color: var(--primary-color);
}

.calendar-day.selected,
.time-slot.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.time-slot.booked {
    background: #efefef;
    color: #9a9a9a;
    border-color: #ddd;
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slots-label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.otp-section {
    margin: 10px 0 18px;
    padding: 16px;
    background: #f7faf7;
    border: 1px solid #d9e6dd;
    border-radius: var(--border-radius);
}

.otp-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 110px;
    }

    .calendar-days,
    .time-slots {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}
