.qb-benefits {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    text-align: left;
}

.benefit-card i {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    margin-bottom: .75rem;
}

.benefit-card h4 { margin: 0 0 .35rem; }
.benefit-card p { margin: 0; color: var(--gray-color); }

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

.benefit-card.highlight {
    border-color: var(--primary-color);
}

.benefits-cta { text-align: center; margin-top: 2rem; }

/* Global Styles and Variables */
:root {
    --primary-color: #0a8754;
    --secondary-color: #17a2b8;
    --accent-color: #fd7e14;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --gray-color: #6c757d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none; /* prevent bounce effects on some browsers */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 0; /* Reset any padding */
}

/* Prevent horizontal scroll on mobile without constraining complex components */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
}

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

/* Typography - Golden Ratio Based */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(26%) sepia(89%) saturate(1285%) hue-rotate(127deg) brightness(94%) contrast(97%);
    transition: var(--transition);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.navbar.scrolled .logo {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 135, 84, 0.85), rgba(23, 162, 184, 0.85));
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    animation: fadeInUp 1s ease;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-contact {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.hero-contact i {
    margin: 0 5px;
    color: var(--accent-color);
}

.hero-confidentiality {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-confidentiality i {
    color: white;
    font-size: 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1rem;
    margin: 1rem auto;
    max-width: 600px;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #e56e0c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-success:hover {
    background: #076e43;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-block {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* Section Common Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* About Section */
.about {
    background: var(--light-color);
}

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

/* Subtle fade-in for entire about section to reduce jitter */
.about .container {
    opacity: 0;
    transform: translateY(10px);
    animation: aboutFadeIn .6s ease forwards;
}

@keyframes aboutFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.about-image {
    position: relative;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(10, 135, 84, 0.3);
}

.about-experience .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-experience .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-features {
    margin: 1.5rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: 10px 0;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-mission {
    background: rgba(10, 135, 84, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.about-cta {
    margin-top: 2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Disable transform hover effects on mobile/touch devices */
@media (max-width: 768px) {
    .service-card,
    .service-card:hover {
        transform: none !important;
    }
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
}

.service-description {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-list li strong {
    color: var(--dark-color);
    margin-bottom: 3px;
}

/* Why Choose Us Section */
.why-us {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-divider {
    background: var(--white);
}

/* Reviews Slanted Section */
.reviews-slanted {
    position: relative;
    padding: 130px 0 150px 0;
    color: var(--white);
     overflow: hidden;
}

.reviews-slanted::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* Diagonal top edge, straight bottom edge */
    clip-path:polygon(0 12%, 100% 0, 100% 100%, 0% 100%);   
     z-index: 0;
}

.reviews-slanted .container {
    position: relative;
    z-index: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.reviews-badge {
    display: inline-block;
    color: #cfe9dc;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Mobile spacing for reviews badge */
@media (max-width: 768px) {
    .reviews-badge { margin-top: 2rem; }
}

.reviews-slanted h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.reviews-subtitle {
    color: #e7f4ef;
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reviews-quote {
    margin: 1.5rem 0 0.5rem;
}

.reviews-author {
    font-weight: 600;
    opacity: 0.95;
}

/* Professional list (no tiles) */
.reviews-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
}

.review-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
    gap: 12px;
}

.review-item i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.1rem;
}

.review-item h4 {
    margin: 0 0 4px;
    color: var(--white);
    font-weight: 600;
}

.review-item p {
    margin: 0;
    color: #e7f4ef;
}

.reviews-dots {
    margin-top: 20px;
}
.reviews-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}
.reviews-dots span:first-child {
    width: 22px;
    border-radius: 5px;
}

.reviews-image .image-wrap {
    position: relative;
    padding: 10px;
    border-radius: 16px;
   
}
.reviews-image img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-list { grid-template-columns: 1fr; }
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.feature:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-weight: 500;
}

/* Consultation Section */
.consultation {
    background: var(--light-color);
}

.consultation-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 730px;
    gap: 3rem;
    align-items: start;
}

.consultation-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
}

/* Slightly reduce flyer column to accommodate wider form */
.consultation-image { max-width: 600px; }

.consultation-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 730px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.consultation-form form {
    display: grid;
    row-gap: 1.25rem;
}

/* QuickBooks registration form layout */
.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    align-items: start;
}

.consultation-form .form-row .form-group { margin-bottom: 0; }

.consultation-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10,135,84,0.12);
}

@media (max-width: 768px) {
    .consultation-form { 
        width: 100%; 
        padding: 1.5rem; 
        margin: 0 auto;
    }
    .consultation-form .form-row { grid-template-columns: 1fr !important; gap: .9rem; }
    .consultation-image { height: auto; width: 100%; max-width: 100%; }
    .consultation-image img { width: 100%; height: auto; object-fit: contain; }
    .consultation-content { grid-template-columns: 1fr !important; gap: 1.5rem !important; align-items: start !important; }
    /* Ensure option cards are readable on mobile */
    .option-cards { grid-template-columns: 1fr !important; }
}
.option-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.option-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
}

