/* Contact Page Styles */
:root {
    --primary-red: #c41e3a;
    --red-dark: #a0172e;
    --red-light: #e74c3c;
    --beige: #f5f5dc;
    --cream: #faf8f3;
    --charcoal: #2c3e50;
    --gray: #7f8c8d;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 var(--space-xl);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.4);
    opacity: 1;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

/* Info Section */
.info-section {
    padding: 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
    width: 100%;
    margin: 0;
}


.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-intro p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Performance Overview */
.performance-overview {
    padding: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d3748 30%, #4a5568 50%, #2d3748 70%, #1a1a1a 100%);
    width: 100%;
    margin: 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.overview-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overview-text p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-xs);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-text p {
    font-size: 0.9rem;
    color: #cbd5e0;
    margin: 0;
}

.overview-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.overlay-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Performance Navigation */
.performance-nav {
    background: var(--white);
    border-bottom: 2px solid var(--light-gray);
    padding: 0;
    width: 100%;
    margin: 0;
}

.performance-tabs {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.tab-link {
    flex: 1;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: var(--white);
}

.tab-link:hover {
    color: var(--charcoal);
    background: var(--light-gray);
}

.tab-link.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
    background: var(--white);
}

/* Campus Section Styles */
.campus-section {
    padding: var(--space-2xl) 0;
    position: relative;
    width: 100%;
    margin: 0;
}

.campus-section.theme-red {
    background: linear-gradient(180deg, #1a1a1a 0%, #7c2d12 30%, #dc2626 50%, #7c2d12 70%, #1a1a1a 100%);
}

.campus-section.theme-teal {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f766e 30%, #14b8a6 50%, #0f766e 70%, #1a1a1a 100%);
}

.campus-section.theme-green {
    background: linear-gradient(180deg, #1a1a1a 0%, #166534 30%, #22c55e 50%, #166534 70%, #1a1a1a 100%);
}

.campus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.campus-section.reverse .campus-content {
    grid-template-columns: 1fr 1fr;
}

.campus-section.reverse .campus-image {
    order: 1;
}

.campus-section.reverse .campus-text {
    order: 2;
}

.campus-text {
    padding: var(--space-xl);
}

.campus-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.campus-section.theme-teal .campus-badge {
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
    border-color: rgba(20, 184, 166, 0.4);
}

.campus-section.theme-green .campus-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.4);
}

.title-custom {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.campus-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.campus-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.campus-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: var(--space-2xl) 0;
    position: relative;
    width: 100%;
    margin: 0;
}

.contact-cards-section.theme-red {
    background: linear-gradient(180deg, #1a1a1a 0%, #7c2d12 30%, #dc2626 50%, #7c2d12 70%, #1a1a1a 100%);
}

.contact-cards-section.theme-teal {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f766e 30%, #14b8a6 50%, #0f766e 70%, #1a1a1a 100%);
}

.contact-cards-section.theme-green {
    background: linear-gradient(180deg, #1a1a1a 0%, #166534 30%, #22c55e 50%, #166534 70%, #1a1a1a 100%);
}

/* Contact Sections */
.contact-section {
    margin-bottom: var(--space-2xl);
    padding: var(--space-2xl) 0;
    position: relative;
}

/* Theme Colors */
.contact-section.theme-red {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f5 100%);
    border-top: 6px solid var(--primary-red);
}

.contact-section.theme-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #f8f9fa 100%);
    border-top: 6px solid #16AC96;
}

.contact-section.theme-green {
    background: linear-gradient(135deg, #f0f9f0 0%, #f8f9fa 100%);
    border-top: 6px solid #28a745;
}

.contact-section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    padding: var(--space-lg) 0;
}

.contact-section.theme-red .contact-section-title {
    color: var(--primary-red);
}

.contact-section.theme-teal .contact-section-title {
    color: #16AC96;
}

.contact-section.theme-green .contact-section-title {
    color: #28a745;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: currentColor;
}

/* Contact Grid */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-red);
}

.theme-teal .contact-card::before {
    background: #16AC96;
}

.theme-green .contact-card::before {
    background: #28a745;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.theme-teal .contact-card:hover {
    border-color: #16AC96;
}

.theme-green .contact-card:hover {
    border-color: #28a745;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.contact-card p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Regional Grid */
.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.regional-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.regional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #16AC96;
}

.regional-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #16AC96;
}

.regional-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    text-align: center;
}

.regional-card p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* Support Grid */
.support-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.support-intro p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.support-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #28a745;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.support-card h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.support-card p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #28a745;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        height: 65vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .contact-card {
        padding: var(--space-lg);
    }
    
    .regional-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .regional-card {
        padding: var(--space-lg);
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .support-card {
        padding: var(--space-lg);
    }
    
    .contact-section-title {
        font-size: 1.75rem;
    }
    
}

@media (max-width: 480px) {
    .page-hero {
        height: 55vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .contact-card {
        padding: var(--space-md);
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: var(--space-md);
    }
    
    .regional-card {
        padding: var(--space-md);
    }
    
    .support-card {
        padding: var(--space-md);
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .campus-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .campus-section.reverse .campus-content {
        grid-template-columns: 1fr;
    }
    
    .campus-section.reverse .campus-image {
        order: 1;
    }
    
    .campus-section.reverse .campus-text {
        order: 2;
    }
    
    .performance-tabs {
        flex-direction: column;
    }
    
    .tab-link {
        flex: none;
        padding: var(--space-md);
    }
    
    .overview-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}