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


/* Image Loading Performance Optimizations */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
}

/* Add smooth loading for lazy images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Skeleton placeholders for lazy images */
.image-container {
    position: relative;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: 20px;
    z-index: 1;
}

.image-container img {
    position: relative;
    z-index: 2;
}

/* Hide skeleton when image is loaded */
.image-container.loaded {
    background: transparent;
    animation: none;
}

/* Optimize hero image loading */
.hero-card img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
    transform: translateZ(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Nice Surgeon Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.surgeon-logo-nice {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-frame {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 6px 20px rgba(44, 90, 160, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
    border: 3px solid #2c5aa0;
    position: relative;
    overflow: hidden;
}

.doctor-figure {
    position: relative;
    width: 28px;
    height: 34px;
}

.doctor-head {
    position: relative;
    width: 100%;
    height: 18px;
    margin-bottom: 2px;
}

.surgical-cap {
    position: absolute;
    width: 16px;
    height: 8px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    border-radius: 8px 8px 4px 4px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 4px rgba(30, 136, 229, 0.3);
}

.surgical-cap::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: #ffffff;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.face-with-mask {
    position: absolute;
    width: 14px;
    height: 12px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.eyes {
    position: absolute;
    width: 8px;
    height: 3px;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.eyes::before,
.eyes::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #333333;
    border-radius: 50%;
    top: 0;
}

.eyes::before {
    left: 1px;
}

.eyes::after {
    right: 1px;
}

.mask-area {
    position: absolute;
    width: 12px;
    height: 6px;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border-radius: 0 0 6px 6px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #81d4fa;
    box-shadow: 0 1px 3px rgba(79, 195, 247, 0.4);
}

.doctor-body {
    position: relative;
    width: 22px;
    height: 14px;
    margin: 0 auto;
}

.scrub-uniform {
    position: absolute;
    width: 22px;
    height: 12px;
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    border-radius: 6px 6px 3px 3px;
    top: 0;
    left: 0;
    box-shadow: 0 3px 8px rgba(44, 90, 160, 0.3);
}

.name-tag {
    position: absolute;
    width: 8px;
    height: 6px;
    background: #ffffff;
    border-radius: 2px;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.name-tag::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 1px;
    background: #2c5aa0;
    top: 2px;
    left: 1px;
    border-radius: 0.5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.nav-logo span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link.active {
    color: #2c5aa0;
}

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

.nav-link.temporarily-inactive {
    color: #333;
}

.nav-link.temporarily-inactive::after {
    width: 0;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(44, 90, 160, 0.1);
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #2c5aa0, #667eea);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-toggle:hover .bar::before {
    opacity: 1;
}

/* Enhanced mobile menu animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #e74c3c;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #e74c3c;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Initial animation states - hide elements before animation */
.hero-text h1,
.hero-text h2,
.hero-subtitle,
.hero-location,
.hero-buttons,
.hero-image,
.hero-image-caption {
    opacity: 0;
    transform: translateY(20px);
}

.hero-image,
.hero-image-caption {
    transform: translateX(20px) translateY(10px);
}

/* Fallback - show elements if JavaScript doesn't run */
@keyframes showContentFallback {
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.no-js .hero-text h1,
.no-js .hero-text h2,
.no-js .hero-subtitle,
.no-js .hero-location,
.no-js .hero-buttons,
.no-js .hero-image,
.no-js .hero-image-caption {
    opacity: 1;
    animation: none;
    transform: none;
}

/* Show elements when page is ready */
.hero-loaded .hero-text h1 {
    animation: heroSlideIn 0.8s ease-out forwards;
}

.hero-loaded .hero-text h2 {
    animation: heroSlideIn 0.8s ease-out 0.2s forwards;
}

.hero-loaded .hero-subtitle {
    animation: heroSlideIn 0.8s ease-out 0.4s forwards;
}

.hero-loaded .hero-location {
    animation: heroSlideIn 0.8s ease-out 0.6s forwards;
}

.hero-loaded .hero-buttons {
    animation: heroSlideIn 0.8s ease-out 0.8s forwards;
}

.hero-loaded .hero-image {
    animation: heroSlideInRight 0.8s ease-out 0.5s forwards;
}

.hero-loaded .hero-card {
    animation: heroSlideInRight 0.8s ease-out 0.5s forwards, subtle-pulse-synced 2.5s ease-in-out 2s infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02) rotate(0deg);
        box-shadow: 0 25px 50px rgba(44, 90, 160, 0.15);
    }
}

@keyframes subtle-pulse-synced {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    10% {
        transform: scale(1.03) rotate(0deg);
        box-shadow: 0 25px 50px rgba(44, 90, 160, 0.2);
    }
    15% {
        transform: scale(1.02) rotate(0deg);
        box-shadow: 0 22px 45px rgba(44, 90, 160, 0.18);
    }
    25% {
        transform: scale(1.01) rotate(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }
    50% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,56 C150,100 350,0 600,56 C850,112 1050,0 1200,56 L1200,120 L0,120 Z" fill="rgba(44, 90, 160, 0.05)"></path><path d="M0,80 C200,120 400,40 600,80 C800,120 1000,40 1200,80 L1200,120 L0,120 Z" fill="rgba(44, 90, 160, 0.03)"></path></svg>');
    background-size: 100% 200px;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: wave-motion 8s ease-in-out infinite;
    pointer-events: none;
}

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

/* Floating wave elements */
.hero-wave {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(93, 140, 205, 0.05) 100%);
    pointer-events: none;
}

.hero-wave-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -100px;
    animation: float-wave 12s ease-in-out infinite;
}

.hero-wave-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -75px;
    animation: float-wave 15s ease-in-out infinite reverse;
}

.hero-wave-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation: float-wave 10s ease-in-out infinite;
}

