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

:root {
    --primary-color: #344E41;
    --primary-dark: #263429;
    --secondary-color: #2d3436;
    --accent-color: #588157;
    --accent-warm: #e67e22;
    --accent-coral: #ff6b6b;
    --accent-teal: #1abc9c;
    --accent-purple: #9b59b6;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #7f8c8d;
    --bg-light: #f4f7fb;
    --bg-gradient-light: linear-gradient(135deg, #f4f7fb 0%, #e8f4fd 100%);
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #344E41 0%, #588157 100%);
    --bg-gradient-warm: linear-gradient(135deg, #ff6b6b 0%, #e67e22 100%);
    --bg-gradient-teal: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    --bg-gradient-purple: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.nav-brand a:hover {
    transform: scale(1.02);
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

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

.nav-brand .brand-text,
.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.customer-login {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition);
}

.nav-link.customer-login:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 78, 65, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0; /* Changed from 2px to 0 to remove the line completely */
    background: var(--primary-color);
    transition: var(--transition);
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none; /* Ensure no bullets/dots are shown */
    margin: 0;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    position: relative;
}

.dropdown-menu .nav-link {
    padding: 0.75rem 1.5rem;
    display: block;
    white-space: nowrap;
    position: relative; /* Ensure proper positioning */
    border: none; /* No borders */
    text-decoration: none;
}

.dropdown-menu .nav-link:hover {
    background: var(--bg-light);
}

/* Ensure dropdown menu links don't have any pseudo-elements */
.dropdown-menu .nav-link::after {
    display: none;
}

.dropdown-toggle {
    position: relative;
    padding-right: 0.75rem !important; /* Reduced padding since we removed the triangle */
}

.dropdown-toggle::after {
    content: none; /* Remove the triangle completely */
}

/* Removed dropdown toggle rotation effect */

.nav-link:hover::after {
    width: 0; /* Changed from 100% to 0 to prevent the line from appearing on hover */
}

.nav-link.customer-login::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.phone-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.phone-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.book-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 78, 65, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Location Banner */
.location-banner {
    margin-top: 70px; /* Account for fixed header */
    z-index: 100;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-warm) 100%);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Account for fixed header */
    z-index: 100;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.announcement-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.announcement-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.announcement-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: var(--bg-gradient-light);
    overflow: hidden;
    position: relative;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 450px;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: #344E41 !important;
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-primary:hover {
    background: #263429 !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-apply {
    background: #344E41 !important;
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-apply:hover {
    background: #263429 !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white !important;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 70px 0;
    background: var(--bg-gradient-light);
    position: relative;
}


.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-single-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: none;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    z-index: 1;
}

.service-card:nth-child(1)::before {
    background: var(--bg-gradient);
}

.service-card:nth-child(2)::before {
    background: var(--bg-gradient-teal);
}

.service-card:nth-child(3)::before {
    background: var(--bg-gradient-warm);
}

.service-card:nth-child(4)::before {
    background: var(--bg-gradient-purple);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.service-card.featured::before {
    background: rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-icon {
    color: white;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card.featured li::before {
    color: white;
}

.service-card .cta-primary {
    margin-top: 1.5rem;
    text-decoration: none;
    display: inline-block;
}

/* Why Choose Us Section */
.why-choose {
    padding: 70px 0;
    background: var(--bg-white);
    position: relative;
}


.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
    background: var(--bg-gradient-light);
    position: relative;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 1.8rem;
    border-radius: 20px;
    border: none;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-warm);
    z-index: 1;
}

.testimonial-card:nth-child(2)::before {
    background: var(--bg-gradient-teal);
}

.testimonial-card:nth-child(3)::before {
    background: var(--bg-gradient-purple);
}

.testimonial-card:nth-child(4)::before {
    background: var(--bg-gradient);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--accent-warm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background: var(--bg-white);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-white);
    padding: 1.8rem;
    border-radius: 20px;
    border: none;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-teal);
    z-index: 1;
}

.faq-item:nth-child(2)::before {
    background: var(--bg-gradient-purple);
}

.faq-item:nth-child(3)::before {
    background: var(--bg-gradient);
}

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

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-primary {
    background: #344E41 !important;
    color: white !important;
}

