/* Quienes Somos Page Styles */
:root {
    --section-padding: 100px 0;
    --card-border-radius: 12px;
    --transition-smooth: transform 0.2s ease;
    --content-max-width: 1000px; /* Limiting content width for better readability */
}

/* Hero Section */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(29, 29, 27, 0.7) 0%, rgba(50, 50, 117, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 76px; /* Space for navbar */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/quienes_somos/alunasa7.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
    animation: subtle-zoom 15s infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, rgba(249, 249, 249, 0.5) 0%, rgba(249, 249, 249, 0) 100%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(50, 50, 117, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-hero-title {
    color: white;
    font-size: 4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-blue), var(--brand-silver));
    border-radius: 2px;
}

.page-hero-subtitle {
    color: white;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.breadcrumb-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    background: transparent;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--brand-silver);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--brand-silver);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: '/';
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Main Content Section */
.quienes-somos-content {
    padding: var(--section-padding);
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.quienes-somos-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/textures/aluminum-texture.jpg');
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.quienes-somos-content::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-intro {
    margin-bottom: 60px;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: var(--card-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Featured Images Section */
.featured-image-container {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    position: relative;
    border: 4px solid white;
}

.featured-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 50, 117, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-image-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.featured-image-container:hover::before {
    opacity: 1;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.1);
}

.featured-image-container:hover .featured-image {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    padding: 25px 20px 15px;
    font-size: 0.95rem;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-image-container:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 250px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 3px solid white;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(50, 50, 117, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: saturate(1.1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.section-title {
    color: var(--brand-dark);
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(50, 50, 117, 0.08);
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 3px;
}

.about-text {
    color: var(--brand-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* What We Do Section */
.what-we-do {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(218, 218, 218, 0.5);
    transition: all 0.4s ease;
}

.what-we-do:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-blue), var(--brand-dark));
    border-radius: 0 2px 2px 0;
}

.what-we-do::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: url('/images/logos/LOGO_ALUNASA_FINAL.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    transform: rotate(-10deg);
    transition: all 0.5s ease;
}

.what-we-do:hover::after {
    transform: rotate(0deg);
    opacity: 0.07;
}

.what-we-do-title {
    color: var(--brand-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.what-we-do-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 2px;
}

/* Services Section */
.services-section {
    margin-bottom: 60px;
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: var(--card-border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.services-title {
    color: var(--brand-dark);
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.services-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(50, 50, 117, 0.08);
    z-index: -1;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 3px;
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(135deg, white 0%, #f9f9fa 100%);
    border-radius: var(--card-border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(218, 218, 218, 0.5);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(50, 50, 117, 0.2);
}

.service-icon {
    margin-right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-blue), #4a4aa5);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(50, 50, 117, 0.25);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px;
}

.service-item:hover .service-icon {
    transform: rotate(10deg) scale(1.15);
}

.service-text {
    color: var(--brand-gray);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.5s ease;
}

.service-item:hover::after {
    transform: scale(1.2);
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218, 218, 218, 0.5);
    transition: all 0.4s ease;
}

.location-section:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.location-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.location-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.location-title {
    color: var(--brand-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.location-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(50, 50, 117, 0.08);
    z-index: -1;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 3px;
}

.location-text {
    color: var(--brand-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    border: 4px solid white;
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Regions Section - Enhanced with optimized animations */
.regions-section {
    margin-bottom: 60px;
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: var(--card-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.regions-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.regions-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.regions-title {
    color: var(--brand-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.regions-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(50, 50, 117, 0.08);
    z-index: -1;
}

.regions-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 3px;
}

.regions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
}

.region-card {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    border-radius: var(--card-border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(25% - 20px);
    min-width: 180px;
    max-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    word-break: break-word;
    hyphens: auto;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.region-icon {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.region-card:hover .region-icon {
    transform: scale(1.1);
    color: var(--brand-blue);
}

.region-name {
    color: var(--brand-dark);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.region-card:hover .region-name {
    transform: translateZ(15px);
    color: var(--brand-blue);
}

.region-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--brand-blue);
    opacity: 0;
    transition: all 0.5s ease;
}

.region-card:hover::after {
    opacity: 1;
    bottom: 15px;
}

/* Organization Section - With optimized animations */
.organization-section {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 60px;
    border-radius: var(--card-border-radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218, 218, 218, 0.5);
    transition: all 0.4s ease;
}

.organization-section:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.organization-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.organization-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(50, 50, 117, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.organization-title {
    color: var(--brand-dark);
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.organization-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(50, 50, 117, 0.08);
    z-index: -1;
}

.organization-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 3px;
}

.sub-section-title {
    color: var(--brand-dark);
    font-size: 1.6rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.sub-section-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(50, 50, 117, 0.06);
    z-index: -1;
}

.sub-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--brand-blue), rgba(50, 50, 117, 0.3));
    border-radius: 2px;
}

.organization-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--card-border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 5px solid white;
    position: relative;
    z-index: 1;
}

.organization-img:hover {
    transform: scale(1.03) perspective(1000px) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-hero {
        margin-top: 0;
        height: 50vh;
    }

    .page-hero-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .page-hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
        max-width: 90%;
    }

    .page-hero-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .about-section {
        padding: 40px 30px;
    }

    .about-image-container {
        margin-top: 30px;
    }

    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .service-card {
        padding: 25px 20px;
    }

    .regions-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .location-section,
    .regions-section,
    .organization-section {
        padding: 40px 30px;
    }

    .featured-image-section {
        padding: 40px 0;
    }

    .featured-image {
        max-height: 350px;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 0;
        height: 40vh;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .page-hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .scroll-indicator {
        bottom: 20px;
        height: 40px;
        width: 25px;
    }

    .scroll-indicator::before {
        height: 8px;
        width: 8px;
    }

    .about-section {
        padding: 30px 20px;
    }

    .about-title,
    .services-title,
    .location-title,
    .regions-title,
    .organization-title {
        font-size: 1.6rem;
    }

    .about-text,
    .service-description,
    .location-text {
        font-size: 1rem;
    }

    .services-container,
    .regions-container {
        gap: 20px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 2.2rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .map-container {
        height: 300px;
    }

    .region-icon {
        font-size: 2.4rem;
    }

    .region-card {
        padding: 20px 15px;
        min-width: 140px;
        max-width: 100%;
        width: calc(50% - 15px);
    }
    
    .region-name {
        font-size: 1rem;
        padding: 0 5px;
    }

    .sub-section-title {
        font-size: 1.3rem;
    }

    .featured-image {
        max-height: 300px;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 180px;
    }

    .location-section,
    .regions-section,
    .organization-section {
        padding: 35px 25px;
    }

    .location-section::before,
    .location-section::after,
    .regions-section::before,
    .regions-section::after,
    .organization-section::before,
    .organization-section::after {
        width: 150px;
        height: 150px;
    }
    
    .organization-img {
        border-width: 3px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 35vh;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .page-hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-text,
    .service-description,
    .location-text {
        font-size: 0.95rem;
    }

    .regions-container {
        grid-template-columns: 1fr;
    }

    .region-card {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .regions-container {
        gap: 15px;
    }
    
    .region-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 140px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .service-icon {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 0.9rem;
    }
    
    .sub-section-title {
        font-size: 1.1rem;
    }
}

/* Animation for page elements */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
