:root {
    /* Premium Color Palette */
    --primary-color: #0d47a1;
    /* Deep Royal Blue */
    --primary-light: #1565c0;
    --primary-soft: #e3f2fd;
    --accent-color: #d32f2f;
    /* Urgent Red */
    --accent-hover: #b71c1c;
    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --surface: #ffffff;

    /* Corporate Colors */
    --quick-bar-bg: #1b5e20;
    /* Deep Green like the photo */

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 90px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-medium);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-soft);
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-soft);
    border-color: var(--primary-soft);
    color: var(--primary-dark);
}

/* Hero Section Corporate */
.hero-corporate {
    min-height: 85vh;
    position: relative;
    background: linear-gradient(135deg, #0a2e5c 0%, #154785 100%);
    /* Deep Navy Corporate Blue */
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.hero-container-corporate {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    z-index: 2;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content-corporate {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #e3f2fd;
    backdrop-filter: blur(4px);
}

.hero-content-corporate h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    font-weight: 800;
}

.hero-content-corporate p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary-corp {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary-corp:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary-corp {
    background-color: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary-corp:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Corporate Visuals - Abstract Cards */
.hero-visual-corporate {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-left: 40px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: transform 0.3s ease;
    border-left: 5px solid var(--accent-color);
}

.visual-card.second {
    margin-left: 40px;
    /* Stagger effect */
    border-left: 5px solid var(--primary-color);
}

.visual-card:hover {
    transform: translateX(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.visual-card.second .card-icon i {
    color: var(--primary-color);
}

.card-text h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 4px;
    font-weight: 700;
}

.card-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .hero-corporate {
        text-align: center;
        padding-top: 40px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container-corporate {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content-corporate {
        padding-right: 0;
        margin: 0 auto;
    }

    .hero-content-corporate h1 {
        font-size: 2.5rem;
    }

    .hero-content-corporate p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual-corporate {
        padding-left: 0;
        align-items: center;
    }

    .visual-card,
    .visual-card.second {
        margin-left: 0;
        width: 100%;
        max-width: 450px;
        text-align: left;
    }
}

/* Quick Access Bar */
.quick-access-bar {
    background-color: var(--quick-bar-bg);
    padding: 30px 0;
    margin-top: -5px;
    /* Pull up to touch hero/nav if needed, or just flow naturally. */
    position: relative;
    z-index: 10;
}

.quick-access-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.quick-link {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 4px;
    /* Sharper */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.quick-link i {
    font-size: 1.5rem;
}

.quick-link span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.quick-link:hover {
    background: var(--white);
    color: var(--quick-bar-bg);
    transform: translateY(-3px);
}

/* Redesigned About Section */
.about-section {
    background-color: var(--white);
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sub-title {
    color: #666;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #222;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item i {
    color: var(--quick-bar-bg);
    /* Use the green here too for consistency */
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: #222;
}

.stat-item span {
    font-size: 0.9rem;
    color: #777;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: var(--off-white);
}

/* Premium Opportunities Section */
.section-premium {
    background-color: #f8f9fa;
    /* Classic corporate light grey */
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.premium-badge::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlight-gold {
    color: #1a237e;
    /* Using deep blue instead of gold for consistency, or we can add a gold var if needed. Let's stick to brand colors for now to be safe, maybe slightly lighter blue. */
    font-style: italic;
    font-family: serif;
    /* Elegant touch */
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0.03;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.premium-card:hover::before {
    height: 100%;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.premium-card:hover .card-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.card-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.premium-card:hover .card-icon-wrapper i {
    color: #fff;
}

.premium-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium CTA Section */
.cta-premium {
    background: linear-gradient(135deg, #051937 0%, #004d7a 100%);
    /* Deep authoritative gradient */
    color: white;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    animation: pulse-slow 3s infinite;
}

.cta-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.cta-content h2 span {
    color: var(--accent-color);
    /* Urgent red highlight for impact */
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-trust-badge {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2.3rem;
    }
}

footer {
    background-color: #0b1c31;
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-col h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-dec {
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 90%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .quick-access-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    /* Opportunities Mobile */
    .opportunities-container {
        flex-direction: column;
    }

    .opp-column.left .opp-item,
    .opp-column.right .opp-item {
        text-align: left;
        flex-direction: row;
    }

    .opp-column.center {
        order: -1;
        /* Image first on mobile, or middle? Usually image first is nice visual anchor, or after intro. Let's keep it middle or top. Let's put image first for impact.*/
        order: 1;
        /* Actually, features -> image -> features is desktop. Mobile: Image -> Features -> Features is better. */
        margin-bottom: 40px;
    }

    .opp-column.left {
        order: 2;
    }

    .opp-column.right {
        order: 3;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .quick-access-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-container {
        padding-top: 20px;
    }
}

/* --- Inner Page Styles (Hakkımızda, vb.) --- */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a2e5c 0%, #154785 100%);
    color: white;
    padding: 140px 0 80px;
    /* Account for fixed header */
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumbs a {
    color: white;
    font-weight: 600;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs i {
    font-size: 0.8rem;
}

/* About Expanded */
.about-expanded {
    padding: 100px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: serif;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

/* Values Grid */
.section-values {
    background-color: #f4f6f9;
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-top-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e3f2fd;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* Team Grid */
.section-team {
    padding: 100px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Fixed height for consistency */
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: -60px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    transition: bottom 0.4s ease;
}

.team-card:hover .team-overlay {
    bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
}

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

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.team-info span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Mobile Responsiveness for Inner Pages */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Premium Docs Layout (Redesigned Tüzük) --- */
.section-docs {
    padding: 80px 0;
    background-color: var(--off-white);
}

.docs-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sticky Sidebar */
.docs-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
    /* Accounts for fixed header */
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sidebar-sticky h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.docs-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docs-nav a {
    color: var(--text-medium);
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.docs-nav a:hover {
    color: var(--primary-color);
    background-color: #f0f7ff;
    padding-left: 18px;
    /* Subtle movement */
}

.docs-nav a.active {
    color: var(--primary-color);
    background-color: #e3f2fd;
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Main Content Area */
.legal-header-simple {
    margin-bottom: 40px;
}

.legal-header-simple h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.legal-header-simple p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Docs Card */
.docs-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.docs-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(to right, #f8f9fa, #fff);
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.card-header h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-header span {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 30px;
}

.article-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f5f5f5;
}

.article-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-item h4 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.article-item p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .docs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .docs-sidebar {
        display: none;
        /* Hide TOC on mobile for simplicity or move to top */
    }
}

/* --- Contact Page Styles --- */

.section-contact-info {
    padding: 80px 0 40px;
    background-color: var(--off-white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.contact-card .icon-box {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-card p a {
    color: #666;
    transition: color 0.3s;
}

.contact-card p a:hover {
    color: var(--primary-color);
}

/* Contact Form & Map Section */
.section-contact-form {
    padding: 40px 0 80px;
    background-color: var(--off-white);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Premium looking seamless look or standard gap */
    gap: 40px;
    align-items: stretch;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-form .form-group {
    margin-bottom: 25px;
}

.premium-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(21, 71, 133, 0.1);
    outline: none;
}

.premium-form .btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 500px;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        min-height: 400px;
        order: -1;
        /* Show map first on mobile? Or usually last. Let's keep it last or first. Let's keep last here. */
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Application Page Redesign (Premium & Refined) --- */

.section-application {
    padding: 80px 0 120px;
    background-color: #f8f9fa;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Highlight Card (Membership) */
.form-card.highlight-card {
    grid-column: 1 / -1;
    background: linear-gradient(to right bottom, #ffffff, #fdfdfd);
    border: 1px solid rgba(21, 71, 133, 0.05);
}

.card-header {
    background: white;
    padding: 30px 35px;
    border-bottom: 1px solid #f7f7f7;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.card-body {
    padding: 40px;
}

/* Premium Inputs */
.premium-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1.05rem;
    background-color: #fbfbfb;
    transition: all 0.25s ease;
    color: var(--text-dark);
}

.premium-form input:focus,
.premium-form textarea:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(21, 71, 133, 0.1);
    outline: none;
}

/* Modern Radio Cards for Membership */
.radio-group-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.radio-card {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.radio-card input {
    display: none;
}

.radio-card-content {
    background: white;
    border: 2px solid #eee;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.radio-card:hover .radio-card-content {
    border-color: #ccc;
    background-color: #fcfcfc;
}

.rc-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: block;
}

.rc-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

.rc-check {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(21, 71, 133, 0.3);
}

.radio-card input:checked+.radio-card-content {
    border-color: var(--primary-color);
    background-color: #f8fbff;
    box-shadow: 0 10px 25px rgba(21, 71, 133, 0.1);
}

.radio-card input:checked~.rc-check {
    opacity: 1;
    transform: scale(1);
}

/* Checkbox Styles */
.checkbox-group-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.checkbox-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: color 0.2s;
}

.checkbox-simple:hover {
    color: var(--text-dark);
}

.checkbox-simple input {
    display: none;
}

.cb-box {
    width: 26px;
    height: 26px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: white;
    flex-shrink: 0;
}

.checkbox-simple input:checked+.cb-box {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(21, 71, 133, 0.2);
}

.checkbox-simple input:checked+.cb-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 14px;
}

.btn-xl {
    padding: 22px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(21, 71, 133, 0.25);
}

.btn-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(21, 71, 133, 0.35);
}

/* Tabbed Interface for Application */
.form-tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.2);
}

.form-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Split Layout for Application Forms */
.application-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.split-form-wrapper {
    height: 100%;
}

.split-form-wrapper .form-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.split-form-wrapper .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.split-form-wrapper .btn-block {
    margin-top: auto;
}

@media (max-width: 992px) {
    .application-split-container {
        grid-template-columns: 1fr;
    }
}

/* Process Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.process-section {
    padding: 60px 0;
    background-color: var(--off-white);
    min-height: 80vh;
}

.process-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.process-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: sticky;
    top: 100px;
    /* Sticks when scrolling */
}

.sidebar-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
}

.sidebar-header h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.process-list {
    padding: 10px 0;
}

.process-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 4px solid transparent;
}

.process-item i {
    color: #ccc;
    width: 20px;
    text-align: center;
    transition: color 0.2s ease;
}

.process-item:hover {
    background-color: var(--off-white);
    color: var(--primary-color);
}

.process-item.active {
    background-color: var(--primary-soft);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.process-item.active i {
    color: var(--primary-color);
}

/* Main Content */
.process-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    min-height: 500px;
}

.process-article {
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.4s ease;
}

.process-article.active {
    display: block;
    /* Show when active */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-article h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--off-white);
    padding-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #888;
}

.article-meta span i {
    margin-right: 6px;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.article-body h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 25px;
    padding-left: 25px;
    color: var(--text-medium);
}

.article-body li {
    margin-bottom: 10px;
}

.alert-box {
    background-color: #fff3f3;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.alert-box i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

/* Mobile Responsive for Process Page */
@media (max-width: 992px) {
    .process-container {
        grid-template-columns: 1fr;
    }

    .process-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .process-content {
        padding: 25px;
    }
}


/* Premium Footer Styles */
.footer-premium {
    background: linear-gradient(to bottom, #111, #000);
    color: #fff;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

/* Background Pattern/Glow Effect (Optional) */
.footer-premium::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Partners Section */
.partners-section {
    background-color: transparent;
    padding: 90px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-header {
    margin-bottom: 70px;
}

.partners-header h3 {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.partners-header .accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.partners-header p {
    color: #bbb;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(211, 47, 47, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.partner-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.partner-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.partner-card:hover h3::after {
    width: 50px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-row i {
    color: var(--accent-color);
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.contact-row a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-row a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #050505;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.social-links-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    /* Rounded */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
}

.social-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.6);
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: #888;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-nav a::before {
    content: '';
    /* Removed dots for cleaner look */
    display: none;
}

/* Scroll Top Button - Refined */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #9a1010);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.6);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partners-header h3 {
        font-size: 1.4rem;
    }

    .partners-section {
        padding: 60px 0;
    }

    .bottom-bar-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}