/* Cardiology Page Styles - Modern Design */

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 50%, #7F1D1D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
    animation: hero-bg-move 20s ease-in-out infinite;
}

@keyframes hero-bg-move {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.75), rgba(159, 18, 57, 0.75));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: slide-down 1s ease-out;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fade-in-up 1s ease-out 0.3s both;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hero-stats .stat-item::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.6s ease;
}

.hero-stats .stat-item:hover::before {
    left: 100%;
}

.hero-stats .stat-item:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), 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;
    font-size: 2em;
    color: #FCA5A5;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover .stat-icon-wrapper {
    transform: scale(1.2) rotate(15deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(252, 165, 165, 0.3);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.2em;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.floating-heart, .floating-plus, .floating-star {
    position: absolute;
    font-size: 2em;
    color: rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

.floating-heart {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-plus {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-star {
    bottom: 25%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.service-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2em;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.service-card h3 {
    font-size: 1.6em;
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 0.95em;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-list li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 28px;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.service-list li:hover {
    color: #DC2626;
    transform: translateX(5px);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
    font-size: 1.1em;
}

.services-section .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.services-section .section-header p {
    color: #666;
    font-size: 1.1em;
}

/* Treatment Programs Section */
.treatment-programs {
    padding: 100px 0;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    position: relative;
}

.treatment-programs::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 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.02)"/></svg>') repeat-x;
    opacity: 0.5;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.program-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.program-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-card:hover .program-image img {
    transform: scale(1.15);
}

.program-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 40px 20px 20px;
    color: white;
    transition: all 0.4s ease;
}

.program-overlay h4 {
    font-size: 1.5em;
    margin: 0;
    font-weight: 700;
}

.program-content {
    padding: 30px 25px;
}

.program-content p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-features span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.treatment-programs .section-header h2 {
    color: white;
    font-size: 2.8em;
    font-weight: 800;
}

.treatment-programs .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.why-choose-section .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.why-choose-section .section-header p {
    color: #666;
    font-size: 1.1em;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    width: 100%;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #991B1B);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 3px;
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.1);
    border-color: #DC2626;
}

.feature-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2em;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-15deg);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.feature-content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1F2937;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Heart Health Tips Section */
.health-tips {
    padding: 100px 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tip-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #991B1B);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tip-card:hover::before {
    left: 100%;
}

.tip-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
    border-color: #DC2626;
}

.tip-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2em;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 1;
}

.tip-card:hover .tip-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.tip-card h3 {
    font-size: 1.4em;
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
}

.health-tips .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.health-tips .section-header p {
    color: #666;
    font-size: 1.1em;
}

/* Common Conditions Section */
.conditions-section {
    padding: 100px 0;
    background: white;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.condition-card {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #DC2626;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    border-radius: 0 20px 0 100px;
    transition: all 0.4s ease;
}

.condition-card:hover::before {
    width: 150px;
    height: 150px;
}

.condition-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
    border-left-color: #991B1B;
}

.condition-number {
    font-size: 3.5em;
    font-weight: 800;
    color: #DC2626;
    opacity: 0.15;
    margin-bottom: 10px;
    position: absolute;
    top: 10px;
    right: 20px;
}

.condition-card h3 {
    font-size: 1.3em;
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.condition-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
}

.conditions-section .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.conditions-section .section-header p {
    color: #666;
    font-size: 1.1em;
}

