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

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact a {
    margin-right: 20px;
    color: #fff;
}

.top-bar-contact a:hover {
    color: #4CAF50;
}

.top-bar-social a {
    margin-left: 15px;
    color: #fff;
}

.top-bar-social a:hover {
    color: #4CAF50;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

/* Logo Styling */
.logo-text {
    text-decoration: none;
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 18px; /* Further reduced for compact look */
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
    display: inline-block; /* Ensure proper display */
}

.logo-text:hover {
    color: #4CAF50;
}

.footer-logo-text {
    color: white !important;
    font-size: 22px;
}

.footer-logo-text:hover {
    color: #4CAF50 !important;
}

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

/* Navigation Menu - Simple, reliable approach */
.nav-menu {
    display: flex; /* Always show on desktop by default */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 30px !important;
    align-items: center !important;
}

.nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.nav-menu a {
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px 15px !important;
    transition: color 0.3s ease !important;
    position: relative !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4CAF50 !important;
}

.nav-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 2px !important;
    background-color: #4CAF50 !important;
    transition: width 0.3s ease !important;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80% !important;
}

.nav-list {
    display: flex;
}

.nav-link {
    padding: 10px 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #4CAF50;
}

.header-cta {
    display: flex;
    align-items: center;
}

/* Navigation Contact Section */
.nav-contact {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-direction: row !important;
    white-space: nowrap !important;
}

.phone-link {
    margin-right: 0 !important; /* Remove extra margin */
    font-weight: 600;
    white-space: nowrap !important;
    display: inline-block !important;
}

.cta-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 8px 16px; /* Reduced padding for more compact look */
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px; /* Slightly smaller font */
    transition: background-color 0.3s;
    white-space: nowrap; /* Prevent text wrapping */
    text-decoration: none;
    margin-left: 10px; /* Add spacing from phone number */
}

.cta-button:hover {
    background-color: #388E3C;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background-image: url('../images/house-cleaning.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 600px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title-container {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-title-accent {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    color: #FFD700;
    margin-top: -10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block !important;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-primary {
    background-color: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #388E3C;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    font-size: 1rem;
    padding: 15px 35px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
    color: #333;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #4CAF50;
}

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-title strong {
    color: #4CAF50;
}

.cta-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.section-title strong {
    color: #4CAF50;
}

.section-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .services .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .services .services-grid {
        grid-template-columns: 1fr !important;
        max-width: 350px;
        gap: 20px;
    }
}

.service-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.service-image {
    height: 200px !important;
    overflow: hidden;
    position: relative;
    flex-shrink: 0 !important;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(102, 187, 106, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 1px;
}

.service-description {
    color: #555;
    margin-bottom: 18px;
    flex-grow: 1 !important;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-description::-webkit-scrollbar {
    width: 3px;
}

.service-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.service-description::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 2px;
}

.service-link {
    align-self: flex-start;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.service-link::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 ease;
}

.service-link:hover::before {
    left: 100%;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-rating {
    text-align: center;
    margin-bottom: 40px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
}

.rating-powered {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: #333;
}

.testimonial-time {
    font-size: 0.9rem;
    color: #999;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
}

.submit-button:hover {
    background-color: #388E3C;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-info-item p {
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
}

.about-feature i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-right: 10px;
    margin-top: 5px;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.about-feature p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.about-cta {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.about-cta:hover {
    background-color: #388E3C;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-description {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #4CAF50;
}

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

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
}

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

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ccc;
}

.footer-bottom-links a {
    color: #ccc;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #4CAF50;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title-accent {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

/* Desktop Navigation - Ensure proper display on larger screens */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        background-color: transparent !important;
        box-shadow: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        gap: 30px !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-contact .phone-link {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        flex-direction: column !important;
        padding: 20px 0 !important;
        z-index: 1000 !important;
        gap: 0 !important;
    }

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

    .nav-menu li {
        margin: 0 !important;
        text-align: center !important;
        display: block !important;
    }

    .nav-menu a {
        padding: 15px 20px !important;
        display: block !important;
        border-bottom: 1px solid #f0f0f0 !important;
        white-space: normal !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-contact .phone-link {
        display: none !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title-accent {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .services-grid,
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-container {
        order: 2;
    }

    .contact-info {
        order: 1;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-accent {
        font-size: 3.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}



/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    padding: 50px 0 40px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.submit-btn {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.cta-card {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cta-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2; /* Move contact info to bottom */
    }

    .contact-form {
        order: 1; /* Keep contact form at top */
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-container {
        order: -1;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

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

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 25px 15px;
    }
}



/* FAQ Page Styles */
.faq-page {
    padding: 100px 0 80px;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-page {
        padding: 80px 0 60px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 300px;
    }

    .faq-toggle {
        font-size: 1.3rem;
        margin-left: 15px;
    }
}


/* Mobile Contact Page Layout Fixes */
@media (max-width: 768px) {
    /* Contact form section mobile layout */
    .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        grid-template-columns: none !important;
    }

    /* Contact form takes full width on mobile */
    .contact-form {
        order: 1;
        width: 100% !important;
    }

    /* Contact info moves to bottom on mobile */
    .contact-info {
        order: 2;
        width: 100% !important;
        margin-top: 20px;
    }

    /* Form row becomes single column on mobile */
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        grid-template-columns: none !important;
    }

    /* Contact hero section mobile adjustments */
    .contact-hero h1 {
        font-size: 2rem !important;
    }

    .contact-hero p {
        font-size: 1rem !important;
    }

    /* Contact form section mobile padding */
    .contact-form-section {
        padding: 40px 0 !important;
    }

    /* Info items mobile spacing */
    .info-item {
        margin-bottom: 25px !important;
    }

    .info-content h3 {
        font-size: 1.1rem !important;
    }
}


/* Mobile Menu Dropdown Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: #4CAF50;
        color: white;
    }

    /* Show BOOK NOW button on mobile header but NOT in dropdown menu */
    .nav-contact {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }

    .nav-contact .phone-link {
        display: none !important;
    }

    .nav-contact .cta-button {
        display: inline-block !important;
        font-size: 12px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    /* Hide BOOK NOW button when mobile menu is active (in dropdown) */
    .nav-menu.active ~ .nav-contact .cta-button {
        display: none !important;
    }

    /* Ensure BOOK NOW button doesn't appear inside mobile dropdown menu */
    .nav-menu.active .nav-contact,
    .nav-menu.active .cta-button {
        display: none !important;
    }
}

/* Book Page Mobile Header Fixes */
@media (max-width: 768px) {
    /* Fix book page header layout on mobile */
    .nav-container {
        height: 60px !important;
        padding: 0 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .nav-logo {
        font-size: 1.1rem !important;
        flex-shrink: 0;
    }

    .nav-logo a {
        color: #333 !important;
        text-decoration: none !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .phone-link {
        display: none !important;
    }

    .btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    /* Ensure mobile menu toggle is visible and clickable on book page */
    .mobile-menu-toggle,
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1002;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 5px;
    }

    .mobile-menu-toggle span,
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* Hide desktop navigation on mobile for book page */
    .nav-menu {
        display: none !important;
    }

    .nav-menu.active {
        display: flex !important;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active li {
        margin: 15px 0;
    }

    .nav-menu.active a {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-menu.active a:hover {
        background: #4CAF50;
        color: white;
    }
}



/* Contact Page Icon Styling - Green Theme */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.contact-item a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

/* Contact Form Submit Button Green Styling */
.contact-form-container .submit-btn {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.contact-form-container .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.contact-form-container .submit-btn i {
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 1rem;
}
