/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #0E1D34;
    --accent-color: #00A2FF;
    --secondary-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #666666;
    --white-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --border-color: #E5E5E5;
    --success-color: #28A745;
    --error-color: #DC3545;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Font Sizes */
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    
    /* Margins */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Shadows */
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
    margin-bottom: var(--mb-1);
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.section__subtitle {
    font-size: var(--normal-font-size);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.button--primary:hover {
    background-color: #0088CC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button--secondary {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.button--secondary:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-light);
    z-index: var(--z-fixed);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
}

.nav__logo:focus,
.nav__logo:active {
    outline: none;
    box-shadow: none;
}

.nav__logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
    display: none;
}

.nav__logo-img {
    height: 45px;
    width: auto;
    display: block;
    max-width: 100%;
    outline: none;
    border: none;
}

.nav__logo-img:focus,
.nav__logo-img:active {
    outline: none;
    box-shadow: none;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    outline: none;
    text-decoration: none;
}

.nav__link:hover,
.nav__link.active {
    color: var(--accent-color);
}

.nav__link:focus,
.nav__link:active {
    outline: none;
    box-shadow: none;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 6rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white-color) 100%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
}

.hero__title {
    font-size: var(--biggest-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1-5);
    line-height: 1.1;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--mb-2-5);
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.hero__img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== STATS SECTION ===== */
.stats {
    background-color: var(--primary-color);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 30px 30px;
    background-position: 0 0, 30px 30px;
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.stats::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

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

.stats__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats__number {
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: var(--accent-color);
    margin-bottom: var(--mb-0-5);
}

.stats__label {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--gray-color);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service__icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--mb-1-5);
}

.service__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.service__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.service__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1-5);
}

.service__features {
    list-style: none;
}

.service__features li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: var(--font-bold);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose__features {
    display: grid;
    gap: 1.5rem;
}

.feature__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature__icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature__icon i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.feature__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.feature__description {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

.why-choose__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.why-choose__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--secondary-color);
}

.testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials__wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial__card {
    display: none;
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.testimonial__card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial__quote {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: var(--mb-1-5);
}

.testimonial__text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: var(--mb-2);
    font-style: italic;
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__name {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-25);
}

.testimonial__position {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

.testimonials__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--mb-2);
}

.testimonial__nav {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial__nav:hover {
    background-color: #0088CC;
    transform: scale(1.1);
}

.testimonials__dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial__dot.active {
    background-color: var(--accent-color);
}

/* ===== PARTNERS SECTION ===== */
.partners {
    background-color: var(--white-color);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #fff;
    transition: var(--transition);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 120px;
}

.partner__logo:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.partner__logo img {
    max-height: 80px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: var(--transition);
}

.partner__logo:hover img {
    filter: none;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
}

.cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
}

.cta__description {
    font-size: 1.1rem;
    margin-bottom: var(--mb-2-5);
    opacity: 0.9;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .button--primary:hover {
    background-color: var(--gray-color);
}

.cta .button--secondary {
    border-color: var(--white-color);
    color: var(--white-color);
}

.cta .button--secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: var(--mb-2);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-1);
}

.footer__logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.footer__logo-img {
    height: 2rem;
    width: auto;
    display: block;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--mb-1-5);
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--white-color);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__link:hover {
    color: var(--accent-color);
}

.footer__link i {
    width: 1rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.8);
}

.footer__copyright-link {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer__copyright-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer__legal-link:hover {
    color: var(--accent-color);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT INTRO ===== */
.about-intro {
    padding: 3rem 0;
    background: var(--secondary-color);
}

.about-intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro__title {
    font-size: var(--h2-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1-5);
    font-weight: var(--font-semi-bold);
}

.about-intro__description {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
}
.legal-content {
    padding: 4rem 0;
}

.legal-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content__intro {
    font-size: var(--h3-font-size);
    color: var(--text-color);
    margin-bottom: var(--mb-2);
    line-height: 1.6;
}

.legal-section {
    margin-bottom: var(--mb-2-5);
}

.legal-section__title {
    font-size: var(--h2-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-semi-bold);
}

.legal-list {
    margin: var(--mb-1) 0;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-info {
    background: var(--gray-color);
    padding: var(--mb-1-5);
    border-radius: 0.5rem;
    margin: var(--mb-1) 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-updated {
    font-style: italic;
    color: var(--text-light);
    margin-top: var(--mb-2);
    padding-top: var(--mb-1);
    border-top: 1px solid var(--border-color);
}

.cookie-type {
    margin-bottom: var(--mb-1-5);
    padding: var(--mb-1);
    background: var(--secondary-color);
    border-radius: 0.5rem;
}

.cookie-type__title {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: var(--font-medium);
}

.cookie-management {
    margin-top: var(--mb-1-5);
}

.cookie-management__title {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-medium);
}

/* Large devices */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .why-choose__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        box-shadow: var(--shadow-medium);
        padding: 2rem;
        transition: var(--transition);
        z-index: var(--z-modal);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .stats__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial__author {
        flex-direction: column;
        text-align: center;
    }
    
    .partners__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__legal {
        justify-content: center;
    }
}

/* Small devices */
@media screen and (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
    
    .stats__content {
        grid-template-columns: 1fr;
    }
    
    .stats__number {
        font-size: 2.5rem;
    }
    
    .service__card {
        padding: 1.5rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
    }
    
    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta .button {
        width: 100%;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white-color);
    padding-top: 6rem;
    text-align: center;
}

.page-header__title {
    font-size: var(--biggest-font-size);
    margin-bottom: var(--mb-1);
}

.page-header__description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--mb-2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--small-font-size);
}

