/* ==========================================
   FOOTER PAGES STYLES
   Shared styles for all footer pages
   ========================================== */

/* ========== PAGE HERO ========== */
.page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    animation: slideUp 0.6s ease-out;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    padding: 80px 20px;
    position: relative;
}

.content-section.bg-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== STORY TIMELINE ========== */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.story-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.story-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
}

.card-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.story-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== MISSION & VALUES ========== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(78, 205, 196, 0.2);
}

.mission-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.mission-card:nth-child(2) .mission-icon {
    animation-delay: 0.3s;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* VALUES SECTION */
.values-section {
    animation: fadeInUp 0.8s ease-out;
}

.values-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.value-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-8px) scale(1.05);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
}

.value-item:nth-child(2) .value-icon {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) .value-icon {
    animation-delay: 0.4s;
}

.value-item:nth-child(4) .value-icon {
    animation-delay: 0.6s;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========== TEAM SECTION ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.team-member {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.15);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.team-member:nth-child(2) .member-avatar {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) .member-avatar {
    animation-delay: 0.4s;
}

.team-member:nth-child(4) .member-avatar {
    animation-delay: 0.6s;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-weight: 600;
}

.bio {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(78, 205, 196, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ========== CTA SECTION ========== */
.cta-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* ========== BENEFITS GRID (Careers Page) ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(45, 183, 209, 0.4);
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(45, 183, 209, 0.15);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-card:nth-child(2) .benefit-icon {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) .benefit-icon {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(4) .benefit-icon {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(5) .benefit-icon {
    animation-delay: 0.8s;
}

.benefit-card:nth-child(6) .benefit-icon {
    animation-delay: 1s;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ========== JOBS GRID ========== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.job-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

.job-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.job-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    background: rgba(255, 107, 107, 0.2);
    color: rgba(255, 107, 107, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* ========== CULTURE GRID ========== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.culture-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.culture-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.15);
}

.culture-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.culture-item:nth-child(2) .culture-icon {
    animation-delay: 0.2s;
}

.culture-item:nth-child(3) .culture-icon {
    animation-delay: 0.4s;
}

.culture-item:nth-child(4) .culture-icon {
    animation-delay: 0.6s;
}

.culture-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.culture-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========== CONTACT METHODS ========== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-method {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(240, 147, 251, 0.4);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(240, 147, 251, 0.15);
}

.method-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.contact-method:nth-child(2) .method-icon {
    animation-delay: 0.2s;
}

.contact-method:nth-child(3) .method-icon {
    animation-delay: 0.4s;
}

.contact-method:nth-child(4) .method-icon {
    animation-delay: 0.6s;
}

.contact-method h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-method a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #FF6B6B;
}

.response-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease-out;
}

.contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* ========== LOCATIONS ========== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.location-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 87, 108, 0.4);
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.15);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* ========== HELP GRID ========== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.help-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.help-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(79, 212, 246, 0.4);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 212, 246, 0.15);
}

.help-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.help-card:nth-child(2) .help-icon {
    animation-delay: 0.2s;
}

.help-card:nth-child(3) .help-icon {
    animation-delay: 0.4s;
}

.help-card:nth-child(4) .help-icon {
    animation-delay: 0.6s;
}

.help-card:nth-child(5) .help-icon {
    animation-delay: 0.8s;
}

.help-card:nth-child(6) .help-icon {
    animation-delay: 1s;
}

.help-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.help-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== ARTICLES GRID ========== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.article-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(79, 212, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(79, 212, 246, 0.15);
}

.article-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========== LEGAL CONTENT ========== */
.legal-content {
    max-width: 900px;
    margin: 50px auto 0;
    animation: fadeInUp 0.8s ease-out;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: #fff;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-position: inside;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 15px;
    margin-left: 20px;
}

.legal-content li {
    font-size: 15px;
    margin-bottom: 10px;
}

/* ========== MEDIA GRID ========== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.media-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(4, 217, 255, 0.4);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 217, 255, 0.15);
}

.media-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.media-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.media-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== BLOG GRID ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.blog-post {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(145, 85, 253, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(145, 85, 253, 0.2);
}

.blog-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.blog-post h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #4ECDC4;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #FF6B6B;
}

/* ========== SAFETY GRID ========== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.safety-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.safety-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.15);
}

.safety-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.safety-card:nth-child(2) .safety-icon {
    animation-delay: 0.2s;
}

.safety-card:nth-child(3) .safety-icon {
    animation-delay: 0.4s;
}

.safety-card:nth-child(4) .safety-icon {
    animation-delay: 0.6s;
}

.safety-card:nth-child(5) .safety-icon {
    animation-delay: 0.8s;
}

.safety-card:nth-child(6) .safety-icon {
    animation-delay: 1s;
}

.safety-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.safety-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== PROCESS GRID ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.15);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #52C41A 0%, #13C2C2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 15px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        padding: 100px 15px 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .story-grid,
    .mission-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 300px;
        padding: 80px 15px 30px;
    }

    .page-title {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .story-grid,
    .mission-grid,
    .team-grid,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-btn {
        display: block;
        width: 100%;
    }
}
