:root {
    --primary-color: #9F3231;
    --primary-light: #b84743;
    --primary-dark: #7a2825;
    --secondary-color: #f8f9fa;
    --dark-bg: #2c3e50;
    --text-dark: #2d3748;
    --text-light: #718096;
    --gradient-red: linear-gradient(135deg, #9F3231 0%, #b84743 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(159, 50, 49, 0.9) 0%, rgba(184, 71, 67, 0.8) 100%);
}

@font-face {
    font-family: Geist;
    src: url(../fonts/Geist-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geist', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar__logo {
    width: 45px;
    height: 45px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.navbar__logo img {
    width: 100%;
}

.navbar__title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.navbar__subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(159, 50, 49, 0.1);
}

.btn--primary {
    background: var(--gradient-red);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: normal;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(159, 50, 49, 0.3);
    color: white;
}

.btn--primary.btn--whatsapp {
    background: #10B981;
}

.btn--primary.btn--whatsapp:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);    
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed navbar */
section {
    scroll-margin-top: 60px;
}

/* Active nav link styling */
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(159, 50, 49, 0.1);
}

/* Hero Section */
.hero {
    background: var(--gradient-red);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.pexels.com/photos/5732461/pexels-photo-5732461.jpeg') center / cover;
    border-radius: 0 0 0 100px;
    opacity: 0.9;
    display: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero__badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__badge i {
    color: #ffd700;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__title--highlight {
    color: #ffd700;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
}

.hero__stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero__banner {
    width: 540px;
    height: 360px;
    align-self: center;
}

.hero__banner-image {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    height: 100%;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
}

.hero--slide2::before {
    background: url('https://images.unsplash.com/photo-1551818255-e6e10975bc17?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.hero--slide3::before {
    background: url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    opacity: 0.7;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #ffd700;
    border-color: #ffd700;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Quick Access Section */
.quick-access {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    width: 160px;
    margin-inline: auto;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section__title > span {
    color: var(--primary-color);
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.quick-access__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-access__card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* border: 1px solid rgba(159, 50, 49, 0.1); */
    color: #222;
}

.quick-access__card:hover {
    transform: translateY(-30px)! important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quick-access__card--green {
    background: linear-gradient(136deg, #f3f4f6 0, #d0fae5 100%);
}

.quick-access__card--blue {
    background: linear-gradient(136deg,#fef2f2 0,#dbeafe 100%);
}

.quick-access__card--red {
    background: linear-gradient(136deg,#fef2f2 0,#ffe2e2 100%);
}

.quick-access__card--purple {
    background: linear-gradient(136deg,#f9fafb 0,#f3e8ff 100%);
}

.quick-access__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.quick-access__card--green .quick-access__icon {
    background: linear-gradient(-135deg,#00bc7d 0,#009966 100%);
}

.quick-access__card--blue .quick-access__icon {
    background: linear-gradient(-135deg,#2b7fff 0,#155dfc 100%);
}

.quick-access__card--red .quick-access__icon {
    background: linear-gradient(-135deg,#fb2c36 0,#e7000b 100%);
}

.quick-access__card--purple .quick-access__icon {
    background: linear-gradient(-135deg,#ad46ff 0,#9810fa 100%);
}

.quick-access__card:not([class*="--"]) .quick-access__icon {
    background: rgba(159, 50, 49, 0.1);
    color: var(--primary-color);
}

.quick-access__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-access__description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    max-width: 600px;
}

.about__text .section__badge {
    margin-inline: 0 auto;
    width: 108px;
    background: linear-gradient(to right, rgba(159, 50, 49, 0.10) 0%, rgba(122, 38, 37, 0.10) 100%);
    border: 1px solid rgba(159, 50, 49, 0.20);
    color: var(--primary-color);
}

.about__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about__features > div:first-child {
    background: linear-gradient(45deg, rgba(159, 50, 49, 0.05) 0%, rgba(159, 50, 49, 0.10) 50%, rgba(159, 50, 49, 0.05) 100%);
    border: 1px solid rgb(159 50 49 / 10%);
}
.about__features > div:last-child {
    background: linear-gradient(45deg, #FEF2F2 0%, #DBEAFE 50%, #FEF2F2 100%);
    border: 1px solid #BEDBFF;
}

.about__feature {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 300ms;
    /* border-left: 4px solid var(--primary-color); */
}

.about__feature > div:first-child {
    color: var(--primary-color);
}

.about__features > div:last-child > div:first-child {
    color: #2563eb;
}

.about__feature:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.about__feature:hover .about__feature-icon {
    font-size: 2.1rem;
    transition: all 300ms;
}

.about__feature-icon {
    width: 50px;
    height: 50px;
    /* background: rgba(159, 50, 49, 0.1); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--primary-color); */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about__feature-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about__feature-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about__image {
    position: relative;
}

.about__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about__image-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
}

.about__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .about__image-item:first-child {
    grid-row: 1 / 3;
    aspect-ratio: 0.8;
} */

.about__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn--secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

.specialties .section__badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.specialties .section__title {
    color: white;
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.specialty__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.specialty__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.specialty__card--pink .specialty__icon {
    background: linear-gradient(135deg,#f6339a 0,#e60076 100%);
}

.specialty__card--orange .specialty__icon {
    background: linear-gradient(135deg,#fe9a00 0,#e17100 100%);
}

.specialty__card--green .specialty__icon {
    background: linear-gradient(135deg,#00c950 0,#00a63e 100%);
}

.specialty__card--blue .specialty__icon {
    background: linear-gradient(135deg,#2b7fff 0,#155dfc 100%);
}

.specialty__card--purple .specialty__icon {
    background: linear-gradient(135deg,#ad46ff 0,#9810fa 100%);
}

.specialty__card--red .specialty__icon {
    background: linear-gradient(135deg,#fb2c36 0,#e7000b 100%);
}

.specialty__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.specialty__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--secondary-color);
}

.services .section__badge {
    background: linear-gradient(90deg,#f3e8ff 0,#e9d4ff 100%);
    color: #6E11B0;
}

.services__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.services__card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.services__card--primary::before {
    content: "";
    width: 128px;
    height: 128px;
    position: absolute;
    background: rgb(255 255 255 / 10%);
    bottom: -60px;
    border-radius: 50%;
    left: -60px;
}

.services__card--primary::after {
    content: "";
    width: 128px;
    height: 128px;
    position: absolute;
    background: rgb(255 255 255 / 10%);
    top: -60px;
    border-radius: 50%;
    right: -60px;
}
.services__card--secondary::before {
    content: "";
    width: 128px;
    height: 128px;
    position: absolute;
    background: #DBEAFE;
    bottom: -60px;
    border-radius: 50%;
    left: -60px;
}

.services__card--secondary::after {
    content: "";
    width: 128px;
    height: 128px;
    position: absolute;
    background: #DBEAFE;
    top: -60px;
    border-radius: 50%;
    right: -60px;
}

.services__card--primary {
    background: var(--gradient-red);
    color: white;
    overflow: hidden;
}

.services__card--secondary {
    /* background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); */
    color: #222;
    overflow: hidden;
}

.services__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services__card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 10px -6px rgba(0,0,0,.1),0 20px 25px -5px rgba(0,0,0,.1);
}

.services__card--secondary .services__card-icon {
    background: linear-gradient(to right, #2B7FFF 0%, #155DFC 100%);
    color: white;
}

.services__card-title {
    font-size: 1.5rem;
}

.services__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services__list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    margin-bottom: 1rem;
    border-radius: 20px;
    padding-left: 1rem;
    background: rgb(255 255 255 / 10%);
    position: relative;
}

.services__list-item::before {
    content: '';
    background: #ffffff4a;
}

.services__list-item:last-child {
    border-bottom: none;
}

.services__list-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    /* background: rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.services__card--primary .services__list-icon {
    color: #FFDF20;
}

.services__card--secondary .services__list-item {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #F3F4F6;
    position: relative;    
}

.services__card--primary .services__list-item:nth-child(3)::after {
    content: "";
    width: 96px;
    height: 96px;
    position: absolute;
    background: rgb(255 223 32 / 5%);
    bottom: -60px;
    border-radius: 50%;
    right: 20px;
}
.services__card--secondary .services__list-item:nth-child(3)::after {
    content: "";
    width: 96px;
    height: 96px;
    position: absolute;
    background: rgb(243 232 255 / 70%);
    bottom: -48px;
    border-radius: 50%;
    right: 20px;
    z-index: 1;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.services__card:not([class*="--"]) .services__list-icon {
    background: rgba(159, 50, 49, 0.1);
    color: var(--primary-color);
}

.services__card:not([class*="--"]) .services__card-icon {
    background: rgba(159, 50, 49, 0.1);
    color: var(--primary-color);
}

.services__list-icon--blue {
    color: #155DFC;
}

.services__list-icon--red {
    color: #E7000B;
}

.services__list-icon--purple {
    color: #9810FA;
}

.services__more-btn {
    margin-top: 2rem;
}

.services__more-btn > a {
    background: white;
    color: var(--primary-color);
}

.services__more-btn > a:hover {
    background: var(--primary-color);
}

.services__card--secondary .services__more-btn > a {
    background: var(--primary-color);
    color: white;
}

.services__card--secondary .services__more-btn > a:hover {
    color: white;
}

/* News Section */
.news {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

.news .section__title {
    color: white;
}

.news .section__badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.news__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.news__content {
    padding: 2rem;
}

.news__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    /* font-weight: 600; */
    margin-bottom: 1rem;
    position: absolute;
    top: 2rem;
}

.news__badge--comunication {
    background: #10b981;
}

.news__badge--event {
    background: #3b82f6;
}

.news__badge--alert {
    background: #ef4444;
}

.news__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.news__more {
    text-align: center;
    margin-top: 3rem;
}

/* Events Section */
.events {
    padding: 80px 0;
    background: white;
}

.events .section__badge {
    background: linear-gradient(-90deg,#e9d4ff 0,#ffd6a7 100%);
    color: var(--primary-color);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.event__card {
    border-radius: 25px;
    overflow: hidden;
    padding: 3rem;
    position: relative;
}

.event__card--green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.event__card--blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.event__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.event__card--green .event__icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.event__card--blue .event__icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.event__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event__date {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.event__card--green .event__date {
    background: #10b981;
}

.event__card--blue .event__date {
    background: #3b82f6;
}

.event__type {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.event__description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.event__cta {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event__card--green .event__cta {
    background: #10b981;
}

.event__card--blue .event__cta {
    background: #3b82f6;
}

.event__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--secondary-color);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact__icon--green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact__icon--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.contact__icon--red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.contact__icon--primary {
    background: var(--gradient-red);
}

.contact__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact__details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact__form-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.contact__form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact__form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form__field input,
.form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form__field input:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(159, 50, 49, 0.1);
}

.contact__submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer__logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.footer__brand-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer__brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer__section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__link {
    margin-bottom: 0.75rem;
}

.footer__link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__link a:hover {
    color: white;
    padding-left: 8px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero__stats {
        gap: 2rem;
    }
    
    .about__content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero::before {
        width: 50%;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__image {
        order: -1;
    }
    
    .services__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .events__grid {
        grid-template-columns: 1fr;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact__info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        text-align: center;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero__stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .quick-access__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .about__buttons {
        flex-direction: column;
    }
    
    .specialties__grid {
        grid-template-columns: 1fr;
    }
    
    .news__grid {
        grid-template-columns: 1fr;
    }

    .contact__info {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .navbar__title {
        font-size: 20px;
    }
    
    .navbar__subtitle {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .btn--primary, .btn--secondary {
        width: 100%;
        justify-content: center;
    }
}