@keyframes float-wave {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

/* Optimized pulse waves from image */
.hero-pulse-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    will-change: transform; /* Performance optimization */
}

.pulse-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity; /* Performance optimization */
}

/* Optimized image waves - using only transforms for performance */
.pulse-wave-1 {
    border: 3px solid rgba(44, 90, 160, 0.4);
    background: radial-gradient(circle, rgba(44, 90, 160, 0.08) 0%, transparent 70%);
    animation: pulse-wave-optimized 2.5s linear 2s infinite;
}

.pulse-wave-2 {
    border: 2px solid rgba(93, 140, 205, 0.25);
    background: radial-gradient(circle, rgba(93, 140, 205, 0.05) 0%, transparent 70%);
    animation: pulse-wave-optimized 2.5s linear 2.25s infinite;
}

.pulse-wave-3 {
    border: 1px solid rgba(44, 90, 160, 0.15);
    background: radial-gradient(circle, rgba(44, 90, 160, 0.03) 0%, transparent 70%);
    animation: pulse-wave-optimized 2.5s linear 2.5s infinite;
}

/* Performance-optimized wave animation using only transforms and opacity */
@keyframes pulse-wave-optimized {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.2);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
}

.hero-text h1 .font-semibold {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-text h1 small {
    font-size: 1.8rem;
    font-weight: 400;
    color: #555;
    line-height: 1.3;
    display: block;
}

.hero-text h2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.4;
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #666;
    justify-content: center;
}

.hero-location i {
    color: #2c5aa0;
}

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

/* Hero section specific button styles */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #1e3f73 0%, #162d56 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.hero-image-caption {
    font-size: 1.05rem;
    font-weight: 300;
    color: #2c3e50;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.5;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateX(20px) translateY(10px);
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-image-caption::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0 0%, #5d8ccd 50%, #2c5aa0 100%);
    border-radius: 2px;
}

/* Add caption to animation states */
.hero-image-caption {
    opacity: 0;
    transform: translateX(20px) translateY(10px);
}

.hero-loaded .hero-image-caption {
    animation: heroSlideInRight 0.8s ease-out 0.6s forwards;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    position: relative;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    max-width: 100%;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #2c5aa0, #667eea, #764ba2);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
}


/* Page Header */
.page-header {
    padding: 6rem 0 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 134, 222, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.3rem;
    color: #1e3f73;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }
}

/* Contact Human Section - Visual Design */
.contact-human-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-human-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(30, 63, 115, 0.05) 100%);
}

.contact-human-visual {
    position: relative;
    z-index: 2;
}

/* Human Connection Cards */
.human-connection-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.connection-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
}

.connection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.connection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 2px;
}

.connection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.connection-icon i {
    font-size: 1.5rem;
    color: white;
}

.connection-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.connection-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Connection Bridge */
.connection-bridge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bridge-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0 0%, #1e3f73 100%);
    position: relative;
}

.pulse-dots {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #2c5aa0;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #2c5aa0;
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

.dot-2::before {
    animation-delay: 0.5s;
}

.dot-3::before {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.heart-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    animation: heartbeat 2s ease-in-out infinite;
}

.heart-icon i {
    font-size: 1.2rem;
    color: white;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Simple Contact Header */
.simple-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.simple-contact-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.simple-contact-header p:not(.section-subtitle) {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
}

/* Contact Quote - Modern Elegant Design */
.contact-quote {
    text-align: center;
    margin: 2.5rem auto;
    max-width: 700px;
    padding: 0 1rem;
    position: relative;
}

.contact-quote blockquote {
    margin: 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(44, 90, 160, 0.08),
        0 8px 25px rgba(44, 90, 160, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(44, 90, 160, 0.1);
    border-top: 3px solid #2c5aa0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.quote-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(30, 136, 229, 0.08) 100%);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    border: 2px solid rgba(44, 90, 160, 0.1);
}

.quote-decoration::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.08) 0%, rgba(30, 136, 229, 0.12) 100%);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e88e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    z-index: 2;
}

.quote-icon i {
    color: white;
    font-size: 1.4rem;
}

.contact-quote p {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.8;
    margin: 1rem 0 0 0;
    font-family: 'Inter', sans-serif;
}

.contact-quote p::before,
.contact-quote p::after {
    content: '"';
    color: #2c5aa0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 0;
    position: relative;
    top: 0.5rem;
    margin: 0 0.2rem;
    font-family: Georgia, serif;
}

.contact-quote p::before {
    margin-left: 0;
}

.contact-quote p::after {
    margin-right: 0;
}

.quote-highlight {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(30, 136, 229, 0.15) 100%);
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-weight: 700;
    color: #2c5aa0;
}

/* Elegant hover effects */
.contact-quote blockquote:hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 70px rgba(44, 90, 160, 0.12),
        0 12px 35px rgba(44, 90, 160, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(44, 90, 160, 0.2);
    transition: all 0.3s ease;
}