.breadcrumb__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb__link:hover {
    color: var(--white-color);
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__current {
    color: var(--white-color);
    font-weight: var(--font-medium);
}

/* ===== ABOUT PAGE STYLES ===== */
.mission__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission__details {
    display: grid;
    gap: 2rem;
}

.mission__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mission__icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission__icon i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.mission__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.mission__description {
    color: var(--text-light);
    line-height: 1.6;
}

.mission__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.mission__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Values Section */
.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value__icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
}

.value__icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.value__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.value__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team__member {
    background-color: var(--white-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team__member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member__photo {
    position: relative;
    overflow: hidden;
}

.member__photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team__member:hover .member__photo img {
    transform: scale(1.05);
}

.member__social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.team__member:hover .member__social {
    opacity: 1;
}

.member__social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member__social-link:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.member__info {
    padding: 1.5rem;
}

.member__name {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-25);
}

.member__position {
    color: var(--accent-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1);
}

.member__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1);
    line-height: 1.6;
}

.member__credentials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.credential {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

/* History Section */
.history__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.history__timeline {
    position: relative;
}

.history__timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.timeline__item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline__year {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--small-font-size);
}

.timeline__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.timeline__description {
    color: var(--text-light);
    line-height: 1.6;
}

.history__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.history__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-detailed__card {
    background-color: var(--white-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-detailed__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-detailed__icon {
    background-color: var(--accent-color);
    padding: 2rem;
    text-align: center;
}

.service-detailed__icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.service-detailed__content {
    padding: 2rem;
}

.service-detailed__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.service-detailed__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1-5);
    line-height: 1.6;
}

.service-detailed__features {
    list-style: none;
    margin-bottom: var(--mb-1-5);
}

.service-detailed__features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-detailed__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: var(--font-bold);
}

.service-detailed__price {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: var(--accent-color);
}

/* Pricing Section */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing__card {
    background-color: var(--white-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
}

.pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing__card--featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing__badge {
    position: absolute;
    top: 1rem;
    right: -1rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.5rem 2rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
    transform: rotate(45deg);
}

.pricing__header {
    padding: 2rem;
    text-align: center;
    background-color: var(--secondary-color);
}

.pricing__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.pricing__subtitle {
    color: var(--text-light);
    margin-bottom: var(--mb-1);
}

.pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price__amount {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--accent-color);
}

.price__period {
    color: var(--text-light);
    font-size: var(--normal-font-size);
}

.pricing__features {
    padding: 2rem;
}

.pricing__list {
    list-style: none;
}

.pricing__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
}

.pricing__item i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.pricing__footer {
    padding: 0 2rem 2rem;
}

/* Process Section */
.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process__step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin: 0 auto var(--mb-1);
}

.step__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.step__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background-color: var(--secondary-color);
}

.question__title {
    color: var(--primary-color);
    margin: 0;
}

.faq__icon {
    color: var(--accent-color);
    transition: var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.answer__text {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.form__header {
    margin-bottom: var(--mb-2);
}

.form__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.form__subtitle {
    color: var(--text-light);
}

.contact__form {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
}

.form__group {
    margin-bottom: var(--mb-1-5);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__field {
    display: flex;
    flex-direction: column;
}

.form__label {
    color: var(--primary-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-0-5);
}

.form__input,
.form__select,
.form__textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: var(--normal-font-size);
    transition: var(--transition);
    background-color: var(--white-color);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 162, 255, 0.1);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
    border-color: var(--error-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form__checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox__label {
    color: var(--text-light);
    font-size: var(--small-font-size);
    line-height: 1.5;
}

.checkbox__link {
    color: var(--accent-color);
    text-decoration: underline;
}

.form__submit {
    width: 100%;
    justify-content: center;
}

/* Contact Info */
.contact__info {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.contact__info-title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.contact__info-subtitle {
    color: var(--text-light);
    margin-bottom: var(--mb-2);
}

.contact__details {
    margin-bottom: var(--mb-2);
}

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--mb-1-5);
    align-items: flex-start;
}

.contact__icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.contact__item-title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-25);
    font-size: var(--normal-font-size);
}

.contact__item-text {
    color: var(--text-light);
    font-size: var(--small-font-size);
    line-height: 1.5;
}

.contact__item-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact__item-text a:hover {
    text-decoration: underline;
}

.contact__social {
    border-top: 1px solid var(--border-color);
    padding-top: var(--mb-1-5);
}

.social__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
    font-size: var(--normal-font-size);
}

.social__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    transition: var(--transition);
    text-decoration: none;
}

.social__link:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.social__link i {
    font-size: 1.2rem;
}

/* Map Section */
.map__header {
    text-align: center;
    margin-bottom: var(--mb-2);
}

.map__title {
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.map__subtitle {
    color: var(--text-light);
}

.map__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.map__embed {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map__info-card {
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
}

.map__info-title {
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

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

.map__info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: var(--small-font-size);
}

.map__info-item i {
    color: var(--accent-color);
    width: 1rem;
}

/* Contact FAQ */
.contact-faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-faq__item {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.5);
    }
}
