/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/*=============== CSS RESET ===============*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

/*=============== VARIABLES ===============*/
:root {
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --secondary-color: #25D366;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --card-bg: #1a1a1a;
    --light-bg: #141414;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --shadow: 0 4px 6px rgba(0,0,0,0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/*=============== NAVIGATION ===============*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 60px;
}

.nav__list {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    display: block;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 80%;
}

.nav__toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

.nav__close {
    display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__toggle {
        display: block;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff;
    }
}

/*=============== HERO SECTION ===============*/
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../img/gym.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: -1px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-primary i {
    margin-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: .5rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    padding: 0.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.social-links a:hover {
    color: #000;
    background: var(--primary-color);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    text-decoration: none;
}

/*=============== SECTIONS ===============*/
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section__title-border {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section__title-border::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: .5rem auto 0;
    border-radius: 2px;
}

/*=============== ABOUT SECTION ===============*/
.about {
    background: var(--dark-bg);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about__content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--text-light);
}

.about__content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.qualifications-highlight {
    color: var(--primary-color) !important;
}

.image__section img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.image__section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/*=============== SERVICES SECTION ===============*/
.program {
    background: var(--light-bg);
}

.grid {
    display: grid;
}

.program__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.program__card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.program__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.program__card:hover::before {
    left: 100%;
}

.program__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.program__shape {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.program__card:hover .program__shape {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.program__card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.program__card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/*=============== TESTIMONIALS SECTION ===============*/
.testimonials {
    background: var(--dark-bg);
}

.testimonials .swiper {
    padding: 2rem 0 3rem;
    max-width: 90%;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    margin: 1rem;
    max-width: 100%;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.testimonial-card img {
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius);
    object-fit: cover;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-size: 1.1rem;
    position: relative;
    flex: 1;
}

/* Swiper Navigation */
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonials .swiper-pagination {
    bottom: 0;
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials .swiper {
        max-width: 100%;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .testimonial-card img {
        width: 280px;
        height: 280px;
    }
}

.testimonials .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
    width: 12px;
    height: 12px;
}

.testimonials .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/*=============== CALCULATORS SECTION ===============*/
.calculators-section {
    background: var(--light-bg);
}

/* Calculator Navigation */
.calculator-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.calc-nav-btn {
    padding: 1rem 2rem;
    background: var(--card-bg);
    color: var(--text-light);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.calc-nav-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.calc-nav-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Calculator Content */
.calculator-content {
    max-width: 700px;
    margin: 0 auto;
}

.calculator-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.calculator-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.calculator-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.calculator-form button {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.calculator-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Menopause Symptoms Section */
.symptoms-section {
    text-align: left;
    margin: 1rem 0;
}

.symptoms-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.symptom-label {
    display: flex;
    align-items: center;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 4px;
    transition: var(--transition);
}

.symptom-label:hover {
    background: rgba(255, 215, 0, 0.05);
}

.symptom-label input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
    width: auto;
    accent-color: var(--primary-color);
}

/* Calculator Results */
.calculator-result {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    font-weight: 600;
    color: var(--text-dark);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============== CONTACT SECTION ===============*/
.contact__section {
    background: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
}

.contact__section .container {
    position: relative;
    z-index: 1;
}

.contact__section .section__title-border {
    color: var(--primary-color);
}

.contact__section .section__title-border::after {
    background: var(--primary-color);
}

.contact__section .text-center {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Contact Grid Layout */
.contact__section .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    background: var(--card-bg);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form button {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 1.4rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.05rem;
    width: 100%;
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

/* Map Styling */
.map__container {
    position: relative;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.map__container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Methods */
.contact__method {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.method {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--card-bg);
    border: 2px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.method:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
    transition: var(--transition);
}

.method:hover i {
    transform: scale(1.15);
    color: var(--primary-dark);
}

.method span {
    color: var(--text-light);
    font-size: 1.05rem;
    display: block;
    font-weight: 500;
}

/*=============== FOOTER ===============*/
.footer {
    background: var(--darker-bg);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--primary-color);
    margin-top: 4rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer__brand p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.6rem;
}

.footer__social a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    font-size: 0.9rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer__copy p {
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.footer__legal a {
    color: var(--text-light);
    text-decoration: none;
}

.footer__legal a:hover {
    color: var(--primary-color);
}

.footer__legal span {
    color: rgba(255,255,255,0.3);
}

/*=============== WHATSAPP FLOAT ===============*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/*=============== RESPONSIVE DESIGN ===============*/
@media (max-width: 1024px) {
    .nav__list {
        gap: 0;
    }
    
    .nav__link {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -2px 0 20px rgba(0,0,0,0.3);
        transition: right 0.4s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .nav__link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__toggle {
        display: block;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        cursor: pointer;
        color: #fff;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .program__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .testimonial-card img {
        width: 150px;
        height: 150px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map__container {
        min-height: 350px;
    }

    .contact__method {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer__social {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .col-md-6,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.4rem;
        width: 45px;
        height: 45px;
    }

    .section__title-border {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }

    .program__container {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card img {
        width: 120px;
        height: 120px;
    }
}

/*=============== UTILITIES ===============*/
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6,
.col-md-4 {
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

@media (max-width: 768px) {
    .col-md-6,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand h2 {
        text-align: center;
    }

    .footer__services {
        text-align: center;
    }

    .footer__links {
        text-align: center;
    }
}