.contact-quote blockquote:hover .quote-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
    transition: all 0.3s ease;
}

.contact-quote blockquote:hover .quote-decoration {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

/* Responsive Design for Contact Quote */
@media (max-width: 768px) {
    .contact-quote {
        margin: 2rem auto 1.5rem auto;
        padding: 0 1rem;
        max-width: 600px;
    }

    .contact-quote blockquote {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .quote-decoration {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        top: -12px;
    }

    .quote-icon i {
        font-size: 1.2rem;
    }

    .contact-quote p {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .contact-quote p::before,
    .contact-quote p::after {
        font-size: 2rem;
        top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .contact-quote {
        margin: 1.5rem auto 1rem auto;
        padding: 0 0.5rem;
    }

    .contact-quote blockquote {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .quote-decoration {
        width: 80px;
        height: 80px;
        top: -25px;
        right: -25px;
    }

    .quote-icon {
        width: 45px;
        height: 45px;
        top: -10px;
    }

    .quote-icon i {
        font-size: 1.1rem;
    }

    .contact-quote p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .contact-quote p::before,
    .contact-quote p::after {
        font-size: 1.8rem;
        top: 0.2rem;
    }
}

/* Workflow Container - Visual Steps Design */
.workflow-container {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.workflow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0 0%, #1e3f73 50%, #2c5aa0 100%);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.workflow-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.workflow-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.15);
    border-color: rgba(44, 90, 160, 0.3);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(44, 90, 160, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(30, 63, 115, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.3rem;
    color: #2c5aa0;
    transition: color 0.3s ease;
}

.workflow-step:hover .step-icon i {
    color: white;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

/* Call step - simple blue gradient with pulse */
.call-step {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    }
}

.call-step:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.5);
    animation: none;
}

.call-step .step-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.call-step .call-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.call-step:hover .call-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.call-step .call-icon i {
    color: white;
    font-size: 1.3rem;
}

.call-step .step-content h3 {
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.call-step .step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.phone-number {
    font-weight: 600;
    color: white;
    font-size: 1rem;
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0.2rem 0;
    transition: all 0.3s ease;
}

.call-step:hover .phone-number {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.step-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    color: #2c5aa0;
    opacity: 0.6;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

.workflow-step:last-child .step-arrow,
.workflow-step:nth-child(2) .step-arrow,
.workflow-step:nth-child(3) .step-arrow {
    display: none;
}

/* Workflow Benefits */
.workflow-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e9ecef;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e88e5 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
    border-color: rgba(44, 90, 160, 0.2);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item i {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(30, 63, 115, 0.1) 100%);
    border-radius: 50%;
    color: #2c5aa0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-item:nth-child(1) i {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.15) 0%, rgba(30, 63, 115, 0.15) 100%);
    color: #2c5aa0;
}

.benefit-item:nth-child(2) i {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(192, 57, 43, 0.15) 100%);
    color: #e74c3c;
}

.benefit-item:nth-child(3) i {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(39, 174, 96, 0.15) 100%);
    color: #2ecc71;
}

.benefit-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.2);
}

.benefit-item:nth-child(1):hover i {
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.benefit-item:nth-child(2):hover i {
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.benefit-item:nth-child(3):hover i {
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.benefit-item span {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.benefit-item:hover::after {
    opacity: 1;
}

/* CTA Section - Adapted for Light Background Section */
.contact-human-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-human-cta .btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.contact-human-cta .btn-primary:hover {
    background: linear-gradient(135deg, #1e3f73 0%, #162d56 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.contact-human-cta .btn-secondary {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-human-cta .btn-secondary:hover {
    background: #f8f9fa;
    color: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive - Workflow Styles */
@media (max-width: 768px) {
    .workflow-container {
        margin: 0 auto 2rem auto;
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .workflow-intro {
        margin-bottom: 2rem;
    }

    .workflow-intro p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin: 0 1rem;
        text-align: center;
    }

    .step-arrow {
        display: none !important;
    }

    .workflow-steps {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .workflow-step {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.5rem 1.2rem;
        position: relative;
        align-items: flex-start;
        margin: 0 0.5rem 1rem 0.5rem;
    }

    .workflow-step:hover {
        transform: translateX(3px);
    }

    /* Call step mobile - blue gradient with pulse */
    .call-step {
        background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
        border-radius: 12px;
        animation: gentle-pulse-mobile 2s ease-in-out infinite;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }

    @keyframes gentle-pulse-mobile {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 3px 12px rgba(44, 90, 160, 0.3);
        }
        50% {
            transform: scale(1.015);
            box-shadow: 0 5px 18px rgba(44, 90, 160, 0.4);
        }
    }

    .call-step:hover {
        transform: scale(1.02) translateX(3px);
        box-shadow: 0 6px 20px rgba(44, 90, 160, 0.5);
        animation: none;
    }

    .call-step .step-number {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .call-step .call-icon {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .call-step:hover .call-icon {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
    }

    .call-step .call-icon i {
        color: white;
    }

    .call-step .step-content h3 {
        color: white;
        font-weight: 600;
    }

    .call-step .step-content p {
        color: rgba(255, 255, 255, 0.9);
    }

    .call-step .phone-number {
        font-weight: 600;
        color: white;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        padding: 0.2rem 0.5rem;
    }

    .call-step:hover .phone-number {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .step-number {
        order: 1;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .step-icon {
        order: 2;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-content {
        order: 3;
        flex: 1;
        text-align: left;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Call step - designed to encourage clicks */
    .call-step {
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(192, 57, 43, 0.05) 100%);
        border: 2px solid rgba(231, 76, 60, 0.2);
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }

    .call-step:hover {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
        border-color: rgba(231, 76, 60, 0.4);
    }

    .call-step .step-number {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    }

    .call-step .call-icon {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(192, 57, 43, 0.15) 100%);
        border: 2px solid rgba(231, 76, 60, 0.3);
        transition: all 0.3s ease;
    }

    .call-step:hover .call-icon {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        transform: scale(1.1) rotate(5deg);
        border-color: #e74c3c;
    }

    .call-step .call-icon i {
        color: #e74c3c;
        transition: all 0.3s ease;
    }

    .call-step:hover .call-icon i {
        color: white;
        animation: phone-ring 0.6s ease-in-out;
    }

    @keyframes phone-ring {
        0%, 100% { transform: rotate(0deg); }
        10%, 30% { transform: rotate(-10deg); }
        20%, 40% { transform: rotate(10deg); }
    }

    .call-step .step-content h3 {
        color: #e74c3c;
        font-weight: 600;
    }

    .phone-number {
        font-weight: 600;
        color: #e74c3c;
        font-size: 1rem;
        display: inline-block;
        padding: 0.2rem 0.5rem;
        background: rgba(231, 76, 60, 0.1);
        border-radius: 5px;
        margin: 0.2rem 0;
    }

    .call-step:hover .phone-number {
        background: rgba(231, 76, 60, 0.2);
        transform: scale(1.05);
    }

    /* Remove vertical connecting line for mobile */
    .workflow-step::after {
        display: none;
    }

    /* Ensure mobile call-step uses blue theme */
    .call-step {
        background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%) !important;
        border: none !important;
        animation: gentle-pulse-mobile 2s ease-in-out infinite !important;
    }

    .call-step .step-number {
        background: rgba(255, 255, 255, 0.2) !important;
        color: white !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }

    .call-step .call-icon {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }

    .call-step .call-icon i {
        color: white !important;
    }

    .call-step .step-content h3 {
        color: white !important;
    }

    .call-step .step-content p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .call-step .phone-number {
        color: white !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
    }

    .workflow-benefits {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-top: 2rem;
        margin-top: 1.5rem;
    }

    .benefit-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 0.8rem;
        padding: 1rem;
    }

    .benefit-item i {
        font-size: 1.3rem;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
    }

    .benefit-item span {
        font-size: 1rem;
        line-height: 1.3;
        font-weight: 500;
    }

    .benefit-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(44, 90, 160, 0.12);
    }

    .benefit-item:hover i {
        transform: scale(1.05);
    }

    .contact-human-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .contact-human-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 480px) {
    .workflow-container {
        padding: 1rem 0.8rem;
        margin: 0 auto 1.5rem auto;
    }

    .workflow-intro p {
        font-size: 1rem;
    }

    .workflow-step {
        padding: 1.2rem 0.6rem;
        gap: 0.8rem;
        align-items: flex-start;
    }

    /* Call step extra small mobile */
    .call-step {
        border-radius: 8px;
        margin: 0 0.3rem 1.2rem 0.3rem;
        animation: gentle-pulse-small 2s ease-in-out infinite;
    }

    @keyframes gentle-pulse-small {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 2px 10px rgba(44, 90, 160, 0.3);
        }
        50% {
            transform: scale(1.01);
            box-shadow: 0 4px 15px rgba(44, 90, 160, 0.4);
        }
    }

    .call-step:hover {
        transform: scale(1.015) translateX(2px);
    }

    .call-step .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .call-step .call-icon {
        width: 32px;
        height: 32px;
    }

    .call-step .call-icon i {
        font-size: 0.9rem;
    }

    .call-step .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .call-step .step-content p {
        font-size: 0.85rem;
    }

    .call-step .phone-number {
        font-size: 0.85rem;
        padding: 0.15rem 0.4rem;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .step-icon {
        width: 32px;
        height: 32px;
    }

    .step-icon i {
        font-size: 0.9rem;
    }

    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .workflow-step::after {
        left: 26px;
        top: 38px;
        bottom: -6px;
        width: 2px;
        background: linear-gradient(180deg,
            rgba(44, 90, 160, 0.1) 0%,
            rgba(44, 90, 160, 0.3) 50%,
            rgba(44, 90, 160, 0.1) 100%);
        border-radius: 1px;
    }

    .benefit-item {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .benefit-item i {
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

    .benefit-item span {
        font-size: 0.8rem;
    }

    .contact-human-cta .btn {
        max-width: 250px;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }
}


.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(44, 90, 160, 0.5);
    }
}

@media (max-width: 768px) {
    .contact-human-section {
        padding: 4rem 0;
    }

    .contact-human-content h2 {
        font-size: 2rem;
    }

    .contact-human-content p {
        font-size: 1.1rem;
    }

    .contact-human-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.quick-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
}

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

.quick-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
}

.quick-service-icon i {
    font-size: 1.8rem;
    color: white;
}

.quick-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.quick-service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.quick-service-link:hover {
    color: #1e3f73;
    transform: translateX(5px);
}

/* Final Contact Section */
.final-contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    text-align: center;
}

.final-contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-contact-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
    line-height: 1.6;
}

.final-contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-contact-actions .btn-large {
    background: white;
    color: #2c5aa0;
}

.final-contact-actions .btn-large:hover {
    background: #f8f9fa;
    color: #1e3f73;
}

.final-contact-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.final-contact-actions .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

@media (max-width: 768px) {
    .services-overview {
        padding: 4rem 0;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-service-card {
        padding: 2rem;
    }

    .final-contact {
        padding: 4rem 0;
    }

    .final-contact-content h2 {
        font-size: 2rem;
    }

    .final-contact-content p {
        font-size: 1.1rem;
    }

    .final-contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .final-contact-actions .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Introduction Section - New Animated Version */
.introduction {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
}

.intro-content {
    position: relative;
    z-index: 1;
}

.animated-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 4rem;
    font-weight: 600;
    position: relative;
}

.animated-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: glow 2s ease-in-out infinite alternate;
}

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

.intro-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.principles-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s;
}

.floating-card:hover::before {
    left: 100%;
}

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

.principle {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.principle-visual {
    position: relative;
}

.principle-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.principle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.principle-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.principle-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.intro-conclusion {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.conclusion-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.intro-conclusion p {
    color: white;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.intro-animation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.floating-element:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.floating-element:nth-child(2) {
    bottom: 0;
    left: 0;
}

.floating-element:nth-child(3) {
    bottom: 0;
    right: 0;
}

.floating-element:nth-child(4) {
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(5) {
    top: 20%;
    right: 10%;
}

.floating-element:nth-child(6) {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
}

.particle:nth-child(2) {
    top: 30%;
    right: 15%;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 30%;
}

.particle:nth-child(4) {
    top: 60%;
    right: 25%;
}

.particle:nth-child(5) {
    bottom: 40%;
    right: 40%;
}

.particle:nth-child(6) {
    top: 80%;
    left: 60%;
}

/* Medical Symbols */
.medical-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.symbol {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: symbolFloat 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.symbol-1 {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 70%;
    left: 15%;
    animation-delay: 1.5s;
}

.symbol-3 {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
}

.symbol-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 4.5s;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

.pulse-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: normal !important;
    margin-top: 1.5rem;
}

/* Cabinet Section */
.cabinet-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

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

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

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

.service-icon {
    background: #2c5aa0;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

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

.service-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-color: white;
}

/* Aesthetic Medicine Section - Enhanced */
.aesthetic-section {
    padding: 6rem 0;
    background: white;
}

.treatment-block {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    border-left: 6px solid #2c5aa0;
    position: relative;
    overflow: hidden;
}

.treatment-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%232c5aa0" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%232c5aa0" opacity="0.1"/></svg>');
    pointer-events: none;
}

.treatment-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.treatment-info h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    position: relative;
}

.treatment-info p {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
}

.treatment-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.image-container:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.25);
}

.image-container img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}

.image-container:hover img {
    filter: brightness(0.9);
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(44, 90, 160, 0.4) 0%,
        rgba(102, 126, 234, 0.3) 50%,
        rgba(118, 75, 162, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(44, 90, 160, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.image-container:hover .image-overlay::before {
    opacity: 1;
}

.treatment-description {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.treatment-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Enhanced FAQ Section */
.faq-section h4 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item-new:hover {
    border-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.faq-question-new {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-new:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-icon-new {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 1rem;
    position: relative;
}

.faq-icon-new::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item-new:hover .faq-icon-new::before {
    opacity: 1;
}

.faq-question-new span {
    flex: 1;
    font-weight: 600;
    color: #2c5aa0;
    font-size: 1.1rem;
    padding-right: 0.5rem;
    line-height: 1.4;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.faq-toggle i {
    color: #2c5aa0;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-toggle {
    background: #2c5aa0;
    border-color: #2c5aa0;
    transform: rotate(45deg);
}

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

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out, padding 0.25s ease-out;
    background: #f8f9fa;
    will-change: max-height, padding;
}

.faq-item-new.active .faq-answer-new {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer-new p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Hospital Section */
.hospital-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.hospital-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #2c5aa0;
    position: relative;
    overflow: hidden;
}

.hospital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.8s;
}

.hospital-card:hover::before {
    left: 100%;
}

.hospital-card:hover {
    transform: translateY(-10px);
}

.hospital-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
}

.hospital-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #2c5aa0, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hospital-card:hover .hospital-icon::before {
    opacity: 1;
}

.hospital-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.hospital-card p {
    line-height: 1.6;
    color: #555;
}

/* Gallery Section - Carousel */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: white;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    margin: 0;
    opacity: 0.9;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.8s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.15);
}

.contact-icon {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-details h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-details a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1e3f73;
}

.contact-map {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    min-height: 400px;
}

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

.map-placeholder {
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.2"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.2"/></svg>');
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-info,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.footer-info h3,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

/* Social Media Styles */

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

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    fill: #ffffff;
}

/* Hero Animations */
@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(20px) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Mobile-specific hero animations with reduced motion */
@keyframes heroSlideInMobile {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideInRightMobile {
    from {
        opacity: 0;
        transform: translateX(15px) translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Legacy animations - kept for other sections */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

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

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translateY(-5px) scale(0.9);
        opacity: 0.8;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1210px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-radius: 0 0 20px 20px;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.4s ease-out;
    }

    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

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

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 12px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
        transition: left 0.5s;
    }

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

    .nav-link:hover {
        background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    /* Mobile nice surgeon logo adjustments */
    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-frame {
        width: 36px;
        height: 36px;
        border: 2.5px solid #2c5aa0;
    }

    .doctor-figure {
        width: 22px;
        height: 26px;
    }

    .doctor-head {
        height: 14px;
    }

    .surgical-cap {
        width: 12px;
        height: 6px;
    }

    .surgical-cap::after {
        width: 10px;
        height: 1.5px;
    }

    .face-with-mask {
        width: 11px;
        height: 10px;
        top: 4px;
    }

    .mask-area {
        width: 10px;
        height: 5px;
    }

    .doctor-body {
        width: 18px;
        height: 12px;
    }

    .scrub-uniform {
        width: 18px;
        height: 10px;
    }

    .name-tag {
        width: 6px;
        height: 5px;
        top: 2.5px;
    }

    .name-tag::after {
        width: 4px;
        height: 1px;
        top: 1.5px;
        left: 1px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-logo span {
        font-size: 0.8rem;
    }
}

/* Tablet styles for better hero text rendering */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-text h1 .font-semibold {
        font-size: 3rem;
        margin-bottom: 0.45rem;
        text-align: center;
    }

    .hero-text h1 small {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-text h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        max-width: 95%;
    }

    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-text h1 .font-semibold {
        font-size: 2.4rem;
        margin-bottom: 0.4rem;
        text-align: center;
    }

    .hero-text h1 small {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero-text h2 {
        font-size: 1.3rem;
        line-height: 1.4;
        max-width: 100%;
    }

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

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

      /* Remove hero image animation on mobile */
    .hero-image {
        margin-bottom: 2rem;
    }

    .hero-image img {
        transform: none !important;
    }

    /* Remove hero-card animations on mobile */
    .hero-card {
        transform: none !important;
        transition: none !important;
    }

    .hero-card:hover {
        transform: none !important;
    }

    .hero-card::before {
        display: none !important;
    }

    /* Disable pulse and wave animations on mobile for performance */
    .hero-loaded .hero-card {
        animation: heroSlideInRightMobile 0.6s ease-out 0.35s forwards !important;
    }

    .hero-pulse-waves {
        display: none !important;
    }

    .pulse-wave {
        display: none !important;
    }

    .hero-wave {
        display: none !important;
    }

    /* Enable hero animations on mobile with adjusted transforms */
    .hero-text h1,
    .hero-text h2,
    .hero-subtitle,
    .hero-location,
    .hero-buttons,
    .hero-image {
        opacity: 0;
        transform: translateY(15px);
    }

    .hero-image {
        transform: translateX(15px) translateY(8px);
    }

    /* Mobile-specific animation adjustments */
    .hero-loaded .hero-text h1 {
        animation: heroSlideInMobile 0.6s ease-out forwards;
    }

    .hero-loaded .hero-text h2 {
        animation: heroSlideInMobile 0.6s ease-out 0.15s forwards;
    }

    .hero-loaded .hero-subtitle {
        animation: heroSlideInMobile 0.6s ease-out 0.3s forwards;
    }

    .hero-loaded .hero-location {
        animation: heroSlideInMobile 0.6s ease-out 0.45s forwards;
    }

    .hero-loaded .hero-buttons {
        animation: heroSlideInMobile 0.6s ease-out 0.6s forwards;
    }

    .hero-loaded .hero-image {
        animation: heroSlideInRightMobile 0.6s ease-out 0.35s forwards;
    }

    /* Disable all AOS animations for hero section on mobile */
    .hero [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    /* Remove any transforms from hero section elements */
    .hero * {
        transform: none !important;
    }

    /* Specifically disable any movement animations */
    .hero,
    .hero-content,
    .hero-text,
    .hero-image,
    .hero-card {
        will-change: auto !important;
    }

    .intro-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
        position: relative;
    }

    .intro-description {
        text-align: center;
    }

    /* Ensure floating animation area remains visible on mobile */
    .intro-animation {
        position: relative;
        height: 250px; /* Reduced but still visible */
        margin-top: 2rem;
    }

    .floating-elements {
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
        position: relative;
    }

    /* Keep all floating elements visible on mobile */
    .floating-element {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        display: flex; /* Override any display: none */
        opacity: 0.8; /* Slightly more subtle */
    }

    /* Reposition floating elements for mobile */
    .floating-element:nth-child(1) {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-element:nth-child(2) {
        bottom: 10px;
        left: 20px;
    }

    .floating-element:nth-child(3) {
        bottom: 10px;
        right: 20px;
    }

    .floating-element:nth-child(4) {
        top: 60px;
        left: 15px;
        display: flex; /* Ensure it's visible */
    }

    .floating-element:nth-child(5) {
        top: 60px;
        right: 15px;
        display: flex; /* Ensure it's visible */
    }

    .floating-element:nth-child(6) {
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        display: flex; /* Ensure it's visible */
    }

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

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

    .treatment-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-info,
    .footer-contact,
    .footer-social {
        text-align: center;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

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

    /* These styles are now handled in the comprehensive section above */

    .particle {
        width: 3px;
        height: 3px;
    }

    .symbol {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-content {
        padding-bottom: 2rem;
    }

    .hero-image {
        margin-bottom: 1.5rem;
    }

    .hero {
        padding-bottom: 2rem;
    }

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

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .hospital-card {
        padding: 2rem;
    }

    .treatment-block {
        padding: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .faq-question-new {
        padding: 1rem;
        gap: 0.75rem;
        touch-action: manipulation;
    }

    .faq-question-new span {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .faq-icon-new {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-right: 0.75rem;
    }

    .faq-answer-new {
        transition: max-height 0.2s ease-out, padding 0.2s ease-out;
    }

    /* Reduce hover effects on mobile for better performance */
    .faq-item-new:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-item-new:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .carousel-slide img {
        height: 250px;
    }
}

/* Performance optimizations */
* {
    will-change: auto;
}

.floating-card,
.service-card,
.hospital-card,
.contact-item,
.faq-item-new {
    will-change: transform;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================= */
/* 1) Remove default bullets, set up base styles */
/* ============================================= */
.hospital-list {
  list-style: none;      /* no default bullets */
  padding: 0;            /* no indent */
  margin: 1em 0 0;       /* space above list */
}

/* ============================================= */
/* 2) Style each list-item with icon + text     */
/* ============================================= */
.hospital-list li {
  display: flex;
  align-items: center;      /* perfectly center icon/text */
  margin-bottom: 0.6em;     /* gap between items */
  line-height: 1.4;         /* tighten text */
}

/* Icon in front of each item */
.hospital-list li i {
  color: #4B6CB7;           /* your brand color */
  font-size: 0.9em;
  margin-right: 0.6em;      /* space between icon & text */
  margin-top: 0;            /* remove vertical adjustment */
}

/* Ensure long labels wrap nicely */
.hospital-list li span {
  display: inline-block;
}

/* Optional: last-item tweak to remove extra bottom margin */
.hospital-list li:last-child {
  margin-bottom: 0;
}

/* Educational Note Styles */
.education-note {
  text-align: left;
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44, 90, 160, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.education-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2c5aa0, #1e88e5, #2c5aa0);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.note-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(44, 90, 160, 0.15);
  transition: all 0.3s ease;
}

.note-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.25);
}

.note-icon i {
  color: #2c5aa0;
  font-size: 1.25rem;
}

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

.note-text {
  flex: 1;
}

.note-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.note-content strong {
  color: #2c5aa0;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.note-content strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2c5aa0, #1e88e5);
  border-radius: 1px;
}

.note-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 140px;
}

/* Individual benefit tag colors */
.benefit-tag:nth-child(1) {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
  color: #2d6a4f;
  border: 1px solid rgba(45, 106, 79, 0.2);
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.08);
}

.benefit-tag:nth-child(2) {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  border: 1px solid rgba(133, 100, 4, 0.2);
  box-shadow: 0 2px 8px rgba(133, 100, 4, 0.08);
}

.benefit-tag:nth-child(3) {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565c0;
  border: 1px solid rgba(21, 101, 192, 0.2);
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
}

.benefit-tag:nth-child(4) {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
  color: #c2185b;
  border: 1px solid rgba(194, 24, 91, 0.2);
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.08);
}

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

.benefit-tag:hover {
  transform: translateY(-2px);
}

.benefit-tag:nth-child(1):hover {
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.2);
  border-color: rgba(45, 106, 79, 0.4);
}

.benefit-tag:nth-child(2):hover {
  box-shadow: 0 4px 16px rgba(133, 100, 4, 0.2);
  border-color: rgba(133, 100, 4, 0.4);
}

.benefit-tag:nth-child(3):hover {
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.2);
  border-color: rgba(21, 101, 192, 0.4);
}

.benefit-tag:nth-child(4):hover {
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.2);
  border-color: rgba(194, 24, 91, 0.4);
}

.benefit-tag:hover::before {
  left: 100%;
}

.benefit-tag i {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Individual icon colors */
.benefit-tag:nth-child(1) i {
  color: #2d6a4f;
}

.benefit-tag:nth-child(2) i {
  color: #856404;
}

.benefit-tag:nth-child(3) i {
  color: #1565c0;
}

.benefit-tag:nth-child(4) i {
  color: #c2185b;
}

/* Responsive Design for Educational Note */
@media (max-width: 768px) {
  .education-note {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .note-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .note-icon {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin-bottom: 0;
    align-self: center;
  }

  .note-icon i {
    font-size: 1.125rem;
  }

  .note-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .note-benefits {
    gap: 0.5rem;
    justify-content: center;
  }

  .benefit-tag {
    font-size: 0.8rem;
    padding: 0.425rem 0.875rem;
    gap: 0.375rem;
    min-width: 120px;
  }

  .benefit-tag i {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .education-note {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }

  .note-content {
    gap: 0.875rem;
  }

  .note-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .note-icon i {
    font-size: 1rem;
  }

  .note-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.125rem;
  }

  .note-benefits {
    gap: 0.425rem;
    flex-wrap: wrap;
  }

  .benefit-tag {
    font-size: 0.775rem;
    padding: 0.375rem 0.75rem;
    gap: 0.325rem;
    min-width: 110px;
    flex: 1 1 calc(50% - 0.2125rem);
    max-width: calc(50% - 0.2125rem);
  }

  .benefit-tag i {
    font-size: 0.65rem;
  }
}

/* Extra small mobile phones */
@media (max-width: 360px) {
  .education-note {
    padding: 1rem;
    margin: 1.25rem 0;
  }

  .note-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .benefit-tag {
    font-size: 0.75rem;
    padding: 0.325rem 0.625rem;
    gap: 0.25rem;
    min-width: 100px;
  }

  .benefit-tag i {
    font-size: 0.6rem;
  }
}

/* Main FAQ Section Styles */
.main-faq-section {
  margin: 2.5rem 0;
  padding: 0;
}

.main-faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 90, 160, 0.12);
  transition: all 0.3s ease;
  position: relative;
}

.main-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%232c5aa0" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%232c5aa0" opacity="0.1"/></svg>');
  pointer-events: none;
}

.main-faq-item:hover {
  box-shadow: 0 12px 40px rgba(44, 90, 160, 0.18);
  transform: translateY(-2px);
}

.main-faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.main-faq-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  padding-right: 5.5rem;
  flex: 1;
}

.main-faq-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}


.main-faq-question:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f5faff 100%);
}

