/* Global Styles */
:root {
    --primary-color: #0B1F3F;
    --secondary-color: #ffffff;
    --accent-color: #1E3F7F;
    --text-color: #333333;
    --transition: all 0.3s ease;
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    width: 100%;
    overflow-x: hidden;
    background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    z-index: 1002;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(11, 31, 63, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    color: var(--secondary-color);
    max-width: 800px;
    width: 100%;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--secondary-color);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.primary-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.secondary-btn {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        justify-content: center;
        align-items: center;
        min-height: 45px;
        font-size: 1rem;
    }

    .hero::before {
        background-size: 30px 30px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--secondary-color);
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-text {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 31, 63, 0.05);
    transition: var(--transition);
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.values-list li strong {
    color: var(--primary-color);
    min-width: 120px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.4;
    opacity: 0.9;
}

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

.feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.about-certifications {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    color: var(--secondary-color);
}

.about-certifications h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.certification-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.certification-item i {
    font-size: 2rem;
    color: #4CAF50;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding: 2rem;
    }

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

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .about-text {
        padding: 1.5rem;
        margin: 0 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .about-text:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .about-section {
        margin-bottom: 1.5rem;
    }

    .about-section h4 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.3rem;
    }

    .about-section h4::after {
        width: 40px;
        height: 2px;
    }

    .about-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .values-list li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        gap: 0.3rem;
    }

    .values-list li strong {
        min-width: 100px;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
        min-height: 100px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .stat-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--secondary-color);
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.service-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
}

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

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

.service-list {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
    width: 100%;
}

