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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

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

/* Header - Base Styles */
.header {
    position: relative;
    z-index: 1000;
}

/* Header Variant 1 - Classic with CTA */
.header-v1 {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-v1-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.header-v1-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    color: #2563eb;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    width: 100%;
    max-width: 215px;
}

.header-v1-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.menu-item {
    list-style: none;
}

.menu-link, li.menu-item > a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.menu-link:hover, li.menu-item > a:hover {
    color: #2563eb;
}

.menu-link.active, li.menu-item.current-menu-item > a {
    color: #2563eb;
}

.menu-link.active::after, li.menu-item.current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.header-v1-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #2563eb;
}

.phone-icon {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.mobile-menu-logo .logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-menu-logo .logo-text-main {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.mobile-menu-logo .logo-text-sub {
    font-size: 0.75rem;
    color: #6b7280;
}

.mobile-menu-logo .logo-text-v3,
.mobile-menu-logo .logo-text-v4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.mobile-menu-logo .logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-logo .logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mobile-menu-logo .logo-text-v5 {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-menu-logo .logo-main {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.mobile-menu-logo .logo-sub {
    font-size: 0.75rem;
    color: #6b7280;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #2563eb;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav li {
    list-style: none;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-nav a:hover {
    background: #f9fafb;
    border-left-color: #2563eb;
    color: #2563eb;
}

.mobile-menu-nav .current-menu-item > a {
    background: #eff6ff;
    border-left-color: #2563eb;
    color: #2563eb;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-phone:hover {
    background: #eff6ff;
    color: #2563eb;
}

.mobile-menu-phone svg {
    color: #2563eb;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.mobile-menu-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.mobile-menu-social .social-link {
    width: 40px;
    height: 40px;
}

/* Header Variant 2 - Centered with Top Bar */
.header-v2 {
    background: white;
    z-index: 1000;
}

.header-v2-top {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

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

.header-v2-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.info-item:hover {
    color: #2563eb;
}

.info-item svg {
    flex-shrink: 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: #6b7280;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    color: white;
}

.header-v2-main {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-v2-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 2rem;
}

.header-v2-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-v2-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.logo-text-sub {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.header-v2-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.header-v2-menu .menu-item {
    white-space: nowrap;
}

/* Header Variant 3 - Minimal with Mega Menu */
.header-v3 {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-v3-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.header-v3-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.logo-text-v3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
}

.header-v3-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.menu-item-v3 {
    list-style: none;
}

.menu-link-v3 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.menu-link-v3:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.dropdown-icon {
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.menu-link-v3:hover .dropdown-icon {
    transform: rotate(180deg);
}

.header-v3-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn,
.phone-btn-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: #f3f4f6;
    border: none;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-btn:hover,
.phone-btn-v3:hover {
    background: #e5e7eb;
    color: #2563eb;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary-large {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Header Variant 4 - Transparent with Blur */
.header-v4 {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-v4.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-v4-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.header-v4-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-text-v4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.03em;
}

.header-v4-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.menu-item-v4 {
    list-style: none;
}

.menu-link-v4 {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.menu-link-v4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link-v4:hover {
    color: #2563eb;
}

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

.header-v4-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-v4-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-v4-phone-btn:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.btn-glass {
    background: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(8px);
    color: #2563eb;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.btn-glass:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Header Variant 5 - Split Navigation */
.header-v5 {
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.header-v5-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.header-v5-menu-left,
.header-v5-menu-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header-v5-menu-left {
    justify-content: flex-end;
}

.header-v5-menu-right {
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.header-v5-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: center;
}

.header-v5-nav > .mobile-menu-toggle {
    position: absolute;
    right: 0;
}

.logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-text-v5 {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-item-v5 {
    list-style: none;
}

.menu-link-v5 {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: block;
}

.menu-link-v5:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

/* Hero Section - Base */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Hero Variant 1 - Gradient Split */
.hero-v1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    color: white;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-v1 .hero-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.hero-v1 .hero-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

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

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Hero Variant 2 - Centered with Background */
.hero-v2 {
    background: linear-gradient(rgba(37, 99, 235, 0.85), rgba(29, 78, 216, 0.9)),
                url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtZWRpY2FsJTIwY2xpbmljJTIwaW50ZXJpb3J8ZW58MXx8fHwxNzU4MDI4MDk3fDA&ixlib=rb-4.1.0&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
}

.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description-centered {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
}

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

.btn-white-large {
    background: white;
    color: #2563eb;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-white-large:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card-white:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon svg {
    width: 24px;
    height: 24px;
}

.stat-card-content {
    text-align: left;
}

.stat-value-white {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-white {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Hero Variant 3 - Asymmetric with Image Cards */
.hero-v3 {
    background: #f9fafb;
    padding: 6rem 0;
    color: #1f2937;
}

.hero-content-asymmetric {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tag-icon {
    width: 16px;
    height: 16px;
}

.hero-title-xl {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -0.02em;
}

.hero-text-large {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
}

.feature-icon-check {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.hero-buttons-flex {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

.btn-outline-primary-large {
    background: white;
    color: #2563eb;
    border: 2px solid #e5e7eb;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary-large:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.btn-phone {
    width: 20px;
    height: 20px;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: #f59e0b;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img-card {
    position: absolute;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-img-main {
    top: 0;
    left: 0;
    width: 85%;
    z-index: 2;
}

.hero-img-small {
    bottom: 40px;
    right: 0;
    width: 50%;
    z-index: 3;
}

.img-rounded,
.img-rounded-sm {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.img-badge svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.hero-float-card {
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

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

.float-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.float-card-text {
    text-align: left;
}

.float-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.float-card-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

/* About Section - Base */
.about-section {
    padding: 5rem 0;
}

/* About Variant 1 - Image Left, Text Right */
.about-v1 {
    background: white;
}

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-badge {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge-center {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge-blue {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1f2937;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #111827;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.section-text-gray {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #374151;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}

/* About Variant 2 - Grid with Stats Cards */
.about-v2 {
    background: #f9fafb;
}

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

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

.about-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-stat-card .stat-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-stat-card .stat-icon-wrapper svg {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

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

.about-feature-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-box-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-box-icon svg {
    color: #2563eb;
}

.feature-box-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-box-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* About Variant 3 - Split with Image Overlay */
.about-v3 {
    padding: 0;
}

.about-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-split-image {
    position: relative;
    overflow: hidden;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-card {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.overlay-card-number {
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.overlay-card-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

.about-split-content {
    background: white;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.split-content-inner {
    max-width: 500px;
}

.about-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.metric-icon {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon svg {
    color: #10b981;
}

.metric-content {
    flex: 1;
}

.metric-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.metric-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-contact-info svg {
    color: #2563eb;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.contact-value {
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 700;
}

/* Services Section - Base */
.services-section {
    padding: 5rem 0;
}

/* Services Header Styles */
.services-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

/* Services Variant 1 - Classic Cards */
.services-v1 {
    background: #f9fafb;
}

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

.section-title-center {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-description-center {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

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

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.popular {
    border: 2px solid #2563eb;
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon-wrapper {
    background: #dbeafe;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: #2563eb;
}

.service-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #2563eb;
}

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

.service-content {
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: #374151;
}

.service-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.service-buttons .btn {
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
    color: #1d4ed8;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

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

.services-footer-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Services Variant 2 - Compact List */
.services-v2 {
    background: white;
}

.services-v2-header {
    margin-bottom: 3rem;
}

.services-v2-title-area {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-v2-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-v2-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.service-v2-featured {
    border-color: #2563eb;
    background: #eff6ff;
}

.service-v2-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-v2-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-v2-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-v2-icon svg {
    color: #2563eb;
}

.service-v2-info {
    flex: 1;
}

.service-v2-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.service-v2-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

.service-v2-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
}

.service-v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-v2-tag {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.btn-outline-primary-full {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    width: 100%;
    text-align: center;
}

.btn-outline-primary-full:hover {
    background: #2563eb;
    color: white;
}

/* Services V2 - Image Styles */
.service-v2-image {
    width: 180px;
    height:180px;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.services-v2-footer {
    text-align: center;
}

/* Services Variant 3 - Pricing Table */
.services-v3 {
    background: #f9fafb;
}

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

.service-v3-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-v3-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-v3-featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: scale(1.05);
}

.service-v3-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-v3-popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.service-v3-icon-bg {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-v3-icon-bg svg {
    color: #2563eb;
}

.service-v3-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-v3-price-box {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.service-v3-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-v3-price-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.service-v3-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.service-v3-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.service-v3-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.btn-primary-full {
    background: #2563eb;
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-primary-full:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(37, 99, 235, 0.4);
}

/* Services V3 - Additional Styles for Cards with Images */
.service-v3-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.service-v3-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(37, 99, 235, 0.95);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.service-v3-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-v3-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    text-align: left;
}

.service-v3-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-v3-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.service-v3-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    color: #374151;
}

.service-v3-item svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.service-v3-item span {
    flex: 1;
}

.service-v3-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-v3-link:hover {
    gap: 0.75rem;
    color: #1d4ed8;
}

.service-v3-link svg {
    transition: transform 0.3s ease;
}

.service-v3-link:hover svg {
    transform: translateX(4px);
}

/* Features Section - Base */
.features-section {
    padding: 5rem 0;
}

/* Features Variant 1 - Icon Cards with Stats */
.features-v1 {
    background: white;
}

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

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.feature-badge {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

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

.stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #2563eb;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 1rem;
    transition: width 1s ease;
}

.cta-box {
    background: #2563eb;
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: white;
    color: #2563eb;
}

.btn-white:hover {
    background: #f3f4f6;
}

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

.btn-outline-white:hover {
    background: white;
    color: #2563eb;
}

/* Features Variant 2 - Horizontal Timeline */
.features-v2 {
    background: #f9fafb;
}

.features-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-v2-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.features-v2-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #dbeafe 0%, #2563eb 50%, #dbeafe 100%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.timeline-content {
    text-align: center;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-icon svg {
    color: #2563eb;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.features-v2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.v2-stat-box {
    text-align: center;
}

.v2-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.v2-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Features Variant 3 - Split with Image */
.features-v3 {
    padding: 0;
}

.features-v3-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.features-v3-image {
    position: relative;
    overflow: hidden;
}

.features-v3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-v3-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}

.overlay-stat {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.overlay-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overlay-stat-icon svg {
    color: white;
}

.overlay-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
}

.overlay-stat-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

.features-v3-content {
    background: white;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.features-v3-inner {
    max-width: 550px;
}

.features-v3-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.v3-feature-icon-box {
    width: 44px;
    height: 44px;
    background: #dcfce7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v3-feature-icon-box svg {
    color: #10b981;
}

.v3-feature-text {
    flex: 1;
}

.v3-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.v3-feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Doctor Section */
/* Doctor Section - Base */
.doctors-section {
    padding: 5rem 0;
}

/* Doctor Variant 1 - Grid with Cards */
.doctors-v1 {
    background: #f9fafb;
}

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

.doctor-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.doctor-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.doctor-position {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.doctor-specialization {
    color: #2563eb;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.doctor-experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.doctor-experience svg {
    flex-shrink: 0;
    color: #2563eb;
}

.doctor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.doctor-link:hover {
    background: #1d4ed8;
    transform: translateX(2px);
}

.doctor-link svg {
    flex-shrink: 0;
}

.doctor-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.btn-full {
    width: 100%;
}

.doctor-info-column,
.doctor-schedule-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.info-card-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.icon-medium {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}

.icon-small {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.info-list li::before {
    content: "•";
    color: #2563eb;
    font-weight: 700;
    flex-shrink: 0;
}

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

.achievement-badge {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: #374151;
}

.rating-box {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star-filled {
    width: 1.25rem;
    height: 1.25rem;
    color: #eab308;
}

.star-empty {
    width: 1.25rem;
    height: 1.25rem;
    color: #d1d5db;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.closed {
    color: #ef4444;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

/* Doctor Variant 2 - Detailed with Bio */
.doctors-v2 {
    background: white;
}

.doctors-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.doctor-detailed-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.doctor-detailed-card.card-right {
    grid-template-columns: 1fr 300px;
}

.doctor-detailed-card.card-right .doctor-detailed-photo {
    order: 2;
}

.doctor-detailed-card.card-right .doctor-detailed-content {
    order: 1;
}

.doctor-detailed-photo {
    position: relative;
    overflow: hidden;
}

.doctor-detailed-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-detailed-content {
    padding: 2rem;
}

.doctor-detailed-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.doctor-detailed-position {
    font-size: 1rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.doctor-detailed-bio {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.doctor-education {
    margin-bottom: 1.5rem;
}

.doctor-education h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.doctor-education ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-education li {
    font-size: 0.875rem;
    color: #4b5563;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.doctor-education li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-weight: 700;
}

.doctor-contacts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.doctor-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.doctor-contact-item:hover {
    background: #2563eb;
    color: white;
}

.doctor-contact-item svg {
    flex-shrink: 0;
}

/* Doctor Variant 3 - Compact List */
.doctors-v3 {
    background: #f9fafb;
    padding: 5rem 0;
}

.doctors-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.doctor-compact-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.doctor-compact-photo {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.doctor-compact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-compact-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doctor-compact-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.doctor-compact-specialization {
    font-size: 0.8rem;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.doctor-compact-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.doctor-compact-experience,
.doctor-compact-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.doctor-compact-experience svg,
.doctor-compact-rating svg {
    flex-shrink: 0;
    color: #2563eb;
}

.doctor-compact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.doctor-compact-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.blog-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #eab308;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #2563eb;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-author,
.blog-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.5rem;
}

.blog-footer-section {
    text-align: center;
}

/* Blog Variant 2: Featured + List */
.blog-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.blog-v2-featured {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-v2-featured:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.blog-v2-featured-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.blog-v2-featured:hover .blog-v2-img {
    transform: scale(1.05);
}

.blog-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.blog-v2-category {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    align-self: flex-start;
}

.blog-v2-featured-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #eab308;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    align-self: flex-end;
}

.blog-v2-featured-content {
    padding: 2rem;
}

.blog-v2-featured-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-v2-featured-excerpt {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-v2-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.blog-v2-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-v2-author-avatar {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-v2-author-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.blog-v2-author-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.875rem;
}

.blog-v2-author-title {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.blog-v2-meta-group {
    display: flex;
    gap: 1.5rem;
}

.blog-v2-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-v2-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-v2-list-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-v2-list-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.blog-v2-list-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.blog-v2-list-item:hover .blog-v2-list-img {
    transform: scale(1.05);
}

.blog-v2-list-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-v2-list-content {
    padding: 1rem;
}

.blog-v2-list-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-v2-list-item:hover .blog-v2-list-title {
    color: #2563eb;
}

.blog-v2-list-excerpt {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.blog-v2-list-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-v2-list-author {
    font-weight: 600;
}

/* Blog Variant 3: Masonry Grid with Tags */
.blog-v3-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.blog-v3-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-v3-filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-v3-filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.blog-v3-filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.blog-v3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-v3-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-v3-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.blog-v3-image-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.blog-v3-card:hover .blog-v3-img {
    transform: scale(1.05);
}

.blog-v3-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-v3-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.blog-v3-tag-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.blog-v3-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-v3-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-v3-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-v3-card:hover .blog-v3-title {
    color: #2563eb;
}

.blog-v3-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-v3-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.blog-v3-author-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-v3-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.blog-v3-author-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
}

.blog-v3-author-role {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.125rem;
}

.blog-v3-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-v3-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-v3-read-time {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-rating {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-stars-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-filled-large {
    width: 2rem;
    height: 2rem;
    color: #eab308;
}

.rating-value-large {
    font-size: 2rem;
    font-weight: 800;
    margin-left: 0.5rem;
}

.rating-description {
    color: #6b7280;
    font-size: 1rem;
}

.testimonials-carousel {
    margin-bottom: 3rem;
}

.carousel-wrapper {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #374151;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.carousel-prev {
    left: -1.5rem;
}

.carousel-next {
    right: -1.5rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    min-width: 300px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.testimonial-author-info {
    display: flex;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #1f2937;
}

.verified-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-author-age {
    font-size: 0.875rem;
    color: #6b7280;
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
    opacity: 0.2;
}

.testimonial-rating-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
}

.star-small-filled {
    width: 1rem;
    height: 1rem;
    color: #eab308;
}

.testimonial-service-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.testimonial-text {
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-doctor {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.icon-tiny {
    width: 1rem;
    height: 1rem;
}

.testimonial-helpful {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.testimonial-helpful:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.testimonial-stat-label {
    color: #6b7280;
}

/* Testimonials Variant 2: Grid with Rating Stars */
.testimonials-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 3rem;
}

.testimonials-v2-rating-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    min-width: 250px;
}

.v2-rating-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.v2-rating-stars {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.v2-rating-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.testimonials-v2-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonials-v2-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.testimonials-v2-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonials-v2-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonials-v2-author {
    flex: 1;
}

.testimonials-v2-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.testimonials-v2-stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonials-v2-badge {
    width: 1.5rem;
    height: 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonials-v2-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonials-v2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.testimonials-v2-service {
    background: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonials-v2-date {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Testimonials Variant 3: Large Cards */
.testimonials-v3-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonials-v3-stat {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.v3-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.v3-stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.v3-stat-stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonials-v3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonials-v3-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-v3-card.featured {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #2563eb;
}

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

.testimonials-v3-quote-icon {
    width: 3rem;
    height: 3rem;
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

.testimonials-v3-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonials-v3-author-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.testimonials-v3-avatar-large {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonials-v3-author-info {
    flex: 1;
}

.testimonials-v3-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.testimonials-v3-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonials-v3-separator {
    color: #d1d5db;
}

.testimonials-v3-age,
.testimonials-v3-service {
    font-weight: 600;
}

.testimonials-v3-rating {
    text-align: right;
}

.testimonials-v3-stars-large {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonials-v3-date {
    color: #9ca3af;
    font-size: 0.75rem;
}

.testimonials-v3-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.8;
}

/* FAQ Variant 2: Two Column with Categories */
.faq-v2-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-v2-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 2rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-v2-category-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.faq-v2-category-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.faq-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-bottom: 3rem;
}

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

.faq-v2-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-v2-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-v2-question {
    display: flex;
    gap: 1rem;
}

.faq-v2-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #eff6ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-v2-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.faq-v2-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-v2-answer {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.7;
}

.faq-v2-contact {
    text-align: center;
    padding: 3rem 0 0;
    border-top: 1px solid #e5e7eb;
}

.faq-v2-contact-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* FAQ Variant 3: With Search */
.faq-v3-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-v3-search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-v3-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-v3-search-icon {
    position: absolute;
    left: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
}

.faq-v3-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 4rem;
    border: 2px solid #e5e7eb;
    border-radius: 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-v3-search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.faq-v3-popular {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-v3-popular-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-v3-popular-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.faq-v3-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-v3-tag:hover {
    background: #eff6ff;
    color: #2563eb;
}

.faq-v3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-v3-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-v3-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
    transform: translateY(-5px);
}

.faq-v3-card-icon {
    width: 3rem;
    height: 3rem;
    background: #eff6ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.faq-v3-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.faq-v3-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-v3-card-answer {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-v3-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.faq-v3-views {
    font-size: 0.875rem;
    color: #9ca3af;
}

.faq-v3-helpful-btn {
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-v3-helpful-btn:hover {
    background: #eff6ff;
    color: #2563eb;
}

.faq-v3-contact-section {
    text-align: center;
}

.faq-v3-contact-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-v3-contact-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-v3-contact-text {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.faq-v3-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

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

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form-description {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.contact-info-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-privacy {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

.form-link {
    color: #2563eb;
    text-decoration: underline;
}

/* Text Block Section */
.text-block-section {
    padding: 5rem 0;
}

.text-block-bg-white {
    background: white;
}

.text-block-bg-gray {
    background: #f9fafb;
}

.text-block-bg-primary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.text-block-normal {
    max-width: 1200px;
}

.text-block-narrow {
    max-width: 800px;
}

.text-block-wide {
    max-width: 100%;
}

.text-block-content {
    width: 100%;
}

.text-block-align-left {
    text-align: left;
}

.text-block-align-center {
    text-align: center;
}

.text-block-align-right {
    text-align: right;
}

.text-block-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.text-block-wysiwyg {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.text-block-wysiwyg h1,
.text-block-wysiwyg h2,
.text-block-wysiwyg h3,
.text-block-wysiwyg h4,
.text-block-wysiwyg h5,
.text-block-wysiwyg h6 {
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-block-wysiwyg h1 {
    font-size: 2.25rem;
}

.text-block-wysiwyg h2 {
    font-size: 2rem;
}

.text-block-wysiwyg h3 {
    font-size: 1.75rem;
}

.text-block-wysiwyg h4 {
    font-size: 1.5rem;
}

.text-block-wysiwyg h5 {
    font-size: 1.25rem;
}

.text-block-wysiwyg h6 {
    font-size: 1.125rem;
}

.text-block-wysiwyg p {
    margin-bottom: 1.5rem;
}

.text-block-wysiwyg a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-block-wysiwyg a:hover {
    color: #1d4ed8;
}

.text-block-wysiwyg ul,
.text-block-wysiwyg ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.text-block-wysiwyg ul li,
.text-block-wysiwyg ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.text-block-wysiwyg ul {
    list-style-type: disc;
}

.text-block-wysiwyg ol {
    list-style-type: decimal;
}

.text-block-wysiwyg blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
    font-size: 1.125rem;
}

.text-block-wysiwyg img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.text-block-wysiwyg strong,
.text-block-wysiwyg b {
    font-weight: 700;
    color: #1f2937;
}

.text-block-wysiwyg em,
.text-block-wysiwyg i {
    font-style: italic;
}

.text-block-wysiwyg code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #db2777;
}

.text-block-wysiwyg pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.text-block-wysiwyg pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.text-block-wysiwyg table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.text-block-wysiwyg table th,
.text-block-wysiwyg table td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.text-block-wysiwyg table th {
    background: #f9fafb;
    font-weight: 700;
    color: #1f2937;
}

.text-block-wysiwyg hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 3rem 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-detail-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.contact-detail-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-detail-text {
    color: #374151;
    margin-bottom: 0.25rem;
}

.contact-detail-subtext {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Contact Section - Base */
.contact-section {
    padding: 5rem 0;
    background: #f9fafb;
}

/* Contact V1 - Split Layout */
.contact-v1 {
    background: white;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    position: sticky;
    top: 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-description {
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: white;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content a,
.contact-info-content p {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
    opacity: 0.8;
}

.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Contact Form Variant 2: Centered */
.contact-v2 {
    background: white;
}

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

.contact-v2-form-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-v2-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-v2-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.btn-full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.contact-v2-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-v2-info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-v2-info-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.contact-v2-card-icon {
    width: 4rem;
    height: 4rem;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-v2-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.contact-v2-card-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-v2-card-text {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-v2-card-subtext {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Contact Form Variant 3: Multi-Step */
.contact-v3-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-v3-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
}

.contact-v3-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-v3-subtitle {
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-v3-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-v3-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.contact-v3-step.active {
    opacity: 1;
}

.contact-v3-step-number {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-v3-step.active .contact-v3-step-number {
    background: white;
    color: #667eea;
}

.contact-v3-step-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-v3-step-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-v3-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-v3-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.contact-v3-form-area {
    padding: 3rem;
}

.contact-v3-progress {
    margin-bottom: 2rem;
}

.contact-v3-progress-bar {
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.contact-v3-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.contact-v3-progress-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-v3-form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-v3-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-v3-option {
    cursor: pointer;
}

.contact-v3-radio {
    display: none;
}

.contact-v3-option-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-v3-radio:checked + .contact-v3-option-card {
    background: #eff6ff;
    border-color: #2563eb;
}

.contact-v3-option-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.contact-v3-option-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-v3-option-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.contact-v3-option-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-v3-option-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-v3-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

/* Contact V3 - Multistep Placeholder */
.contact-multistep-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-multistep-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-multistep-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.contact-multistep-form {
    max-width: 900px;
    margin: 0 auto;
}

.multistep-placeholder {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
}

.step.active:not(:last-child)::after {
    background: #2563eb;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #2563eb;
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.step.active .step-label {
    color: #1f2937;
    font-weight: 600;
}

.placeholder-text {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

/* ========================================
   Contact Form 7 Styles
   ======================================== */

/* Form wrapper base */
.wpcf7 {
    margin: 0;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form fields */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Select dropdown */
.wpcf7-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

/* Checkbox and Radio */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.wpcf7-list-item {
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
}

.wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #374151;
}

/* Submit button */
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Validation messages */
.wpcf7-not-valid-tip {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid {
    border-color: #dc2626;
}

.wpcf7-form input.wpcf7-not-valid:focus,
.wpcf7-form textarea.wpcf7-not-valid:focus,
.wpcf7-form select.wpcf7-not-valid:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Response messages */
.wpcf7-response-output {
    margin: 1.5rem 0 0 0;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.wpcf7-spam-blocked {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

/* Spinner */
.wpcf7-spinner {
    margin-left: 1rem;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(37, 99, 235, 0.3);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: wpcf7-spin 0.8s linear infinite;
}

@keyframes wpcf7-spin {
    to { transform: rotate(360deg); }
}

/* Labels */
.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
}

/* Required asterisk */
.wpcf7-form .wpcf7-form-control-wrap abbr {
    color: #dc2626;
    text-decoration: none;
}

/* File upload */
.wpcf7-form input[type="file"] {
    padding: 0.5rem;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
    cursor: pointer;
}

.wpcf7-form input[type="file"]:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

/* Acceptance (checkbox for terms) */
.wpcf7-acceptance {
    margin: 1rem 0;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin-bottom: 0;
}

/* reCAPTCHA */
.wpcf7-form .g-recaptcha {
    margin: 1rem 0;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-outline-primary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline-primary:hover {
    background: #eff6ff;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-links li {
    margin-bottom: 0.75rem;
    display: block;
    width: 100%;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-contacts li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
    width: 100%;
}

.footer-contacts li a {
    color: #fff;
    text-decoration: none;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Footer Variant 2: Compact Centered */
.footer-v2 {
    background: #111827;
    padding: 4rem 0 2rem;
}

.footer-v2-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-v2-brand {
    max-width: 600px;
}

.footer-v2-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-v2-tagline {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-v2-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-v2-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-v2-link:hover {
    color: #2563eb;
}

.footer-v2-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-v2-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-v2-social {
    display: flex;
    gap: 1.5rem;
}

.footer-v2-social-link {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-v2-social-link:hover {
    color: #2563eb;
}

.footer-v2-legal {
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-v2-legal p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-v2-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-v2-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-v2-legal-links a:hover {
    color: white;
}

.footer-v2-legal-links span {
    color: #6b7280;
}

/* Footer Variant 3: Extended with Newsletter */
.footer-v3 {
    background: white;
}

.footer-v3-main {
    background: #f9fafb;
    padding: 4rem 0 3rem;
}

.footer-v3-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-v3-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.footer-v3-desc {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-v3-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-v3-badge {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-v3-heading {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.footer-v3-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-v3-links li {
    display: block;
    width: 100%;
}

.footer-v3-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-v3-links a:hover {
    color: #2563eb;
}

.footer-v3-newsletter-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-v3-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-v3-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.footer-v3-input:focus {
    outline: none;
    border-color: #2563eb;
}

.footer-v3-submit {
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-v3-submit:hover {
    background: #1d4ed8;
}

.footer-v3-bottom {
    background: #1f2937;
    padding: 2rem 0;
}

.footer-v3-bottom-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-v3-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-v3-contact-item {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-v3-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-v3-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-v3-social-link:hover {
    background: #2563eb;
}

.footer-v3-copyright {
    text-align: right;
}

.footer-v3-copyright p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-v3-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-v3-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-v3-legal-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Doctors V1 - Tablet: 2 columns */
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .footer-v3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }

    /* Services V2 - Tablet Adjustments */
    .services-v2-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Services V3 - Tablet Adjustments */
    .services-v3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero Variant 1 */
    .hero-v1 .hero-content {
        grid-template-columns: 1fr;
    }

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

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-title-xl {
        font-size: 2.25rem;
    }

    /* Hero Variant 2 */
    .hero-v2 {
        padding: 5rem 0;
        min-height: auto;
    }

    .hero-description-centered {
        font-size: 1.125rem;
    }

    .hero-stats-cards {
        grid-template-columns: 1fr;
    }

    /* Hero Variant 3 */
    .hero-content-asymmetric {
        grid-template-columns: 1fr;
    }

    .hero-image-stack {
        height: 400px;
    }

    .hero-float-card {
        left: 0;
        padding: 1rem;
    }

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

    .hero-features-list {
        gap: 0.75rem;
    }

    /* About Variants */
    .about-v1 .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-split-content {
        padding: 3rem 2rem;
    }

    .image-overlay-card {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1.5rem;
    }

    .overlay-card-number {
        font-size: 2rem;
    }

    .about-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title,
    .section-title-center,
    .text-block-title {
        font-size: 2rem;
    }

    .text-block-wysiwyg h1 {
        font-size: 1.875rem;
    }

    .text-block-wysiwyg h2 {
        font-size: 1.5rem;
    }

    .text-block-wysiwyg h3 {
        font-size: 1.25rem;
    }

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

    .services-grid,
    .services-v2-grid,
    .services-v3-grid,
    .features-grid,
    .features-v2-timeline,
    .features-v2-stats,
    .statistics-grid,
    .doctors-grid,
    .blog-grid,
    .blog-v2-layout,
    .blog-v3-grid,
    .testimonials-v2-grid,
    .testimonials-v3-stats,
    .testimonials-v3-grid,
    .faq-v2-grid,
    .faq-v3-grid,
    .contact-v2-row,
    .contact-v2-info-cards,
    .contact-v3-wrapper,
    .contact-v3-options {
        grid-template-columns: 1fr;
    }

    .faq-v3-contact-buttons,
    .contact-v3-form-actions {
        flex-direction: column;
    }

    .contact-v3-sidebar {
        padding: 2rem 1.5rem;
    }

    .contact-v3-form-area {
        padding: 2rem 1.5rem;
    }

    /* Contact V1 - Mobile */
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-sidebar {
        position: static;
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    /* Contact V2 - Mobile */
    .contact-v2-form-card {
        padding: 2rem;
    }

    /* Contact V3 - Mobile */
    .step-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .step-number {
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .multistep-placeholder {
        padding: 2rem;
    }

    .contact-multistep-title {
        font-size: 2rem;
    }

    /* Contact Form 7 - Mobile */
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form input[type="date"],
    .wpcf7-form textarea,
    .wpcf7-form select {
        font-size: 1rem;
        padding: 0.75rem 0.875rem;
    }

    .wpcf7-form input[type="submit"],
    .wpcf7-form button[type="submit"] {
        width: 100%;
        padding: 1rem;
    }

    .wpcf7-response-output {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }

    /* Doctors V1 - Mobile */
    .doctor-info {
        padding: 1.25rem;
    }

    .doctor-name {
        font-size: 1.125rem;
    }

    .doctor-link {
        width: 100%;
        justify-content: center;
    }

    .testimonials-v2-header {
        flex-direction: column;
    }

    .testimonials-v2-rating-box {
        min-width: 100%;
    }

    .testimonials-v3-author-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .testimonials-v3-rating {
        text-align: left;
    }

    .blog-v3-header {
        flex-direction: column;
    }

    .blog-v3-filter {
        justify-content: flex-start;
    }

    .blog-v3-large {
        grid-row: span 1;
    }

    .blog-v2-featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .features-v2-timeline::before {
        display: none;
    }

    .features-v3-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .features-v3-content {
        padding: 3rem 2rem;
    }

    .features-v3-overlay {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .overlay-stat {
        padding: 1.5rem;
        gap: 1rem;
    }

    .service-v3-featured {
        transform: scale(1);
    }

    .service-v3-featured:hover {
        transform: scale(1) translateY(-5px);
    }

    /* Services V2 - Mobile Adjustments */
    .service-v2-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-v2-image {
        width: 100%;
        height: 180px;
        border-radius: 0.75rem;
    }

    /* Services V3 - Mobile Adjustments */
    .service-v3-image-wrapper {
        height: 180px;
    }

    .service-v3-card {
        padding: 1.5rem;
    }

    .hero-buttons,
    .hero-buttons-centered,
    .hero-buttons-flex,
    .cta-buttons {
        flex-direction: column;
    }

    /* Header Responsive */
    .header-v1-menu,
    .header-v2-menu,
    .header-v3-menu,
    .header-v4-menu,
    .header-v5-menu-left,
    .header-v5-menu-right {
        display: none;
    }

    .header-v1-actions .header-phone,
    .header-v2-top {
        display: none;
    }

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

    .header-v1-actions,
    .header-v2-nav,
    .header-v3-actions,
    .header-v4-actions {
        gap: 0.75rem;
    }

    .header-v1-actions .btn,
    .header-v2-nav .btn,
    .header-v4-actions .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .header-v3-actions .search-btn,
    .header-v4-actions .header-v4-phone-btn {
        display: none;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-text-main {
        font-size: 1.1rem;
    }

    .logo-text-sub {
        font-size: 0.7rem;
    }

    .logo-text-v3,
    .logo-text-v4 {
        font-size: 1.25rem;
    }

    .logo-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .header-v2-nav {
        padding: 1rem 0;
    }

    /* Header V5 Mobile */
    .header-v5-nav {
        grid-template-columns: 1fr auto;
    }

    .header-v5-logo {
        grid-column: 1;
        justify-self: start;
    }

    .logo-text-v5 {
        display: none;
    }

    .logo-circle {
        width: 48px;
        height: 48px;
    }

    .footer-grid {
        display: block;
    }

}

/* Modal Form Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
}

.modal-form {
    padding: 2rem;
}

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

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

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-modal-submit {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 1rem;
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.form-note {
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
}

.form-note a {
    color: #2563eb;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-form {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

    .btn-white-large,
    .btn-outline-white,
    .btn-primary-large,
    .btn-outline-primary-large {
        width: 100%;
        justify-content: center;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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



    .btn-primary-full {
        width: 100%;
    }

    /* Footer Variants Responsive */
    .footer-v3-bottom-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-v3-legal-links {
        justify-content: center;
    }




/* Archive Blog */

/* Основная область */
.site-main {
  max-width: 1168px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Заголовок страницы */
.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #111827;
}

/* Карточка поста */
article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 32px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Заголовки статей */
.entry-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.entry-title a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: #1e40af;
}

/* Метаданные */
.entry-meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.entry-meta a {
  color: #6b7280;
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}

/* Контент статьи */
.entry-content {
  font-size: 1rem;
  color: #374151;
}

.entry-content h2 {
  font-size: 1.25rem;
  margin-top: 24px;
  color: #111827;
}

/* Подвал статьи */
.entry-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entry-footer a {
  color: #2563eb;
  text-decoration: none;
}

.entry-footer a:hover {
  text-decoration: underline;
}

/* Для экранов меньше 768px */
@media (max-width: 768px) {
  .site-main {
    margin: 40px auto;
    padding: 0 15px;
  }

  article {
    padding: 24px;
  }

  .entry-title {
    font-size: 1.5rem;
  }
}

main#primary {
    min-height: 50vh;
}