/* Variables */
:root {
    --primary-color: #3182ce;
    --primary-dark: #2c5282;
    --primary-light: #63b3ed;
    --primary-rgb: 49, 130, 206;
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --surface-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 12px rgba(0, 0, 0, 0.15);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cardio Bot Guide */
.cardio-bot-guide {
    padding: 0 0 2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* Styles pour les sections avec image de fond en parallax */
.hero-section-bg,
.cardio-bot-guide-bg {
    background: url("../../img/doctor-looking-information-database.18bd8c485618.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.guide-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}

/* S'assurer que le texte des guide-cards (Comment utiliser Cardio Bot) est lisible */
.guide-card h3 {
    color: #1a365d !important;
}

.guide-card p {
    color: #1a365d !important;
}

.guide-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2c5282, #3182ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    animation: pulse 2s infinite;
}

.guide-step-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    max-width: 100%;
    padding: 20px 0 0 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1; /* Reste sous la navbar (z-index: 1000) */
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #e53e3e 100%);
    color: white;
    padding: 0.05rem 0.3rem !important;
    min-height: 18px;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
    font-size: 0.92em;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-15deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    50% { transform: translateX(200%) skewX(-15deg); }
    100% { transform: translateX(-100%) skewX(-15deg); }
}

.emergency-banner.show {
    transform: translateY(0);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.emergency-icon {
    font-size: 0.95rem;
    animation: pulse 2s infinite;
    color: white;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.emergency-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.05rem 0.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

.emergency-number i {
    font-size: 1.1rem;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(-10deg); }
    40%, 80% { transform: rotate(10deg); }
}

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

.emergency-banner.show {
    transform: translateY(0);
}

.emergency-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
    min-height: 16px;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.emergency-icon {
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

.emergency-numbers {
    display: flex;
    gap: 0.2rem;
}

.emergency-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.05rem 0.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}



.hero-section .col-12.text-center {
    width: 100%;
    z-index: 10;
    margin: 0;
    background: transparent;
    padding-top: 0.2rem;
}

.hero-section .container {
    width: 100%;
    max-width: 1200px;
    background: transparent;
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1vh;
}

.hero-section .row {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    align-items: center;
    min-height: auto;
}

.hero-section .display-1 {
    display: inline-block;
    font-size: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@media (max-width: 768px) {
    .hero-section .display-1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

.hero-section .row {
    margin-top: -2rem;
}

.hero-section .col-lg-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        padding: 0;
        background-attachment: scroll;
        background-position: center right;
    }
    
    .hero-section .container {
        padding: 1rem;
        padding-top: 3vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0;
        margin: 1.5rem auto 2rem;
        line-height: 1.5;
    }
    
    .hero-description div {
        margin-bottom: 0.4rem;
    }
    
    .hero-cta {
        margin-top: 0.5rem;
    }
    
    .hero-section .row {
        margin-top: 0;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-title .gradient-text {
    font-size: 4rem;
    background-size: 200% auto;
    animation: gradientText 3s ease infinite;
    display: block;
    margin-bottom: 0.5rem;
}

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

.hero-section .lead {
    font-size: 1.25rem;
    color: #0f172a;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-section img {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 1.1s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

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

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    padding: 2rem;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image {
    transition: all 0.3s ease;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.hero-image:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .hero-image-container {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .hero-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        padding: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .hero-image {
        max-height: 300px;
    }
}



.welcome-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    padding: 0.2rem 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Couleur spécifique pour les titres de sections (identique au texte des cartes) */
.section-title .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #1a365d;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #2c5282 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

/* Shapes and Patterns */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary-gradient);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--primary-color) 1px, transparent 0);
    background-size: 50px 50px;
    opacity: 0.02;
    pointer-events: none;
}

/* Buttons */
.action-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentlePulse 8s infinite ease-in-out;
    font-size: 1.2rem;
    border-radius: 1rem;
    box-shadow: 
        0 8px 25px rgba(49, 130, 206, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.action-btn .btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-btn:hover .btn-glow {
    opacity: 0.1;
    animation: rotate 4s linear infinite;
}

.action-btn .btn-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.action-btn .btn-particles::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-btn:hover .btn-particles::before {
    opacity: 0.1;
    animation: rotate 8s linear infinite;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(49, 130, 206, 0.2);
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.action-btn:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.action-btn:active {
    transform: translateY(1px);
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.2);
}

.action-btn i {
    transition: transform 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Hero CTA Button */
.hero-description {
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-description div {
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Hero Text Content - Clean Design without Card */
.hero-text-content {
    text-align: center;
    margin: 2.5rem auto 3rem;
    max-width: 800px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.intro-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3182ce;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    position: relative;
}

.intro-main::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3182ce, #2c5282);
    border-radius: 2px;
}

.heart-word {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-size: 1.1em;
}

.doctors-presentation {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.3rem 0 1.2rem;
    color: #3182ce;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.doctor-name {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
}

.doctor-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3182ce, #2c5282);
    transition: width 0.3s ease;
}

.doctor-name:hover::after {
    width: 100%;
}

.divider-dot {
    color: #3182ce;
    font-weight: bold;
    font-size: 1.5rem;
    opacity: 0.7;
}

.services-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3182ce;
    font-style: italic;
    line-height: 1.6;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text-content {
        margin: 2rem auto 2.5rem;
        max-width: 95%;
    }
    
    .intro-main {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .doctors-presentation {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-main {
        font-size: 1.1rem;
    }
    
    .doctors-presentation {
        font-size: 1rem;
    }
    
    .services-description {
        font-size: 0.95rem;
    }
}

.hero-cta {
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

.btn-cta,
.btn-cta:link,
.btn-cta:visited,
.btn-cta:active,
.btn-cta:focus {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    border-radius: 0.75rem;
    box-shadow:
        0 8px 25px rgba(229, 62, 62, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(229, 62, 62, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    color: white !important;
    text-decoration: none !important;
}

.btn-cta i,
.btn-cta:hover i,
.btn-cta:link i,
.btn-cta:visited i,
.btn-cta:active i,
.btn-cta:focus i {
    color: white !important;
}

.btn-cta .btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.75rem;
}

.btn-cta:hover .btn-glow {
    opacity: 0.15;
    animation: rotate 3s linear infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
    border-radius: 0.75rem;
}

.btn-cta:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.btn-cta:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* France Connect Button */
.fc-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

/* Button Animations */
.animate-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-hover:hover {
    transform: translateY(-3px) scale(1.02);
}

.rotate-hover {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover .rotate-hover {
    transform: rotate(15deg) scale(1.1);
}

.pulse-effect {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 4rem;
    background: transparent;
}

.features-section .card-title {
    color: #1a365d !important;
}

.features-section .container {
    padding: 0 0 0.5rem;
}

.features-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin: 5rem 0 6rem;
    position: relative;
}

.feature-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.feature-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
}

.feature-list {
    margin-top: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.feature-list li {
    padding: 1.25rem 0;
    font-size: 1.1rem;
}

.features-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin: 2rem auto;
    position: relative;
    padding: 1rem 0;
}

.assistant-section {
    background: transparent;
    position: relative;
    margin-top: -4px;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.1);
}



.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}



.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a365d;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.75rem;
    color: var(--primary-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li::before {
    opacity: 1;
    transform: scale(1);
}

.feature-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

/* Feature card styles cleaned up */

.feature-card .card-body {
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(49, 130, 206, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.2) 0%, rgba(49, 130, 206, 0.1) 100%);
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(44, 82, 130, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: #3182ce;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.15) 0%, rgba(44, 82, 130, 0.1) 100%);
}

.feature-card:hover .feature-icon-wrapper i {
    color: #2c5282;
}

/* Simplified icon effects */

/* Trust Badges Section */
.trust-badges-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.trust-badge {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a365d;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

/* Why Choose Us Section */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f5ff 100%);
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.why-us-section {
    position: relative;
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number::after {
    transform: scaleX(1);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1a365d;
    font-size: 1.1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1)
    );
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(49, 130, 206, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

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

.testimonial-content .fa-quote-left {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonial-card:hover .fa-quote-left {
    transform: scale(1.2) rotate(-10deg);
    opacity: 0.3;
}

.author-stars {
    color: #f6ad55;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-stars {
    transform: scale(1.1);
}

.author-stars i {
    margin: 0 0.1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-stars i {
    animation: starPulse 1s ease infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content .fa-quote-left {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.author-stars {
    color: #f6ad55;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #e53e3e 100%);
    padding: 3rem 0;
    margin-top: 0.5rem;
    color: white;
    box-shadow: 
        0 -20px 40px -5px rgba(0, 0, 0, 0.1),
        0 -30px 60px -10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
}

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

.emergency-section .emergency-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.2);
}

.emergency-section h3,
.emergency-section p,
.emergency-section .emergency-list {
    color: #1a365d;
}

.emergency-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f56565;
}

.emergency-list {
    list-style: none;
    padding: 0;
}

.emergency-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.emergency-list li:last-child {
    border-bottom: none;
}

.emergency-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* Responsive Design */
/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.2;
        padding: 0.2rem 0;
    }
    
    .feature-card {
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0.2rem 0;
    }
    
    .hero-section {
        padding: 100px 0 2rem;
    }
    
    .hero-description {
        margin: 1.8rem auto 2.2rem;
        font-size: 1.05rem;
    }
    
    .hero-description div {
        margin-bottom: 0.45rem;
    }
    
    .hero-cta {
        margin-top: 0.8rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        padding: 0.2rem 0;
    }
    
    .hero-section {
        padding: 90px var(--container-padding) 2rem;
        text-align: center;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .trust-badge {
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .emergency-btn {
        width: 100%;
    }
    
    .feature-list li {
        padding: 0.5rem 0;
    }
    
    .action-btn {
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
@media (max-width: 600px) {
    .emergency-banner {
        font-size: 0.85em;
        padding: 0.05rem 0.1rem !important;
    }
    .emergency-number {
        padding: 0.05rem 0.2rem;
        font-size: 0.85em;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0.2rem 0;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .emergency-section {
        padding: 2rem 0;
    }
    
    .emergency-banner {
        padding: 0.5rem 0;
    }
    
    .emergency-number {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
        padding: 0.2rem 0;
    }
    
    .hero-section {
        padding: 80px var(--container-padding) 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .emergency-banner-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .emergency-numbers {
        flex-direction: column;
        width: 100%;
    }
    
    .emergency-number {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .features-section,
    .trust-badges-section,
    .emergency-section {
        padding: 1rem 0;
    }
    
    .hero-pattern,
    .hero-shape,
    .feature-card::before,
    .feature-card::after,
    .action-btn::before,
    .action-btn::after {
        display: none;
    }
    
    .hero-title,
    .gradient-text,
    .gradient-text-alt {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
        background: none !important;
    }
    
    .feature-card,
    .stat-card,
    .testimonial-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .feature-card:hover,
    .stat-card:hover,
    .testimonial-card:hover,
    .action-btn:hover {
        transform: none !important;
    }
}

/* Assistant Section */
.assistant-section {
    background: transparent;
    position: relative;
}

.badge {
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.badge i {
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15);
}

.badge:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.badge:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--primary-color);
}

.badge:active {
    transform: translateY(1px);
}

.assistant-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary-gradient);
    z-index: 0;
}

.chat-preview-wrapper {
    perspective: 1000px;
}

.chat-preview {
    max-width: 400px;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.chat-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.status-indicator.online {
    background: #48bb78;
    box-shadow: 0 0 0 2px rgba(72, 187, 120, 0.2);
    animation: pulse 2s infinite;
}

.message-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.feature-list-alt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    font-size: 1.5rem;
    padding: 1rem;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    background: rgba(49, 130, 206, 0.2);
}

.faq-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(49, 130, 206, 0.2);
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.faq-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a365d;
    transition: all 0.3s ease;
}

.faq-list li:last-child {
    border-bottom: none;
}

.faq-list li:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.faq-list li::before {
    content: '?';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 0.75rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-list li:hover::before {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.chat-preview:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.chat-message {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    animation: messageSlideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.bot-message {
    background: #f0f7ff;
    color: #1a365d;
    border-bottom-left-radius: 0.5rem;
    animation-delay: 0.2s;
}

.user-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 0.5rem;
    animation-delay: 0.4s;
}

.typing-indicator {
    padding: 1rem;
    animation: fadeIn 0.3s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Clinic Information Section */
.clinic-info-section {
    background: var(--surface-gradient);
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.hours-card.card,
.doctor-card.card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3rem;
    box-shadow: 
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        0 20px 50px -10px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hours-card.card:hover,
.doctor-card.card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px -5px rgba(0, 0, 0, 0.15),
        0 30px 60px -10px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 1);
}

.clinic-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary-gradient);
    z-index: 0;
}

.doctor-icon,
.hours-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.doctor-icon::after,
.hours-icon::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.2), transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.doctor-card:hover .doctor-icon::after,
.hours-card:hover .hours-icon::after {
    opacity: 1;
    animation: rotate 8s linear infinite;
}

.doctor-card:hover .doctor-icon,
.hours-card:hover .hours-icon {
    transform: scale(1.1);
}

.hour-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.hour-row:hover {
    background: rgba(var(--primary-rgb), 0.02);
    transform: translateX(10px);
}

.hour-row:last-child {
    border-bottom: none;
}

.contact-info a {
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Animations */
@keyframes gentlePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 6px rgba(49, 130, 206, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 8px 15px rgba(49, 130, 206, 0.3); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(2deg); }
    50% { transform: translate(0, -40px) rotate(0deg); }
    75% { transform: translate(-20px, -20px) rotate(-2deg); }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .doctor-card,
    .hours-card {
        margin: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .action-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Font Face */
@font-face {
    font-family: 'Marianne';
    src: url('https://cdn.jsdelivr.net/npm/@gouvfr/dsfr@1.7.2/dist/fonts/Marianne-Regular.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/@gouvfr/dsfr@1.7.2/dist/fonts/Marianne-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Marianne';
    src: url('https://cdn.jsdelivr.net/npm/@gouvfr/dsfr@1.7.2/dist/fonts/Marianne-Medium.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/@gouvfr/dsfr@1.7.2/dist/fonts/Marianne-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}