/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #2d2d2d;
    --highlight-color: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --gradient-primary: linear-gradient(45deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    --gradient-secondary: linear-gradient(45deg, #8b4513 0%, #d4af37 50%, #8b4513 100%);
    --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);
    --border-radius: 0px;
    --transition: all 0.2s ease;
    --art-deco-border: 2px solid #d4af37;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-color);
    overflow-x: hidden;
    background-image: 
        linear-gradient(90deg, transparent 98%, #d4af37 100%),
        linear-gradient(0deg, transparent 98%, #d4af37 100%);
    background-size: 50px 50px;
    background-position: 0 0, 0 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: var(--art-deco-border);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--highlight-color);
    opacity: 0.5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-logo h2 a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--highlight-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border: var(--art-deco-border);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown-menu a:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, #d4af37 49%, #d4af37 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #d4af37 49%, #d4af37 51%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-summary {
    display: flex;
    justify-content: center;
    align-items: center;
}

.summary-box {
    background: rgba(255, 255, 255, 0.05);
    border: var(--art-deco-border);
    padding: 2rem;
    max-width: 400px;
    position: relative;
}

.summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

.summary-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.partnership-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partnership-type-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.partnership-type-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--highlight-color);
}

.type-icon {
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--highlight-color);
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--highlight-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-content h4 {
    font-size: 1rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.type-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--highlight-color);
    color: var(--primary-color);
    border: var(--art-deco-border);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: var(--art-deco-border);
}

.btn-secondary:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Rocket Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-animation {
    position: relative;
    width: 200px;
    height: 300px;
}

.rocket {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 120px;
    animation: rocket-launch 3s ease-in-out infinite;
}

/* Rocket nose cone (triangle) */
.rocket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid var(--highlight-color);
}

/* Rocket body (rectangle) */
.rocket::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: var(--highlight-color);
}

/* Rocket fins */
.rocket-fins {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    pointer-events: none;
}

.rocket-fins::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 15px solid var(--highlight-color);
}

.rocket-fins::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 15px solid var(--highlight-color);
}

/* Rocket nozzle (inverted trapezoid) */
.rocket-nozzle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: var(--highlight-color);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.trail {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 80px;
    background: linear-gradient(to top, var(--highlight-color), transparent);
    animation: trail-fade 3s ease-in-out infinite;
}

@keyframes rocket-launch {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(-100px); 
    }
}



@keyframes trail-fade {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 1; height: 100px; }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: var(--secondary-color);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: var(--art-deco-border);
    transition: var(--transition);
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

.mission-card:hover::before {
    width: 100%;
}

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

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pillars Section */
.pillars {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

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

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: var(--art-deco-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

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

.pillar-icon {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--highlight-color);
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--highlight-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pillar-card h4 {
    font-size: 1.1rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pillar-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillar-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pillar-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pillar-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.impact {
    background: rgba(233, 69, 96, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
    color: var(--text-secondary);
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: var(--secondary-color);
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border: var(--art-deco-border);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

.value-card:hover::before {
    width: 100%;
}

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

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    border: var(--art-deco-border);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: var(--art-deco-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--highlight-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 3rem 0 1rem;
    border-top: var(--art-deco-border);
}

/* Page-specific sections */
.facilities,
.insurance,
.services {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
}

.facilities::before,
.insurance::before,
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

.facilities-grid,
.insurance-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card,
.insurance-card,
.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: var(--art-deco-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.facility-card::before,
.insurance-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.facility-card:hover::before,
.insurance-card:hover::before,
.service-card:hover::before {
    transform: scaleX(1);
}

.facility-card:hover,
.insurance-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.facility-icon,
.insurance-icon,
.service-icon {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--highlight-color);
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--highlight-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.facility-card h3,
.insurance-card h3,
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.facility-card h4,
.insurance-card h4,
.service-card h4 {
    font-size: 1.1rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.facility-card p,
.insurance-card p,
.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.facility-card ul,
.insurance-card ul,
.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.facility-card li,
.insurance-card li,
.service-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.facility-card li::before,
.insurance-card li::before,
.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

/* Partners Page Styles */
.partners-section {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
}

.partners-section:nth-child(even) {
    background: var(--secondary-color);
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

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

/* Special layout for sections with fewer cards */
.partners-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid.two-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: var(--art-deco-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

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

.partner-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--highlight-color);
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--highlight-color);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.partner-logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.partner-image {
    text-align: center;
    margin-bottom: 1rem;
}

.partner-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--highlight-color);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.partner-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: var(--text-primary);
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partner-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partner-details h4 {
    font-size: 1.1rem;
    color: var(--highlight-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.partner-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.partner-details li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.partner-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.partner-link {
    display: inline-block;
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid var(--highlight-color);
}

.partner-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Become Partner Section */
.become-partner {
    padding: 6rem 0;
    background: var(--secondary-color);
    position: relative;
}

.become-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

.partner-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.partner-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partner-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.opportunity-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.opportunity-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.opportunity-type h4 {
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.opportunity-type p {
    color: var(--text-secondary);
    margin: 0;
}

.partner-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: var(--art-deco-border);
}

.partner-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--highlight-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--highlight-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--highlight-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .summary-box {
        max-width: 100%;
    }
    
    .partnership-type-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid,
    .insurance-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
} 