.cta-buttons .cta-primary:hover {
    background: #263429 !important;
    transform: translateY(-3px);
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Contact Section */
.contact {
    padding: 70px 0;
    background: var(--bg-gradient-light);
    position: relative;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    z-index: 1;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: var(--transition);
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.25rem;
}

.contact-card:nth-child(2) .contact-icon {
    background: var(--accent-teal);
}

.contact-card:nth-child(3) .contact-icon {
    background: var(--accent-warm);
}

.contact-card:nth-child(4) .contact-icon {
    background: var(--accent-coral);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.contact-us-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.75rem;
}

.contact-us-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 78, 65, 0.3);
}

.contact-us-card .contact-us-btn {
    margin-top: 1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
}

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

.form-group:has(select:only-child) {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 78, 65, 0.1);
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.footer-brand .footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand .footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #588157;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 1px rgba(0, 0, 0, 0.5);
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #588157;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 1px rgba(0, 0, 0, 0.5);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4,
.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link.google-business:hover {
    color: var(--accent-warm);
}

/* Legal Links Styling */
.footer-legal {
    position: relative;
}

.footer-legal h4 {
    color: #588157;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-links li {
    position: relative;
    padding-left: 1.25rem;
}

.legal-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #588157;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-legal a {
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Add accent color variations */
.service-card:nth-child(2) .service-icon {
    background: var(--accent-teal);
    color: white;
}

.service-card:nth-child(4) .service-icon {
    background: var(--accent-coral);
    color: white;
}

.feature:nth-child(2) .feature-icon {
    background: var(--accent-teal);
}

.feature:nth-child(4) .feature-icon {
    background: var(--accent-warm);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--accent-teal);
}

.contact-item:nth-child(3) .contact-icon {
    background: var(--accent-coral);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Styles */
.service-card,
.feature,
.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in,
.feature.animate-in,
.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 1rem 0;
    }
    
    .announcement-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .announcement-content p {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 65px;
    }

    .nav-brand .logo {
        height: 35px;
        max-width: 80px;
    }
    
    .nav-brand .brand-text,
    .nav-brand h2 {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
    }

    .nav-link.customer-login {
        margin: 1rem 2rem;
        width: auto;
        display: inline-block;
        text-align: center;
    }
    
    .nav-cta {
        gap: 0.5rem;
    }

    .nav-cta .phone-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .footer-brand-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-brand .footer-logo {
        height: 50px;
        max-width: 120px;
        object-fit: contain;
        object-position: center;
        filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .footer-brand .footer-brand-text {
        font-size: 1.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
    }

    .services-single-stack {
        max-width: 100%;
        gap: 1rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
        height: 60px;
    }

    .nav-brand .logo {
        height: 30px;
        max-width: 60px;
    }
    
    .nav-brand .brand-text,
    .nav-brand h2 {
        font-size: 1rem;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .why-choose,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .nav-cta {
        gap: 0.5rem;
    }
    
    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 0.75rem 0;
    margin-top: 70px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    margin-right: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    display: inline-block;
    margin-right: 0.5rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #344E41;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #588157;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Accessibility and Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.phone-btn:focus,
.book-btn:focus,
.cta-primary:focus,
.cta-secondary:focus,
.form-submit:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.form-submit:disabled,
.quote-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* High contrast support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
        --text-light: #333;
    }
}

/* Print styles */
@media print {
    .header,
    .hamburger,
    .nav-cta,
    .cta-section,
    .footer-social {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .services,
    .why-choose,
    .contact {
        padding: 2rem 0;
    }
}

/* Security Indicators */
.security-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
    margin-top: 0.5rem;
}

.security-indicator svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.security-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.security-badge {
    position: relative;
    display: inline-block;
}

.security-badge::after {
    content: '🔒';
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 12px;
    opacity: 0.7;
}

.form-security-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #166534;
}

.form-security-info .security-features {
    list-style: none;
    margin-top: 0.5rem;
}

.form-security-info .security-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.form-security-info .security-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

/* Loading states for security verification */
.security-loading {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #92400e;
}

.security-loading::after {
    content: '⏳';
}

/* Security verification animation */
@keyframes securityPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.security-verifying {
    animation: securityPulse 1.5s ease-in-out infinite;
}