.option-card input[type="radio"] {
    display: none;
}

.option-card .option-title { font-weight: 600; }
.option-card .option-price { font-weight: 700; color: var(--primary-color); }

.option-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10,135,84,0.12);
}

.discount-note { color: var(--gray-color); font-size: 0.9rem; margin-top: 0.25rem; margin-bottom: 0.75rem; }

.info-btn {
    margin-left: 0.5rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #cfd4d9;
    background: #f7f9fb;
    color: #444;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

/* Payment Plan Styles */
.payment-plan-options {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: .5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: .6rem .75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

.payment-option:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.payment-option.recommended {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.payment-option.recommended:hover {
    border-color: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

/* Active state when checkbox is checked */
.payment-option.active {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

/* Inactive: remove highlight */
.payment-option:not(.active) {
    border-color: #e0e0e0;
    background: #fff;
}

.payment-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.payment-row input[type="radio"],
.payment-row input[type="checkbox"] {
    transform: scale(1.2);
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none !important;
    outline: none;
    accent-color: var(--primary-color);
}
.payment-row input[type="radio"]:focus,
.payment-row input[type="checkbox"]:focus {
    box-shadow: none !important;
    outline: none;
}

.payment-option input[type="radio"]:checked + .payment-details .payment-title {
    color: #007bff;
    font-weight: 600;
}

.payment-option.recommended input[type="radio"]:checked + .payment-details .payment-title {
    color: #28a745;
}

.payment-details { display: none; }

.payment-title {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-description {
    font-size: 0.85rem;
    color: #666;
}

.payment-plan-compact { margin-top: .25rem; }
.payment-plan-compact label { margin-bottom: .25rem; }
.discount-policy { margin-top: 0rem; margin-bottom: 0rem; }

.payment-plan-info {
    margin-top: 1rem;
}

.info-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border: 1px solid #d0e0ff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.info-card i {
    color: #007bff;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 0.75rem 0;
    color: #333;
    font-size: 1.1rem;
}

.info-content p {
    margin: 0 0 0.75rem 0;
    color: #555;
    line-height: 1.5;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.info-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.info-content .highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    font-weight: 500;
    color: #856404;
}

/* Responsive Payment Plan */
@media (max-width: 768px) {
    .payment-plan-options {
        gap: 0.75rem;
    }
    
    .payment-option {
        padding: 0.75rem;
    }
    
    .info-card {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .info-card i {
        align-self: flex-start;
    }
}

/* Modal */
.modal { 
    position: fixed; 
    inset: 0; 
    display: none; 
    z-index: 1002; 
    animation: fadeIn 0.3s ease;
}
.modal.show { 
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-backdrop { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.6); 
    backdrop-filter: blur(4px);
}
.modal-box {
    position: relative; 
    z-index: 1; 
    background: #fff; 
    width: min(580px, 90%);
    border-radius: 16px; 
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    transform: scale(0.9);
    animation: modalSlideIn 0.3s ease forwards;
    overflow: hidden;
}
.modal-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 2rem 2.5rem 1.25rem; 
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    flex: 1;
}
.modal-content { 
    padding: 2rem 2.5rem 2.5rem; 
    line-height: 1.6;
}
.modal-content p {
    margin-bottom: 1rem;
    color: var(--text-color);
}
.modal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.modal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.modal-close { 
    border: none; 
    background: rgba(0,0,0,0.1); 
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px; 
    cursor: pointer; 
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: rgba(0,0,0,0.15);
    color: var(--dark-color);
    transform: scale(1.1);
}
.modal-sub { 
    color: var(--gray-color); 
    margin: 0 0 .75rem; 
}

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

@keyframes modalSlideIn {
    from { 
        transform: scale(0.9) translateY(-20px); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

/* Success modal specific styling */
#successModal .modal-content,
#contactSuccessModal .modal-content {
    text-align: left;
}

#successModal .modal-content > div:first-child,
#contactSuccessModal .modal-content > div:first-child {
    text-align: center;
    margin-bottom: 1.5rem;
}

#successModal .modal-content .fas.fa-check-circle,
#contactSuccessModal .modal-content .fas.fa-check-circle {
    animation: checkmarkPop 0.6s ease 0.3s both;
}

@keyframes checkmarkPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
    .modal-box {
        width: 92%;
        margin: 0;
    }
    .modal-header {
        padding: 1.75rem 2rem 1rem;
    }
    .modal-header h3 {
        font-size: 1.3rem;
    }
    .modal-content {
        padding: 1.75rem 2rem 2.25rem;
    }
    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Consent checkbox */
.consent-group { margin-top: .5rem; }
.checkbox-label { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; }
.checkbox-label a { color: var(--primary-color); text-decoration: underline; }

.discount-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.discount-item { display: grid; grid-template-columns: 130px 1fr; gap: .75rem; align-items: center; padding: .75rem; border: 1px solid #eee; border-radius: 10px; background: #fafafa; }
.discount-item .badge { display: inline-block; padding: .35rem .6rem; border-radius: 999px; background: rgba(10,135,84,.1); color: var(--primary-color); font-weight: 700; font-size: .9rem; text-align: center; }
.discount-item .text { color: #444; }

.price-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    padding: .75rem 1rem;
    background: var(--light-color);
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-top: 0.35rem;
    margin-bottom: .75rem;
}
.price-summary .summary-discount {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .25rem;
}
.price-summary .total { grid-column: 1 / -1; font-size: 1.1rem; }

.price-summary .due-now { grid-column: 1 / -1; font-size: 1.1rem; color: #0a8754; }
.price-summary .due-now .per-note { color: #0a8754; margin-left: .25rem; font-weight: 600; }
.price-summary .due-now .full-total { color: #666; font-weight: 500; margin-left: .35rem; }
.payment-plan-note { 
    grid-column: 1 / -1; 
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .payment-plan-note { font-size: 0.7rem; }
}


.form-group {
    margin-bottom: 1rem;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 135, 84, 0.1);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 800px;
}

.testimonial-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.dot:hover {
    background: rgba(10, 135, 84, 0.3);
    border-color: var(--primary-color);
}

.dot:hover::before {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.3;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Slider Navigation Arrows */
.testimonial-slider {
    position: relative;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(10, 135, 84, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

@media (max-width: 1200px) {
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.slider-nav i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 0;
    width: 100%;
    margin: 0;
}

.footer-top {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 0;
    text-align: center;
}

.footer-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-confidentiality {
    font-size: 0.85rem;
    color: #0a8754;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-confidentiality i {
    color: #0a8754;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.business-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    width: 20px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    width: 100%;
    margin: 0;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    /* Navigation responsive */
    .navbar .container {
        padding: 0.8rem 15px;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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);
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 1rem 15px;
        gap: 1rem;
    }
    
    .hero-slide h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    .hero-slide p { font-size: 1rem !important; }
    
    .hero-subtitle {
        display: none !important;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat {
        min-width: auto;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: row;
        width: 100%;
        padding: 0 15px;
        gap: 0.8rem;
        margin: 1rem 0;
        justify-content: center;
    }
    
    .hero-cta .btn {
        flex: 1;
        max-width: 45%;
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
        text-align: center;
    }
    
    .hero-contact {
        font-size: 0.8rem;
        padding: 0 15px;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .hero-confidentiality {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.8rem 15px;
        text-align: center;
    }
    
    .hero-slide .hero-content {
        padding: 1rem 15px;
        justify-content: center;
    }
    
    /* About section mobile */
    .about-content,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* What We Do section mobile - stack into single column */
    .what-we-do-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .what-we-do-image {
        justify-self: center;
    }
    .what-we-do-image img {
        display: block;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .about-experience {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .about-experience .years {
        font-size: 2rem;
    }
    
    /* Services mobile */
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        overflow-x: hidden;
    }
    
    .service-card {
        padding: 1.5rem;
        overflow-x: hidden;
    }
    
    .service-list {
        font-size: 0.9rem;
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-list li {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-list li div {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .services {
        overflow-x: hidden;
    }
    
    .services .container {
        overflow-x: hidden;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    /* Slider mobile */
    .slider-nav {
        display: none;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    /* Metrics mobile */
    .metrics-track { width: 300%; }
    .metric-slide { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.25rem 0; }
    .metric-content { padding: 1.5rem 1rem; }
    
    .metric-icon i {
        font-size: 3rem;
    }
    
    .metric-content h3 {
        font-size: 2rem;
    }
    
    .metric-details {
        padding: 0.75rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
    }
    
    /* Contact Section Mobile */
    .contact-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    .contact-form-section {
        padding: 1.25rem;
        max-height: none;
    }

    /* New structure classes on index.html */
    .contact-info-section { display: grid; gap: 1.25rem; }
    .contact-info-section .info-card { padding: 1rem; }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-info-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Cookie notice mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small phone adjustments */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Metrics Section */
.metrics {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.metrics-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
    font-style: italic;
}

.metrics-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.metrics-track {
    display: flex;
    transition: transform 0.5s ease;
}

.metric-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.metric-content {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 135, 84, 0.1);
    max-height: 400px;
}

.metric-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.metric-content:hover::before {
    transform: scaleX(1);
}

.metric-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(10, 135, 84, 0.3);
}

.metric-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.metric-icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(10, 135, 84, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.metric-content:hover .metric-icon i {
    transform: scale(1.1);
}

.metric-content h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.4rem * 1.2 * 2);
}

.metric-description {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    padding: 1rem;
    background: rgba(10, 135, 84, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.detail-item {
    font-size: 0.85rem;
    color: var(--gray-color);
    line-height: 1.4;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(10, 135, 84, 0.3);
    border-color: var(--primary-color);
}

.indicator.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-color);
    border-color: var(--primary-color);
}



/* Smooth Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom Scrollbar - desktop only */
@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: var(--light-color);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--dark-color);
    }
}

/* Hide scrollbar entirely on mobile */
@media (max-width: 768px) {
    body {
        -ms-overflow-style: none; /* IE/Edge */
        scrollbar-width: none;    /* Firefox */
    }
    body::-webkit-scrollbar { /* Chrome/Safari */
        display: none;
        width: 0;
        height: 0;
    }
}

/* Hide scrollbar on mobile only while Services section is in view */
@media (max-width: 768px) {
    body.hide-scrollbar-on-mobile {
        -ms-overflow-style: none; /* IE/Edge */
        scrollbar-width: none;    /* Firefox */
    }
    body.hide-scrollbar-on-mobile::-webkit-scrollbar { /* Chrome/Safari */
        display: none;
        width: 0;
        height: 0;
    }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

.form-group input.error:focus,
.form-group select.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* Additional animations */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state */
body:not(.loaded) {
    overflow: hidden;
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 998;
    overflow: hidden;
}

.whatsapp-float:hover {
    width: 180px;
    background: #1EBE54;
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 30px;
    margin-right: 0;
    transition: margin 0.3s ease;
}

.whatsapp-float:hover i {
    margin-right: 10px;
}

.whatsapp-text {
    display: none;
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-text {
    display: block;
}

/* Pulse animation for primary buttons */
.btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 126, 20, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(253, 126, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 126, 20, 0); }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    display: none;
}

.cookie-notice.show {
    transform: translateY(0);
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* What We Do Section */
.what-we-do {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    padding: 60px 0;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.what-we-do-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.what-we-do-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.what-we-do-list {
    list-style: none;
    margin: 1.5rem 0;
}

.what-we-do-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    
}

.what-we-do-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.what-we-do-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.what-we-do-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.what-we-do-cta {
    margin-top: 2rem;
}

/* Mobile layout overrides for What We Do section */
@media (max-width: 768px) {
    .what-we-do-content {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        align-items: start;
        overflow-x: hidden;
    }
    .what-we-do-text, .what-we-do-image { grid-column: 1 / -1 !important; }
    .what-we-do-text { order: 1; overflow-x: hidden; }
    .what-we-do-image { order: 2; justify-self: center; overflow-x: hidden; }
    .what-we-do-image img { display: block; margin: 0 auto; max-width: 340px; height: auto; float: none; }
    .what-we-do { overflow-x: hidden; }
    .what-we-do .container { overflow-x: hidden; }
}

/* What We Do Slider */
.what-we-do-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.what-we-do-track {
    display: flex;
    transition: transform 0.5s ease;
}

.what-we-do-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.slide-content {
    flex: 1;
    padding-right: 2rem;
}

.slide-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slide-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.slide-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.slide-content li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.what-we-do-slide img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-slide {
    /* Ensure exactly one slide is visible at a time (3 slides total) */
    width: calc(100% / 3);
    flex: 0 0 calc(100% / 3);
    height: 100%;
    position: relative;
}

.hero-slide .hero-background,
.hero-slide .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 3;
    padding: 2rem;
}

.hero-slide h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.hero .dot.active {
    background: var(--white);
}

.hero .slider-nav {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero .slider-nav:hover {
    background: var(--white);
    transform: translateY(50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.hero .slider-nav.prev {
    left: 30px;
}

.hero .slider-nav.next {
    right: 30px;
}

.hero .slider-nav:hover {
    background: rgba(0,0,0,0.9);
}

@media (max-width: 768px) {
    .hero .slider-nav.prev {
        left: 10px;
    }
    
    .hero .slider-nav.next {
        right: 10px;
    }
    
    .hero .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.hero-slider::before {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--white);
    z-index: 4;
} 

.hero .scroll-indicator {
    display: none;
} 

/* Remove hero underline on mobile */
@media (max-width: 768px) {
    .hero-slider::before {
        content: none !important;
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}

.hero-slide .hero-image {
    animation: none;
}

/* Booking Toggle Styles */
.booking-toggle {
    position: relative;
    margin-bottom: 2rem;
    background: var(--light-color);
    border-radius: 50px;
    padding: 4px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.booking-toggle input[type="radio"] {
    display: none;
}

.toggle-slider {
    position: relative;
    display: flex;
    width: 100%;
    background: transparent;
    border-radius: 50px;
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 500;
    color: var(--gray-color);
    position: relative;
    z-index: 2;
    user-select: none;
}

.toggle-option:hover {
    color: var(--primary-color);
}

/* Sliding background */
.toggle-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(10, 135, 84, 0.3);
}

/* Active states managed by JavaScript */
.toggle-option.active {
    color: var(--white);
}

.toggle-slider.advanced::before {
    transform: translateX(100%);
}

/* Booking Panel Styles */
.booking-panel {
    display: none;
}

.booking-panel.active {
    display: block;
}

/* Radio Group Styles */
.radio-group {
    margin-bottom: 1rem;
}

.radio-group label:first-child {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.radio-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-options input[type="radio"] {
    margin-right: 0.5rem;
}

.radio-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

/* Form Enhancements */
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    min-height: 100px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 135, 84, 0.1);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: var(--light-color);
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(10, 135, 84, 0.05);
}

.form-group label[for="documents"] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* Loading State */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
} 

/* Disabled button state */
.btn.disabled,
button:disabled,
.btn:disabled {
    background: #c9c9c9 !important;
    border-color: #c9c9c9 !important;
    color: #666 !important;
    cursor: not-allowed;
    opacity: 0.85;
} 

/* Final mobile overrides for Contact section to ensure single column layout */
@media (max-width: 768px) {
    .contact-section .contact-main { grid-template-columns: 1fr !important; gap: 1.25rem; }
    .contact-section .contact-form .form-row { grid-template-columns: 1fr !important; }
    .contact-section .contact-info-section { display: grid; gap: 1.25rem; }
    .contact-section .info-grid, .contact-section .hours-grid { grid-template-columns: 1fr !important; }
    .contact-section .contact-form-section { max-height: none; }
} 

/* Page Header for Booking Page */
.page-header {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.page-header .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 135, 84, 0.85), rgba(23, 162, 184, 0.85));
    z-index: 1;
}

.page-header .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Booking Hero Feature Pills */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    margin: .5rem 0 1.25rem;
}

.hero-feature-pills .pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-weight: 500;
    font-size: .95rem;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    .hero-feature-pills {
        gap: .45rem;
    }
    .hero-feature-pills .pill {
        font-size: .88rem;
        padding: .4rem .6rem;
    }
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--white);
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    margin: 0 0.5rem;
    opacity: 0.7;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    opacity: 0.8;
}

/* Consultation Features */
.consultation-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* Services Overview */
.services-overview {
    padding: var(--space-xl) 0;
    background: var(--light-color);
}

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

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--space-xl) 0;
    background: var(--light-color);
}

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

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-header p {
    font-size: 1rem;
    color: var(--gray-color);
    max-width: 600px;
    line-height: 1.6;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-form-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    max-height: 700px;
}

.contact-form-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--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(10, 135, 84, 0.1);
}

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

.btn-send {
    background: #dc3545;
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: auto;
}

.btn-send:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.info-card {
    background: #f5f5f5;
    padding: 1.75rem;
    border-radius: 12px;
}

.card-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

.card-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 0.9rem 0 1.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.info-item.full {
    grid-column: 1 / -1;
}

.info-item .icon {
    color: #c21f3a;
    font-size: 1.25rem;
    line-height: 1;
}

.info-item .details .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 0.25rem;
}

.info-item .details .value {
    display: block;
    font-size: 0.95rem;
    color: #6c6c6c;
}

.info-card .hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-card .hours-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin: 0 0 0.5rem 0;
}

.info-card .hours-item p {
    font-size: 0.9rem;
    color: #6c6c6c;
    margin: 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hours-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.hours-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.hours-item p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0;
    font-weight: 500;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--white);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0 0 0.25rem 0;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.contact-details span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-size: 1.8rem;
}

.contact-form-header p {
    margin: 0;
    color: var(--white);
}

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--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(10, 135, 84, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

/* Contact Info Section (for booking page) */
.contact-info {
    padding: var(--space-xl) 0;
 }

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-item {
    flex: 1 1 calc(33.333% - 1.25rem);
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    max-height: 400px;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: rgba(10,135,84,0.25);
}

.contact-item i {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.1rem;
    margin: 0;
}

.contact-item h4 {
    margin: 0 0 2px;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .contact-item { flex: 1 1 calc(50% - 1.25rem); }
}

@media (max-width: 600px) {
    .contact-item { flex: 1 1 100%; }
}

/* Email Feedback Styles */
.email-feedback {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.email-feedback:empty {
    display: none;
}

.email-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.email-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.email-feedback.checking {
    background: #e2e3e5;
    color: #6c757d;
    border: 1px solid #ced4da;
}

.email-feedback i {
    margin-right: 0.5rem;
}

.email-feedback .login-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.email-feedback .login-link:hover {
    color: #004085;
    text-decoration: underline;
}

.email-feedback .login-link i {
    margin-right: 0.25rem;
} 