.main-faq-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e88e5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.25);
  flex-shrink: 0;
}

.main-faq-icon i {
  color: white;
  font-size: 1.5rem;
}

.main-faq-title {
  flex: 1;
}

.main-faq-title h3 {
  color: #2c5aa0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.faq-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

/* Question Image Styles */
.question-image {
  flex-shrink: 0;
}

.question-image-container {
  position: relative;
  width: 160px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44, 90, 160, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.question-image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.25);
}

.question-image-container:hover img {
  transform: scale(1.1);
}

.question-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(30, 136, 229, 0.1) 100%);
  pointer-events: none;
}

.main-faq-toggle {
  width: 40px;
  height: 40px;
  background: rgba(44, 90, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.main-faq-toggle i {
  color: #2c5aa0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.main-faq-item.active .main-faq-toggle {
  background: #2c5aa0;
}

.main-faq-item.active .main-faq-toggle i {
  color: white;
  transform: rotate(180deg);
}

.main-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.main-faq-item.active .main-faq-answer {
  max-height: 800px;
  padding: 0 2rem 2rem 2rem;
}

.answer-content {
  padding-top: 1rem;
}


.answer-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 25px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 90, 160, 0.12);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%232c5aa0" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%232c5aa0" opacity="0.1"/></svg>');
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(44, 90, 160, 0.18);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e88e5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 16px rgba(44, 90, 160, 0.2);
}

