@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-extrabold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Proxima Nova';
    font-size: 22px;
    line-height: 1.4;
    color: #515151;
    /* background: #ffffff; */
}

/* Header */
.header {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: #515151;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00688b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.language-btn img {
    height: 36px;
    width: auto;
    border-radius: 4px;
}
.phone-icon img {
    width: 35px;
    height: 35px;
}
/* Hero Section */
.hero {
    position: relative;
    min-height: 750px;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #00406eff, #e1edf944) !important;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    /* max-width: 600px; */
    /* padding: 60px 20px; */
}
.hero-accent-bar {
    width: 60px;
    height: 2px;
    background: #c41e3a;
    margin-bottom: 20px;
}
.hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    /* line-height: 1.6; */
}
.hero-cta-text {
    font-size: 16px;
    margin-bottom: 15px;
}
.cta-button {
    display: inline-block;
    background: #b90e31;
    color: #ffffff;
    padding: 15px 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #a01830;
}

/* Find a Center Section */
.find-center-section {
    padding: 60px 0;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    /* max-width: 900px; */
    margin: 0 auto 50px;
}

.intro-text {
    font-size: 22px;
    color: #515151;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-accent-bar {
    width: 60px;
    height: 2px;
    background: #c41e3a;
    margin: 0 auto 20px;
}

.section-accent-bar.left {
    margin: 0 0 20px;
}

.section-title {
    font-size: 30px;
    color: #515151;
    font-weight: 600;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.center-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.location-icon {
    position: relative;
    /* top: 10px;
    left: 10px; */
    margin: 0 auto;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 10;
}

.center-card iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.center-info {
    padding: 20px 0;
    text-align: center;
}

.center-info h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.center-info p {
    font-size: 16px;
    color: #515151;
    font-weight: 600;
    margin-bottom: 0;
}

/* Treatment Options Section */
.treatment-section {
    padding-top: 80px;
    padding-bottom: 20px;
    background: rgba(225,237,249,0.35);
}

.treatment-intro {
    /* text-align: center; */
    /* margin: 0 auto 50px; */
}

.treatment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.treatment-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.treatment-option {
    margin-bottom: 40px;
}

.treatment-option h3 {
    font-size: 28px;
    color: #515151;
    font-weight: 600;
    margin-bottom: 10px;
}

.treatment-accent-bar {
    width: 40px;
    height: 3px;
    background: #c41e3a;
    margin-bottom: 20px;
}

.treatment-description {
    font-size: 16px;
    margin-bottom: 20px;
    /* line-height: 1.8; */
}

.treatment-option h4 {
    font-size: 24px;
    /* color: #00688b; */
    font-weight: 600;
    margin: 20px 0 10px;
}

.treatment-option p {
    font-size: 20px;
    margin-bottom: 10px;
}

.treatment-option ul {
    padding-left: 25px;
    margin-top: 15px;
}

.treatment-option li {
    margin-bottom: 10px;
    font-size: 19px;
    /* line-height: 1.6; */
    color: #101010;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-header {
    text-align: center;
    /* max-width: 900px;
    margin: 0 auto 50px; */
}

.about-header h2 {
    /* font-size: 32px; */
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-header p {
    /* font-size: 16px;
    line-height: 1.8; */
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission, .vision, .values {
    /* padding: 30px; */
    text-align: center;
}

.mission h3, .vision h3, .values h3 {
    font-size: 24px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission p, .vision p, .values p {
    margin-bottom: 10px;
    font-size: 18px;
}

.values {
    grid-column: 1 / -1;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 30px;
}

.values-grid img {
    width: 100%;
    /* max-width: 280px; */
    height: 100%;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: rgba(225,237,249,0.35);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.video-wrapper {
    border-radius: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
}

.video-text h3 {
    font-size: 24px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 15px;
}

/* .video-text p {
    font-size: 16px;
    line-height: 1.8;
} */

/* Careers Section */
.careers-section {
    padding: 60px 0;
    background: #fff;
}
/* .careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
} */
.careers-text h2 {
    font-weight: 600;
    margin-bottom: 20px;
}
.careers-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.careers-text p {
    
}
.contact-form {
    background: rgba(0,64,110,0.7);
    padding: 30px;
    border-radius: 12px;
}
.contact-form h2 {
    color: #fff;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    /* color: #666666; */
    margin-bottom: 5px;
    text-transform: lowercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00688b;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.submit-btn {
    width: 100%;
    background: #c41e3a;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #a01830;
}

/* Footer */
.footer {
    padding: 15px 0;
    background: #b90e31;
    color: #ffffff;
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

.call-btn {
    background: #c41e3a;
    color: #ffffff;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
    text-align: center;
}

.call-btn:hover {
    background: #a01830;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-content,
    .video-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}
.text-left {
    text-align: left;
}

@media (min-width: 992px ) {
    .mb-lg-75px {
        margin-bottom: 75px !important;
    }
}
.fw-600 {
    font-weight: 600 !important;
}
.mb-4 {
    margin-bottom: 40px !important;
}
.mb-5 {
    margin-bottom: 50px !important;
}
@media (max-width: 575px) {
    .hero-subtitle {
        font-size: 20px !important;
    }
    body,
    .intro-text {
        font-size: 18px;
    }
    .treatment-section {
        padding-top: 40px;
    }
    .treatment-option h3,
    .treatment-option h4 {
        font-size: 22px;
    }
    .treatment-option li {
        font-size: 18px;
    }
    .video-wrapper iframe {
        height: 100% !important;
    }
    .about-header {
        text-align: left !important;
    }
    .contact-form {
        padding: 20px !important;
    }
    .form-group input, .form-group textarea {
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .hero:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.66);
    }
}
.hero {
    position: relative;
}
.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    background-color: #fff;
    width: max-content;
    padding: 0 4px;
}
.iti {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px;
}