:root {
    --primary-color: #1e5f8f;
    --secondary-color: #4a9fc1;
    --accent-color: #5fd6a4;
    --dark-blue: #0d3d5c;
    --light-blue: #e8f4f8;
    --light-bg: #f5f9fb;
    --white: #ffffff;
    --text-dark: #1a2332;
    --text-light: #5a6c7d;
    --border-color: #d4e4ed;
    --shadow-sm: 0 2px 12px rgba(30, 95, 143, 0.08);
    --shadow-md: 0 4px 20px rgba(30, 95, 143, 0.12);
    --shadow-lg: 0 8px 40px rgba(30, 95, 143, 0.18);
    --gradient-primary: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    --gradient-accent: linear-gradient(135deg, #4a9fc1 0%, #5fd6a4 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

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

.nav-logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

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

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

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

.nav-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('attached_assets/stock_images/modern_medical_offic_bad25588.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 95, 143, 0.98) 0%,
        rgba(30, 95, 143, 0.96) 50%,
        rgba(74, 159, 193, 0.93) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content-wrapper {
    color: var(--white);
}

.hero-badge-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-pill i {
    color: var(--accent-color);
    font-size: 1rem;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-highlight {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(95, 214, 164, 0.5);
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-box-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon-modern {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.stat-number-modern {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-modern {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(95, 214, 164, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(95, 214, 164, 0.5);
    background: #4bc993;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.hero-trust-line i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-card-modern {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(74, 159, 193, 0.1);
}

.card-header-modern i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.card-header-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.result-metric {
    margin-bottom: 1.75rem;
}

.result-metric:last-of-type {
    margin-bottom: 2rem;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-value {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-bar {
    width: 100%;
    height: 10px;
    background: rgba(74, 159, 193, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    animation: fillMetric 1.5s ease-out;
}

@keyframes fillMetric {
    from {
        width: 0;
    }
}

.client-testimonial-modern {
    background: linear-gradient(135deg, rgba(74, 159, 193, 0.05), rgba(95, 214, 164, 0.08));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
}

.client-testimonial-modern p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.client-testimonial-modern cite {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.hero-clean {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.hero-content-clean {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-title-clean {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle-clean {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-buttons-clean {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-clean {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 95, 143, 0.3);
}

.btn-primary-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 95, 143, 0.4);
}

.btn-secondary-clean {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.stats-highlight {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-row-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item-clean {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.stat-item-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.stat-item-clean i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item-clean h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.stat-item-clean p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-title-clean {
        font-size: 2rem;
    }

    .hero-subtitle-clean {
        font-size: 1rem;
    }

    .stats-row-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item-clean {
        padding: 1.5rem 0.5rem;
    }

    .stat-item-clean i {
        font-size: 2rem;
    }

    .stat-item-clean h3 {
        font-size: 1.8rem;
    }

    .stat-item-clean p {
        font-size: 0.85rem;
    }

    .hero-trust-badges {
        gap: 1rem;
    }

    .trust-badge-item {
        font-size: 0.85rem;
    }
}

.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.trust-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trust-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.trust-rating span {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-overlay {
    display: none;
}

.floating-shapes {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 650px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out;
}

.results-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(30, 95, 143, 0.12);
    border: 2px solid rgba(74, 159, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.results-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.results-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.results-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.result-item {
    margin-bottom: 1.75rem;
}

.result-item:last-of-type {
    margin-bottom: 2rem;
}

.result-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.result-bar {
    background: var(--light-bg);
    border-radius: 50px;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.result-fill {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    animation: fillBar 1.5s ease-out;
    box-shadow: 0 2px 10px rgba(95, 214, 164, 0.3);
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.results-cta {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.results-cta p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.results-cta cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

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

.hero-subtitle {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle::before {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-align: left;
}

.hero-title .highlight-text {
    color: var(--accent-color);
    position: relative;
    white-space: nowrap;
}

.hero-stats-inline {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.inline-stat {
    display: flex;
    flex-direction: column;
}

.inline-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.inline-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-guarantee {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-guarantee i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-description {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: left;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #4bc993);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(95, 214, 164, 0.3);
    font-size: 1.05rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary i {
    font-size: 1.1rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4bc993, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(95, 214, 164, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.05rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary i {
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 95, 143, 0.3);
}

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

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 4rem;
    overflow-x: hidden;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.stat-item i {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1;
}

.stat-item p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stats-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(95, 214, 164, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .stat-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 159, 193, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(30, 95, 143, 0.08);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.stats-section .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stats-section .stat-item:hover::before {
    transform: scaleX(1);
}

.stats-section .stat-item:hover {
    background: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 159, 193, 0.15);
}

.stats-section .stat-item i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.stats-section .stat-item h3 {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.stats-section .stat-item p {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
}

section {
    padding: 6rem 0;
    overflow-x: hidden;
    width: 100%;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 100%;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.our-story {
    background: var(--light-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text {
    width: 100%;
}

.story-paragraphs {
    margin-top: 2rem;
}

.story-paragraphs p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.story-quote {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: var(--shadow-sm);
}

.story-quote i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.story-quote p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-quote cite {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-style: normal;
    font-size: 0.95rem;
}

.story-image .image-placeholder {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.story-image .image-placeholder i {
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}

.story-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.services-overview {
    background: var(--white);
}

.how-we-work {
    background: var(--light-bg);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.3;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.specialties {
    background: var(--white);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
}

.specialty-card {
    background: var(--white);
    padding: 1rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(74, 159, 193, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.specialty-card:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 159, 193, 0.2);
}

.specialty-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.08);
    background: var(--gradient-accent);
}

.specialty-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.specialty-card h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
}

.specialty-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 95, 143, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 159, 193, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(74, 159, 193, 0.15);
    border-color: var(--accent-color);
    background: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #4bc993);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(95, 214, 164, 0.25);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 35px rgba(95, 214, 164, 0.4);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 1.05rem;
    position: relative;
}

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

.service-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
    transform: translateX(5px);
}

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

.service-link i {
    transition: var(--transition);
    font-size: 0.9rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.experience-badge p {
    font-size: 0.9rem;
    line-height: 1.3;
}

.about-text {
    width: 100%;
    max-width: 100%;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-size: 1.05rem;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-features {
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.certifications {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.certifications strong {
    color: var(--primary-color);
}

.cert-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.cert-badge i {
    color: var(--secondary-color);
}

.why-choose {
    background: var(--white);
}

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

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-bg), #e8f4f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--secondary-color), #3da8b7);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.why-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.team {
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image .image-placeholder {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.team-image .image-placeholder i {
    font-size: 4rem;
}

.team-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 58, 82, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 2.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.testimonials {
    background: var(--white);
}

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

.testimonial-container {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-bg);
    padding: 4rem 3.5rem 3rem 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 3rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 12rem;
    margin-bottom: 1rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.cta {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 214, 164, 0.1));
    pointer-events: none;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-text p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    width: 100%;
    max-width: 100%;
}

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

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #3da8b7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.info-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.google-meet-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    border: 2px solid var(--secondary-color);
}

.btn-meet {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
    background: var(--secondary-color);
}

.btn-meet:hover {
    background: #3da8b7;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 140, 153, 0.4);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(44, 140, 153, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    box-shadow: 0 6px 24px rgba(95, 214, 164, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    animation: slideInFromRight 0.6s ease-out, pulse 2s infinite;
}

.floating-book-btn i {
    font-size: 1.2rem;
}

.floating-book-btn:hover {
    background: #4bc993;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(95, 214, 164, 0.5);
    animation: none;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(95, 214, 164, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(95, 214, 164, 0.6);
    }
}

@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .floating-book-btn span {
        display: none;
    }
    
    .floating-book-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
    }
    
    .floating-book-btn i {
        font-size: 1.5rem;
    }
}

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

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

@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 32px;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-logo i {
        font-size: 1.5rem;
    }

    .hero-grid {
        gap: 3rem;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw;
        max-height: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: max-height 0.4s ease, box-shadow 0.3s ease;
        gap: 0;
        z-index: 998;
        margin: 0;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0 2rem;
        margin-bottom: 1.5rem;
    }

    .trust-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .trust-item i {
        font-size: 1.1rem;
    }

    .trust-rating {
        gap: 0.2rem;
    }

    .trust-rating i {
        font-size: 0.9rem;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }

    .inline-stat {
        text-align: center;
        align-items: center;
    }

    .inline-stat .stat-number {
        font-size: 2rem;
    }

    .inline-stat .stat-label {
        font-size: 0.85rem;
    }

    .results-card {
        padding: 2rem 1.5rem;
    }

    .results-header h3 {
        font-size: 1.1rem;
    }

    .result-label {
        font-size: 0.875rem;
    }

    .result-bar {
        height: 35px;
    }

    .result-fill {
        font-size: 1rem;
        padding-right: 0.75rem;
    }

    .results-cta {
        padding: 1.25rem;
    }

    .results-cta p {
        font-size: 0.95rem;
    }

    .results-cta cite {
        font-size: 0.85rem;
    }

    .nav-menu.active {
        max-height: 500px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-link,
    .nav-btn {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        border-radius: 0;
        background: transparent;
        color: var(--text-dark);
    }

    .nav-link:hover {
        background: var(--light-bg);
        color: var(--secondary-color);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .hero-visual {
        order: -1;
    }

    .hero-image {
        order: -1;
    }

    .hero-accent-card {
        padding: 2rem;
    }

    .accent-stat-number {
        font-size: 2.5rem;
    }

    .accent-stat-label {
        font-size: 1rem;
    }

    .hero-text {
        align-items: center;
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        align-self: center;
    }

    .hero-subtitle::before {
        width: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image {
        order: -1;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-icon {
        margin: 0 auto;
    }

    .step-number {
        text-align: center;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .specialty-card h3 {
        font-size: 0.8rem;
    }
    
    .specialty-icon {
        width: 40px;
        height: 40px;
    }
    
    .specialty-icon i {
        font-size: 1rem;
    }

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

    .experience-badge {
        bottom: 10px;
        right: 10px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    section {
        overflow-x: hidden;
    }

    .logo-img {
        height: 60px;
    }
    
    .hero {
        padding-top: 70px;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0 1.5rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .trust-item p {
        font-size: 0.8rem;
    }

    .trust-rating span {
        font-size: 0.9rem;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        margin: 1rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .inline-stat {
        text-align: center;
        align-items: center;
    }

    .inline-stat .stat-number {
        font-size: 1.75rem;
    }

    .inline-stat .stat-label {
        font-size: 0.8rem;
    }

    .results-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .results-header i {
        font-size: 1.3rem;
    }

    .results-header h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .result-item {
        margin-bottom: 1.25rem;
    }

    .result-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .result-bar {
        height: 30px;
    }

    .result-fill {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }

    .results-cta {
        padding: 1rem;
    }

    .results-cta p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .results-cta cite {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 0.4rem 1rem;
        margin-top: 0.75rem;
        align-self: center;
        white-space: nowrap;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
        padding: 0;
    }
    
    .hero-title,
    .hero-description {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }
    
    .stat-item {
        padding: 0.875rem 0.25rem;
        min-width: 0;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item i {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 0.875rem;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .info-card:hover {
        transform: none;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .info-icon i {
        font-size: 1rem;
    }
    
    .info-text {
        flex: 1;
        min-width: 0;
    }
    
    .info-text h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .info-text p {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        box-sizing: border-box;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
}

.page-hero {
    background: var(--gradient-primary);
    padding: 150px 0 90px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(95, 214, 164, 0.15), transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
}

.legal-content {
    padding: 5rem 0;
    background: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-wrapper h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-wrapper p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-wrapper ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p strong {
    color: var(--primary-color);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.about-page {
    padding: 5rem 0;
}

.about-page .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-page .about-text h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-page .about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.stat-box h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-dark);
    font-weight: 600;
}

.services-intro {
    padding: 5rem 0;
    background: var(--white);
}

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

.intro-text h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.services-detailed {
    padding: 5rem 0;
    background: var(--light-bg);
}

.service-features {
    padding: 5rem 0;
    background: var(--white);
}

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

.features-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.features-text h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    margin: 2rem 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .intro-content,
    .features-content {
        gap: 3rem;
    }
    
    .about-page .about-content {
        gap: 3rem;
    }
    
    .about-page .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-content,
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-page .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-page .about-text h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .about-page .about-text p {
        font-size: 1rem;
    }
    
    .about-page .about-image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .legal-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .legal-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .legal-wrapper h4 {
        font-size: 1.1rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
    
    .intro-text h2,
    .features-text h2 {
        font-size: 1.8rem;
    }
    
    .about-page .about-text h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(95, 214, 164, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 159, 193, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-badges-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(74, 159, 193, 0.2);
    box-shadow: 0 4px 15px rgba(30, 95, 143, 0.08);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 95, 143, 0.15);
    border-color: var(--secondary-color);
}

.trust-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-text strong {
    font-weight: 700;
    color: var(--primary-color);
}

.hero-title-new {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -2.5px;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle-new {
    font-size: 1.35rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
}

.hero-value-props {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #4bc993);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.value-prop-item span {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary-new {
    background: linear-gradient(135deg, var(--accent-color), #4bc993);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(95, 214, 164, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 214, 164, 0.45);
}

.btn-secondary-new {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 95, 143, 0.1);
}

.btn-secondary-new:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 95, 143, 0.25);
}

.hero-guarantee-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(95, 214, 164, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.hero-guarantee-new i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.hero-guarantee-new p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

.hero-kpi-panel {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(30, 95, 143, 0.15),
                0 0 0 1px rgba(74, 159, 193, 0.1) inset;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.kpi-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kpi-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(30, 95, 143, 0.25);
}

.kpi-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.kpi-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.kpi-stat-card {
    background: linear-gradient(135deg, rgba(74, 159, 193, 0.05), rgba(95, 214, 164, 0.08));
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.kpi-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.progress-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.circular-progress {
    transform: rotate(-90deg);
}

.bg-circle {
    fill: none;
    stroke: rgba(74, 159, 193, 0.15);
    stroke-width: 8;
}

.progress-circle {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 283;
    }
    to {
        stroke-dashoffset: 70;
    }
}

.progress-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.kpi-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.mini-kpi {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 95, 143, 0.08);
    transition: var(--transition);
}

.mini-kpi:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 95, 143, 0.15);
}

.mini-kpi-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mini-kpi-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.kpi-client-quote {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.quote-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.kpi-client-quote p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.kpi-client-quote cite {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.floating-badges {
    position: absolute;
    top: -20px;
    right: -20px;
}

.floating-badge {
    background: linear-gradient(135deg, var(--accent-color), #4bc993);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(95, 214, 164, 0.35);
    font-weight: 700;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.1rem;
}

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

@media (max-width: 1024px) {
    .hero-grid-new {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .hero-grid-new {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-kpi-panel {
        order: 2;
    }

    .hero-main-content {
        order: 1;
    }

    .hero-title-new {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
        text-align: left;
    }

    .hero-subtitle-new {
        font-size: 1.15rem;
        text-align: left;
    }

    .trust-badges-row {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-cta-group {
        justify-content: flex-start;
    }

    .kpi-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-badges {
        position: static;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title-new {
        font-size: 2rem;
        letter-spacing: -1px;
        text-align: center;
    }

    .hero-subtitle-new {
        font-size: 1rem;
        text-align: center;
    }

    .trust-badges-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .trust-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-value-props {
        align-items: center;
    }

    .value-prop-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-new {
        width: 100%;
        justify-content: center;
    }

    .hero-guarantee-new {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .kpi-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .kpi-header h3 {
        font-size: 1.2rem;
    }

    .kpi-stat-card {
        padding: 1.5rem;
    }

    .kpi-stat-value {
        font-size: 2.5rem;
    }

    .kpi-stats-grid {
        gap: 0.75rem;
    }

    .mini-kpi {
        padding: 1rem;
    }

    .mini-kpi-value {
        font-size: 1.5rem;
    }

    .floating-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-card-modern {
        order: 2;
    }

    .hero-heading {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .hero-lead {
        font-size: 1.15rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-box-modern {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-modern {
        padding: 100px 0 60px;
    }

    .hero-heading {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .hero-badge-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero-pill {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    .hero-stats-row {
        gap: 0.75rem;
    }

    .stat-box-modern {
        padding: 0.875rem 1.25rem;
    }

    .stat-icon-modern {
        width: 45px;
        height: 45px;
    }

    .stat-number-modern {
        font-size: 1.5rem;
    }

    .stat-label-modern {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-line {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-card-modern {
        padding: 1.75rem;
    }

    .card-header-modern {
        flex-direction: column;
        text-align: center;
    }

    .card-header-modern h3 {
        font-size: 1.2rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .client-testimonial-modern {
        padding: 1.25rem;
    }
}/* Premium Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.booking-modal-content {
    background: #ffffff;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

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

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.booking-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.booking-header {
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    padding: 30px;
    border-radius: 24px 24px 0 0;
    color: white;
}

.booking-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.95;
}

.booking-info-item i {
    font-size: 16px;
}

.booking-info-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.booking-info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.booking-body {
    padding: 40px;
}

.booking-body h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.booking-service-selection {
    margin-bottom: 35px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.service-option:hover {
    border-color: #1e5f8f;
    background: #e8f4f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 95, 143, 0.15);
}

.service-option.selected {
    border-color: #1e5f8f;
    background: linear-gradient(135deg, #e8f4f8 0%, #e0f2f7 100%);
    box-shadow: 0 8px 25px rgba(30, 95, 143, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.service-details h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-details p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-duration {
    display: inline-block;
    padding: 6px 14px;
    background: #1e5f8f;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.booking-datetime-section {
    margin-bottom: 35px;
}

.date-selector {
    margin-bottom: 30px;
}

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

.date-header h3 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.date-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.date-nav-btn:hover {
    border-color: #1e5f8f;
    background: #1e5f8f;
    color: white;
    transform: scale(1.05);
}

.date-picker {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
}

.date-picker::-webkit-scrollbar {
    height: 6px;
}

.date-picker::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.date-picker::-webkit-scrollbar-thumb {
    background: #1e5f8f;
    border-radius: 10px;
}

.date-option {
    min-width: 90px;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.date-option:hover {
    border-color: #1e5f8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 95, 143, 0.15);
}

.date-option.selected {
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    border-color: #1e5f8f;
    color: white;
    box-shadow: 0 6px 20px rgba(30, 95, 143, 0.3);
}

.date-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.date-day {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.date-number {
    font-size: 24px;
    font-weight: 700;
}

.time-slots-section h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.time-slot:hover {
    border-color: #1e5f8f;
    background: #e8f4f8;
    transform: scale(1.02);
}

.time-slot.selected {
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    border-color: #1e5f8f;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 95, 143, 0.3);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-form-section {
    padding: 30px;
    background: #f9fafb;
    border-radius: 16px;
    margin-top: 30px;
}

.booking-form-section h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.booking-form-section label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.booking-form-section input,
.booking-form-section textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.booking-form-section input:focus,
.booking-form-section textarea:focus {
    outline: none;
    border-color: #1e5f8f;
    box-shadow: 0 0 0 3px rgba(30, 95, 143, 0.1);
}

.btn-confirm-booking {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.btn-confirm-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 95, 143, 0.4);
}

.btn-confirm-booking:active {
    transform: translateY(0);
}

.booking-summary {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.booking-summary h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.summary-details {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: left;
}

.summary-details p {
    margin: 12px 0;
    font-size: 16px;
    color: #333;
}

.summary-details strong {
    color: #1e5f8f;
    font-weight: 600;
}

.confirmation-message {
    color: #666;
    font-size: 15px;
    margin: 20px 0;
    line-height: 1.6;
}

.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(30, 95, 143, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(30, 95, 143, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(30, 95, 143, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(30, 95, 143, 0.6);
    }
}

.floating-book-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .booking-modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .booking-body {
        padding: 25px;
    }

    .booking-body h2 {
        font-size: 24px;
    }

    .date-picker {
        gap: 8px;
    }

    .date-option {
        min-width: 75px;
        padding: 15px 10px;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    .time-slot {
        padding: 12px 8px;
        font-size: 14px;
    }

    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
    }

    .floating-book-btn span {
        display: none;
    }

    .booking-contact-info {
        flex-direction: column;
        gap: 12px;
    }

    .video-call-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .video-call-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

    .video-call-icon i {
        font-size: 36px;
    }

    .video-call-content h2 {
        font-size: 22px;
    }

    .video-call-content p {
        font-size: 15px;
    }

    .btn-schedule-meet {
        padding: 14px 28px;
        font-size: 15px;
    }
}

.video-call-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.video-call-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.video-call-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.video-call-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-call-icon i {
    font-size: 42px;
    color: white;
}

.video-call-content {
    flex: 1;
    text-align: left;
}

.video-call-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.video-call-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-schedule-meet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(74, 159, 193, 0.3);
}

.btn-schedule-meet:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 159, 193, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.btn-schedule-meet i {
    font-size: 18px;
}

/* Premium Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.booking-modal-content {
    background: #ffffff;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

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

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.booking-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.booking-header {
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    padding: 30px;
    border-radius: 24px 24px 0 0;
    color: white;
}

.booking-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.95;
}

.booking-info-item i {
    font-size: 16px;
}

.booking-info-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.booking-info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.booking-body {
    padding: 40px;
}

.booking-body h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.booking-service-selection {
    margin-bottom: 35px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.service-option:hover {
    border-color: #1e5f8f;
    background: #e8f4f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 95, 143, 0.15);
}

.service-option.selected {
    border-color: #1e5f8f;
    background: linear-gradient(135deg, #e8f4f8 0%, #e0f2f7 100%);
    box-shadow: 0 8px 25px rgba(30, 95, 143, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.service-details h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-details p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-duration {
    display: inline-block;
    padding: 6px 14px;
    background: #1e5f8f;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.booking-datetime-section {
    margin-bottom: 35px;
}

.date-selector {
    margin-bottom: 30px;
}

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

.date-header h3 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.date-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.date-nav-btn:hover {
    border-color: #1e5f8f;
    background: #1e5f8f;
    color: white;
    transform: scale(1.05);
}

.date-picker {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
}

.date-picker::-webkit-scrollbar {
    height: 6px;
}

.date-picker::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.date-picker::-webkit-scrollbar-thumb {
    background: #1e5f8f;
    border-radius: 10px;
}

.date-option {
    min-width: 90px;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.date-option:hover {
    border-color: #1e5f8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 95, 143, 0.15);
}

.date-option.selected {
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    border-color: #1e5f8f;
    color: white;
    box-shadow: 0 6px 20px rgba(30, 95, 143, 0.3);
}

.date-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.date-day {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.date-number {
    font-size: 24px;
    font-weight: 700;
}

.time-slots-section h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.time-slot:hover {
    border-color: #1e5f8f;
    background: #e8f4f8;
    transform: scale(1.02);
}

.time-slot.selected {
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    border-color: #1e5f8f;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 95, 143, 0.3);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-form-section {
    padding: 30px;
    background: #f9fafb;
    border-radius: 16px;
    margin-top: 30px;
}

.booking-form-section h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.booking-form-section label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.booking-form-section input,
.booking-form-section textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.booking-form-section input:focus,
.booking-form-section textarea:focus {
    outline: none;
    border-color: #1e5f8f;
    box-shadow: 0 0 0 3px rgba(30, 95, 143, 0.1);
}

.btn-confirm-booking {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e5f8f 0%, #4a9fc1 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.btn-confirm-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 95, 143, 0.4);
}

.btn-confirm-booking:active {
    transform: translateY(0);
}

.booking-summary {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.booking-summary h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.summary-details {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: left;
}

.summary-details p {
    margin: 12px 0;
    font-size: 16px;
    color: #333;
}

.summary-details strong {
    color: #1e5f8f;
    font-weight: 600;
}

.confirmation-message {
    color: #666;
    font-size: 15px;
    margin: 20px 0;
    line-height: 1.6;
}