.benefit-icon i {
  color: white;
  font-size: 1.2rem;
}

.benefit-card h4 {
  color: #2c5aa0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.85rem;
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e88e5 100%);
  border-radius: 16px;
  margin-top: 2rem;
}

.cta-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: #2c5aa0;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.cta-button i {
  font-size: 1.1rem;
}

/* Responsive Design for Main FAQ */
@media (max-width: 768px) {
  .main-faq-section {
    margin: 2rem 0;
  }

  .main-faq-content {
    padding: 1.5rem;
    gap: 1.5rem;
    flex-direction: column;
  }

  .main-faq-left {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .main-faq-icon {
    width: 56px;
    height: 56px;
    order: -1;
    margin: 0 auto 1rem auto;
  }

  .question-image-container {
    width: 240px;
    height: 140px;
    margin: 0 auto;
  }

  .main-faq-icon i {
    font-size: 1.5rem;
  }

  .main-faq-title {
    width: 100%;
  }

  .main-faq-title h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .main-faq-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
  }

  .main-faq-toggle i {
    font-size: 1rem;
  }

  .main-faq-item.active .main-faq-answer {
    padding: 0 1.5rem 2rem 1.5rem;
  }

  
  .answer-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
  }

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

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

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

  .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem auto;
  }

  .benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .cta-section {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .cta-text {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 480px) {
  .main-faq-section {
    margin: 1.5rem 0;
  }

  .main-faq-content {
    padding: 1.25rem;
    gap: 1.25rem;
    flex-direction: column;
  }

  .main-faq-left {
    flex-direction: column;
    text-align: center;
    gap: 0.875rem;
  }

  .main-faq-icon {
    width: 52px;
    height: 52px;
    order: -1;
    margin: 0 auto 1rem auto;
  }

  .question-image-container {
    width: 200px;
    height: 120px;
    margin: 0 auto;
  }

  .main-faq-icon i {
    font-size: 1.375rem;
  }

  .main-faq-title {
    width: 100%;
  }

  .main-faq-title h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.375rem;
  }

  .main-faq-toggle {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 34px;
    height: 34px;
  }

  .main-faq-toggle i {
    font-size: 0.95rem;
  }

  .main-faq-item.active .main-faq-answer {
    padding: 0 1.25rem 1.75rem 1.25rem;
  }

  
  .answer-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    text-align: center;
  }

  .benefits-grid {
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.75rem 1.25rem;
    text-align: center;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem auto;
  }

  .benefit-icon i {
    font-size: 1.375rem;
  }

  .benefit-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.625rem;
  }

  .benefit-card p {
    font-size: 0.925rem;
    line-height: 1.6;
  }

  .cta-section {
    padding: 1.75rem 1.25rem;
    margin-top: 1.75rem;
  }

  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}