.service-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.service-card:hover .service-list li::before {
    left: 5px;
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .service-card {
        padding: 2rem;
        margin: 0;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .service-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
}

/* Press Section */
.press {
    padding: 100px 0;
    background: #f8f9fa !important;
    position: relative;
    z-index: 1;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.press-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.press-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.press-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.press-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.press-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.press-source {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.press-source i {
    color: var(--primary-color);
}

.source-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.source-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.source-link i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.press-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.press-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.press-item:hover .press-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .press-item {
        padding: 1.5rem;
    }

    .press-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .press-item p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .press-source {
        font-size: 0.8rem;
    }

    .source-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .source-link i {
        font-size: 0.75rem;
    }

    .press-image {
        margin-bottom: 0.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--secondary-color) !important;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.profile-card {
    flex: 0 1 300px;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-info {
    margin-top: 1rem;
}

.profile-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-info {
    flex: 1 1 100%;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .profile-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1.5rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-info h3 {
        font-size: 1.3rem;
    }

    .profile-title {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 1;
    color: #fff;
}

.footer-social a[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.footer-social a[aria-label="LinkedIn"]:hover {
    color: #0077b5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Temel Ayarlar */
    .container {
        padding: 0 10px;
    }

    section {
        padding: 30px 0;
    }

    /* Başlıklar */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    /* Tüm Kartlar için Ortak Stiller */
    .service-card,
    .value-card,
    .advantage-card,
    .feature-item,
    .stat-item,
    .metric-item {
        background: #fff;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    /* Kart İçerikleri */
    .service-card h3,
    .value-card h3,
    .advantage-card h4,
    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .service-card p,
    .value-card p,
    .advantage-card p,
    .feature-item p {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    /* İkonlar */
    .service-card i,
    .value-icon i,
    .advantage-icon i,
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    /* Grid Yapıları */
    .services-grid,
    .value-cards,
    .advantages-grid,
    .about-features,
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
    }

    /* İstatistikler */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 5px;
    }

    .stat-item {
        background: var(--primary-color);
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 120px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 8px;
        line-height: 1;
    }

    .stat-text {
        font-size: 0.9rem;
        color: var(--secondary-color);
        line-height: 1.3;
        opacity: 0.9;
    }

    /* Listeler */
    .service-list li,
    .value-list li {
        font-size: 0.85rem;
        padding: 6px 0;
        padding-left: 15px;
    }

    .service-list li::before,
    .value-list li::before {
        font-size: 0.8rem;
    }

    /* Highlight Boxes */
    .highlight-box {
        padding: 15px;
        border-radius: 8px;
    }

    .highlight-box h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .highlight-item {
        gap: 6px;
        margin-bottom: 6px;
    }

    .highlight-item i {
        font-size: 0.9rem;
    }

    .highlight-item p {
        font-size: 0.85rem;
    }

    /* Alıntılar */
    .value-quote {
        padding: 15px;
    }

    .value-quote blockquote {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    /* Hover Efektleri */
    .service-card:hover,
    .value-card:hover,
    .advantage-card:hover,
    .feature-item:hover,
    .stat-item:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* About Section */
    .about-intro h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .about-intro p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-section h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .about-text {
        padding: 15px;
    }

    /* Why Us Section */
    .why-us-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .why-us-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        opacity: 0.9;
        padding: 0 0.5rem;
    }

    .why-us-text {
        margin-bottom: 1.2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .advantage-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .advantage-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
}

.benefits .section-title {
    color: var(--secondary-color);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.benefit-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Research Types Section */
.research-types {
    padding: 100px 0;
    background: var(--secondary-color);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.research-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.research-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.research-content ul {
    list-style: none;
}

.research-content ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.research-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background: #f8f9fa;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-color);
    font-size: 1rem;
}

.methodology-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.stat-circle {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-value span {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .benefits-grid,
    .research-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .research-card {
        padding: 1.5rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step {
        gap: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .methodology-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--secondary-color) !important;
    position: relative;
    z-index: 1;
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.why-us-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.why-us-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.advantages-grid {
    max-width: 800px;
    margin: 2rem auto 3rem;
}

.advantage-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-item:hover::before {
    width: 8px;
}

.advantage-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 63, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(11, 31, 63, 0.1);
}

.advantage-content {
    flex: 1;
}

.advantage-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.advantage-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .advantage-item {
        padding: 1rem;
        gap: 0.8rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .advantage-icon {
        font-size: 1.5rem;
        min-width: 35px;
        height: 35px;
    }

    .advantage-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .advantage-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .advantage-item:hover {
        transform: translateX(5px);
    }
}

/* Research Value Section */
.research-value {
    padding: 100px 0;
    background: #f8f9fa !important;
    position: relative;
    z-index: 1;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.value-list {
    list-style: none;
}

.value-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
}

.value-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.value-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-box {
    background: var(--primary-color);
    padding: 2.5rem;
    border-radius: 15px;
    color: var(--secondary-color);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.highlight-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.value-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.value-quote blockquote {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-author {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .research-value {
        padding: 60px 0;
    }

    .value-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .value-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .highlight-box {
        padding: 2rem;
    }

    .value-quote {
        padding: 2rem 1rem;
    }

    .value-quote blockquote {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    /* Genel Card Stilleri */
    .service-card,
    .value-card,
    .advantage-card,
    .feature-item,
    .stat-item,
    .metric-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3,
    .value-card h3,
    .advantage-card h4,
    .feature-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .service-card p,
    .value-card p,
    .advantage-card p,
    .feature-item p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .service-card i,
    .value-icon i,
    .advantage-icon i,
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Servis Kartları */
    .services-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .service-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    /* Değer Kartları */
    .value-cards {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .value-list li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    /* İstatistik Kartları */
    .about-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }

    /* Özellik Kartları */
    .about-features {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    /* Avantaj Kartları */
    .advantages-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    /* Metrik Kartları */
    .success-metrics {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }

    /* Container ve Section Padding */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Highlight Box */
    .value-highlights {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-item {
        gap: 0.8rem;
    }

    .highlight-item i {
        font-size: 1.2rem;
    }

    .highlight-item p {
        font-size: 0.9rem;
    }
}

/* Tablet Görünümü için Ek Optimizasyon */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-card,
    .value-card,
    .advantage-card,
    .feature-item {
        padding: 2rem;
    }

    .services-grid,
    .value-cards,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        padding: 2rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--secondary-color);
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:nth-child(1) { background: var(--primary-color); }
    .nav-links a:nth-child(2) { background: #1E3F7F; }
    .nav-links a:nth-child(3) { background: var(--primary-color); }
    .nav-links a:nth-child(4) { background: #1E3F7F; }
    .nav-links a:nth-child(5) { background: var(--primary-color); }
    .nav-links a:nth-child(6) { background: #1E3F7F; }
    .nav-links a:nth-child(7) { background: var(--primary-color); }

    .nav-links a:hover {
        background: #2A5FBF !important;
        transform: translateX(5px);
    }

    .nav-links a.active {
        background: #2A5FBF !important;
        font-weight: 600;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1003;
        width: 30px;
        height: 30px;
        justify-content: center;
    }

    .mobile-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--secondary-color);
        transition: all 0.3s ease;
        transform-origin: left center;
    }

    .mobile-menu.active span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:last-child {
        transform: rotate(-45deg);
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    /* Highlight Boxes */
    .value-highlights {
        gap: 10px;
        padding: 0 5px;
    }

    .highlight-box {
        padding: 12px;
        border-radius: 8px;
        background: var(--primary-color);
    }

    .highlight-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        text-align: left;
    }

    .highlight-content {
        gap: 8px;
    }

    .highlight-item {
        gap: 8px;
        margin-bottom: 4px;
        align-items: flex-start;
    }

    .highlight-item i {
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .highlight-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    /* Sertifikalar */
    .about-certifications {
        padding: 12px;
        border-radius: 8px;
        margin: 0 5px;
    }

    .about-certifications h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .certification-list {
        gap: 10px;
    }

    .certification-item {
        font-size: 0.85rem;
        padding: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        margin: 0;
    }

    .certification-item i {
        font-size: 1rem;
    }

    /* Value Quote */
    .value-quote {
        padding: 12px;
        margin: 0 5px;
    }

    .value-quote blockquote {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .quote-author {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* Başlık Boyutları */
    .section-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1.2rem;
    }

    /* Kart Başlıkları */
    .service-card h3,
    .value-card h3,
    .advantage-card h4,
    .feature-item h4,
    .highlight-box h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        letter-spacing: 0.2px;
    }

    /* Hero Başlıkları */
    .hero-content h1 {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 1rem;
        font-weight: 400;
    }

    /* About Başlıkları */
    .about-intro h3 {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .about-section h4 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Metinler */
    .service-card p,
    .value-card p,
    .advantage-card p,
    .feature-item p {
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.5;
    }

    /* Listeler */
    .service-list li,
    .value-list li {
        font-size: 0.85rem;
        font-weight: 400;
    }

    /* İstatistikler */
    .stat-number {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .stat-text {
        font-size: 0.8rem;
        font-weight: 400;
    }

    /* Sertifikalar */
    .certification-item {
        font-size: 0.85rem;
        font-weight: 400;
    }

    /* Highlight Box */
    .highlight-item p {
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.4;
    }

    /* Butonlar */
    .primary-btn,
    .secondary-btn {
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    /* Size Özel Çözümler Bölümü */
    .key-benefits {
        padding: 1.5rem;
        border-radius: 10px;
        margin: 0 0.5rem 2rem;
    }

    .key-benefits h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .benefits-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    .benefit-item i {
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }

    .benefit-text h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Section Paddings */
.services,
.research-value,
.press,
.why-us {
    padding: 60px 0;
}

.key-benefits {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 15px;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.key-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 1.8rem;
    color: #4CAF50;
    flex-shrink: 0;
}

.benefit-text {
    flex-grow: 1;
}

.benefit-text h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-text p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .key-benefits {
        padding: 1.5rem;
        border-radius: 10px;
        margin: 1rem;
    }

    .key-benefits h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
        gap: 0.8rem;
        border-radius: 8px;
    }

    .benefit-item i {
        font-size: 1.3rem;
        margin-top: 0.2rem;
    }

    .benefit-text h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Intro Animation */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0B1F3F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: hideContainer 2.8s linear forwards;
    perspective: 1500px;
}

.logo-container {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateLogo 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    backface-visibility: hidden;
    animation: scaleLogo 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes hideContainer {
    0%, 90% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: hidden;
        opacity: 0;
        display: none;
        z-index: -1;
    }
}

@keyframes rotateLogo {
    0% {
        transform: rotateY(0deg) scale(0.2);
        opacity: 0;
    }
    10% {
        transform: rotateY(0deg) scale(0.2);
        opacity: 1;
    }
    40% {
        transform: rotateY(360deg) scale(1);
        opacity: 1;
    }
    70% {
        transform: rotateY(720deg) scale(1);
        opacity: 1;
    }
    85% {
        transform: rotateY(720deg) scale(0.2) translateY(-20vh);
        opacity: 0;
    }
    100% {
        transform: rotateY(720deg) scale(0) translateY(-30vh);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes scaleLogo {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    10% {
        opacity: 1;
        filter: blur(0);
    }
    70% {
        opacity: 1;
        filter: blur(0);
    }
    85% {
        opacity: 0;
        filter: blur(3px);
    }
    100% {
        opacity: 0;
        filter: blur(5px);
        visibility: hidden;
    }
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-contact i {
    font-size: 20px;
}

.floating-contact:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .floating-contact i {
        font-size: 16px;
    }
}

/* Info Item Styles */
.info-item {
    background: var(--secondary-color);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 24px;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.4;
    font-size: 1rem;
    margin: 0;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .info-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }

    .info-item i {
        font-size: 1rem;
        min-width: 20px;
    }

    .info-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.team .profile-card {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.team .profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.team .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
    position: relative;
}

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

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

.team .profile-info {
    width: 100%;
}

.team .profile-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.team .profile-title {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team .profile-card {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .team .profile-card {
        padding: 15px;
        max-width: 160px;
    }

    .team .profile-image {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .team .profile-info h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .team .profile-title {
        font-size: 0.8rem;
    }
} 

/* Contact Info Styles */
.info-content {
    flex: 1;
}

.info-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

.info-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .info-content h4 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .info-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.2rem;
        min-width: 24px;
    }
}

.info-text {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.info-text strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .info-text {
        padding: 1.5rem;
    }

    .info-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.team-category {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.team-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.team-category:first-of-type {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .team-category {
        font-size: 1.4rem;
        margin: 2rem 0 1.5rem;
    }

    .team-category::after {
        width: 40px;
    }
} 