/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B5E8D;
    --secondary-color: #1A8FBD;
    --text-dark: #1E1548;
    --text-gray: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --badge-bg: #FEF2F2;
    --badge-text: #991B1B;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shape-color-1: #DBEAFE;
    --shape-color-2: #E0F2FE;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-img {
    height: 50px;
    width: auto;
}

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

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

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

/* Hero Left */
.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--badge-bg);
    color: var(--badge-text);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.doctor-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.specialty {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-gray);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Hero Right - Doctor Card */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.doctor-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 0.8;
    background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 100%);
    border-radius: 30px;
    overflow: visible;
    box-shadow: var(--shadow-xl);
}

.background-text {
    display: none;
}

.background-text-2 {
    display: none;
}

.doctor-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 2;
    border-radius: 30px;
}

.contact-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 10;
    animation: slideInUp 0.6s ease-out 0.8s both;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-card * {
    text-decoration: none;
}

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

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

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

.contact-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.contact-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    text-decoration: none;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--shape-color-1);
    top: -200px;
    right: -100px;
    filter: blur(60px);
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--shape-color-2);
    bottom: -150px;
    right: 50px;
    filter: blur(80px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

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

    .doctor-card {
        max-width: 400px;
    }

    .background-text {
        font-size: 4rem;
    }

    .background-text-2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero {
        margin-top: 70px;
        padding: 3rem 0 4rem;
    }

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

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }

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

    .doctor-name {
        font-size: 1.5rem;
    }

    .specialty {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .doctor-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .background-text {
        font-size: 3rem;
        left: 1rem;
    }

    .background-text-2 {
        font-size: 2.5rem;
        right: 1rem;
    }

    .contact-card {
        left: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }

    .shape-1,
    .shape-2 {
        width: 250px;
        height: 250px;
    }
}

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }

    .contact-card {
        padding: 0.875rem;
    }

    .contact-number {
        font-size: 1rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 94, 141, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 143, 189, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-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.5);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 94, 141, 0.03) 0%, rgba(26, 143, 189, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 94, 141, 0.15);
    border-color: rgba(11, 94, 141, 0.2);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(11, 94, 141, 0.25);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(11, 94, 141, 0.35);
}

.service-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--text-dark);
}

/* Staggered animation for service cards */
.service-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.service-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.service-card:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.service-card:nth-child(6) {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services {
        padding: 5rem 0;
    }

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

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

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

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

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

    .section-description {
        font-size: 1rem;
    }

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

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

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 0;
    }

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

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(11, 94, 141, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.info-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.6);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 94, 141, 0.02) 0%, rgba(26, 143, 189, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 35px rgba(11, 94, 141, 0.12);
    border-color: rgba(11, 94, 141, 0.15);
}

.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.info-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.info-card:hover .info-icon::after {
    transform: rotate(45deg) translateX(100%);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.phone-icon {
    background: linear-gradient(135deg, #EC4899, #EF4444);
}

.location-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.schedule-icon {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
}

.info-content {
    flex: 1;
    position: relative;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.info-card:hover .info-value {
    color: var(--primary-color);
}

/* Map Wrapper */
.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    box-shadow: 0 12px 40px rgba(11, 94, 141, 0.15);
    transform: translateY(-3px);
}

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

/* Animation for info cards */
.info-card:nth-child(1) {
    animation: fadeInLeft 0.6s ease-out 0.2s both;
}

.info-card:nth-child(2) {
    animation: fadeInLeft 0.6s ease-out 0.3s both;
}

.info-card:nth-child(3) {
    animation: fadeInLeft 0.6s ease-out 0.4s both;
}

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

.map-wrapper {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact {
        padding: 5rem 0;
    }

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

    .map-wrapper {
        min-height: 400px;
    }

    .map-iframe {
        min-height: 400px;
    }
}

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

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .info-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .info-icon {
        width: 56px;
        height: 56px;
    }

    .info-value {
        font-size: 1rem;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .map-iframe {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        gap: 2rem;
    }

    .info-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        width: 52px;
        height: 52px;
    }

    .info-label {
        font-size: 0.8125rem;
    }

    .info-value {
        font-size: 0.9375rem;
    }

    .map-wrapper {
        min-height: 300px;
        border-radius: 20px;
    }

    .map-iframe {
        min-height: 300px;
        border-radius: 20px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0F0B2E 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 143, 189, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 350px;
}

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

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

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.badge-text {
    font-size: 0.875rem;
}

.heart-icon {
    color: #EF4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 3.5rem 0 1.75rem;
    }

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.9375rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-link,
    .footer-text {
        font-size: 0.875rem;
    }

    .footer-copyright,
    .badge-text {
        font-size: 0.8125rem;
    }

    .footer-badge {
        gap: 0.375rem;
    }

    .heart-icon {
        width: 14px;
        height: 14px;
    }
}