/* Advanced Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.tech-card:hover::after {
    bottom: -10%;
    right: -10%;
}

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
    border-color: #DC2626;
}

.tech-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2em;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 1;
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotate(-15deg);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.tech-card h3 {
    font-size: 1.2em;
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9em;
    position: relative;
    z-index: 1;
}

.technology-section .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.technology-section .section-header p {
    color: #666;
    font-size: 1.1em;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 40px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    top: -10%;
    right: -10%;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 2.5em;
    color: #DC2626;
    margin-bottom: 20px;
    opacity: 0.7;
    display: block;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1em;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #DC2626;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: #1F2937;
    margin: 0;
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 5px;
    line-height: 1.3;
}

.author-info span {
    color: #DC2626;
    font-size: 0.85em;
    font-weight: 600;
    display: block;
    margin-top: 3px;
    line-height: 1.2;
}

.testimonials-section .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.testimonials-section .section-header p {
    color: #666;
    font-size: 1.1em;
}

/* Contact CTA Section - Redesigned */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::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 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat-x;
    opacity: 1;
    z-index: 1;
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-header h2 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.cta-header p {
    font-size: 1.2em;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.cta-main-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Benefits Section */
.cta-benefits {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.cta-benefits h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.benefit-number {
    font-size: 1.8em;
    font-weight: 800;
    color: #FCA5A5;
}

.benefit-content h4 {
    font-size: 1.1em;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.benefit-content p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
    line-height: 1.5;
}

/* Contact Cards Section */
.cta-contact-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card-large {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.contact-card-large:hover::before {
    top: -10%;
    right: -10%;
}

.contact-card-large:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    border-color: #DC2626;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2em;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.contact-card-large:hover .contact-card-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.contact-card-large h3 {
    color: #1F2937;
    font-size: 1.4em;
    margin: 0 0 10px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-description {
    color: #999;
    font-size: 0.9em;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.contact-card-large .contact-detail {
    color: #DC2626;
    font-size: 1.2em;
    font-weight: 700;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
}

.contact-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.contact-btn.secondary {
    background: #F3F4F6;
    color: #DC2626;
}

.contact-btn.secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Response Info */
.response-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.response-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.response-item i {
    font-size: 2.2em;
    color: #FCA5A5;
}

.response-item h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
}

.response-item p {
    margin: 3px 0 0 0;
    font-size: 0.85em;
    opacity: 0.9;
}

/* Responsive for Contact CTA */
@media (max-width: 1024px) {
    .cta-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-header h2 {
        font-size: 2.3em;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 60px 0;
    }

    .cta-header h2 {
        font-size: 1.8em;
    }

    .cta-header p {
        font-size: 1em;
    }

    .cta-benefits h3 {
        font-size: 1.5em;
    }

    .response-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .contact-card-large {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 40px 0;
    }

    .cta-header h2 {
        font-size: 1.4em;
    }

    .cta-benefits h3 {
        font-size: 1.2em;
    }

    .contact-btn {
        width: 100%;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    color: #1F2937;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1em;
    color: #666;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2em;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 45px rgba(220, 38, 38, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Animations */
@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-list {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .section-header h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stats .stat-item {
        min-width: 100px;
        padding: 20px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8em;
    }

    .section-header p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1em;
    }

    .contact-cta {
        padding: 50px 0;
    }

    .cta-text h2 {
        font-size: 1.5em;
    }

    .cta-content {
        padding: 0 15px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-section .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.faq-section .section-header p {
    color: #666;
    font-size: 1.1em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #1F2937;
    font-weight: 700;
}

.faq-question i {
    font-size: 1.2em;
    color: #DC2626;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, #FECACA 0%, #FCA5A5 100%);
}

.faq-item:hover .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 25px;
    color: #555;
    line-height: 1.8;
    display: none;
    border-top: 2px solid #FEE2E2;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fade-in-up 0.4s ease;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95em;
}

/* Patient Resources Section */
.patient-resources {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.patient-resources .section-header h2 {
    color: #1F2937;
    font-weight: 800;
    font-size: 2.8em;
}

.patient-resources .section-header p {
    color: #666;
    font-size: 1.1em;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.resource-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.resource-card:hover::before {
    top: -10%;
    right: -10%;
}

.resource-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(220, 38, 38, 0.15);
    border-color: #DC2626;
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.resource-card:hover .resource-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.resource-card h3 {
    font-size: 1.5em;
    color: #1F2937;
    margin: 0 0 15px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 1;
}

.resource-list li {
    padding: 8px 0;
    color: #555;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.resource-list li:hover {
    color: #DC2626;
    transform: translateX(5px);
}

.resource-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: bold;
    font-size: 1.1em;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.resource-link i {
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(3px);
}

/* Responsive for FAQ and Resources */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .faq-section .section-header h2,
    .patient-resources .section-header h2 {
        font-size: 1.8em;
    }
}