/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ana renkler - Hermanco kırmızısı ve tamamlayıcı renkler */
    --primary-color: #E31E24;  /* Hermanco Kırmızısı */
    --primary-dark: #C41A1F;   /* Koyu Kırmızı */
    --primary-light: #FF4D4D;  /* Açık Kırmızı */
    --secondary-color: #1A1A1A; /* Koyu Gri */
    --accent-color: #E31E24;   /* Aksiyonlar için kırmızı */
    --text-color: #333333;
    --text-light: #666666;
    --light-gray: #F5F5F5;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;
    --overlay-dark: rgba(26, 26, 26, 0.8); /* Slider overlay için */

    /* Yazı tipleri */
    --heading-font: 'Helvetica Neue', 'Arial', sans-serif;
    --body-font: 'Open Sans', sans-serif;

    /* Geçiş süreleri */
    --transition-speed: 0.3s;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
}

/* Container styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.language-selector {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px;
    display: none;
    min-width: 150px;
    z-index: 1000;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color var(--transition-speed);
}

.lang-option:hover {
    background-color: var(--light-gray);
    border-radius: 4px;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-right {
        gap: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .language-selector {
        margin-right: 50px;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 18px;
        margin: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }
}

/* Hero Section Styles */
.hero {
    height: 570px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b91c1c;
    color: #fff;
}

.btn-primary:disabled {
    background-color: #ef4444;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Spinner animasyonu */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Alert stilleri */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    border-color: var(--white);
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
}

.slider-arrows-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    padding: 0;
}

.slider-arrow svg {
    width: 50px;
    height: 50px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke var(--transition-speed) ease;
}

.slider-arrow:hover svg {
    stroke: var(--white);
}

/* Sectors Section */
.sectors {
    padding: 80px 0;
    background-color: var(--dark-gray);
    position: relative;
}

.sectors-title-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.sectors-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: -0.5px;
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.sectors-title span {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.sectors-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 20px;
    background-color: var(--primary-color);
    z-index: 1;
    transform: skewX(-15deg);
}

.pixel-divider {
    width: 100%;
    height: 20px;
    background-image: url('images/pixel-pattern.png');
    background-repeat: repeat-x;
    margin: 2rem 0;
    opacity: 0.8;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sector-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 1;
}

.sector-card.cta-card {
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.05), rgba(227, 30, 36, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.sector-card:hover img {
    transform: scale(1.1);
}

.sector-card:hover .sector-content {
    background: linear-gradient(to top, rgba(227, 30, 36, 0.9), transparent);
}

.sector-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sector-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sector-card:hover .sector-content p {
    opacity: 1;
    transform: translateY(0);
}

.sectors-cta {
    text-align: center;
    margin-top: 4rem;
}

.sectors-cta-content {
    color: var(--white);
    transition: all 0.3s ease;
}

.sectors-cta-text {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sectors-cta-highlight {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
    letter-spacing: 0.5px;
}

.sector-card.cta-card:hover .sectors-cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-card.cta-card {
        grid-column: span 2;
        aspect-ratio: auto;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card.cta-card {
        grid-column: span 1;
    }

    .sectors-cta-text {
        font-size: 1.8rem;
    }
    
    .sectors-cta-highlight {
        font-size: 1.2rem;
    }
    
    .sectors-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .sectors-title::after {
        height: 15px;
        bottom: 5px;
    }

    .sectors-title-container {
        margin-bottom: 3rem;
    }

    .pixel-divider {
        margin: 1.5rem 0;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .sectors-title {
        font-size: 1.8rem;
        padding: 0 8px;
    }

    .sectors-title::after {
        height: 12px;
        bottom: 4px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 3rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-logo {
    grid-column: span 1;
}

.footer-logo img {
    height: 35px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links-column {
    grid-column: span 1;
}

.footer-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-logo {
        grid-column: span 2;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-logo img {
        margin: 0 auto 1rem;
    }

    .footer-links-column {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo, .footer-links-column {
        grid-column: span 1;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slogan Bar Styles */
.slogan-bar {
    background-color: var(--primary-dark);
    padding: 1rem 0;
    text-align: center;
}

.slogan-bar h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Info Cards Section */
.info-cards-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.info-cards-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-card {
    flex: 1;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    color: var(--secondary-color);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(227, 30, 36, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.info-card-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.2);
    position: relative;
    z-index: 1;
}

.info-card .more-info-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.15);
    margin-top: auto;
}

.info-card .more-info-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.2);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

@media (max-width: 992px) {
    .info-cards-container {
        flex-direction: column;
        max-width: 600px;
    }

    .info-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.6rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.page-hero {
    height: 300px;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../images/sectors/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--primary-color);
}

.breadcrumb .current {
    color: var(--primary-color);
}

/* Company Overview */
.company-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content {
    padding-right: 2rem;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Timeline */
.our-story {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    padding-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    padding-right: 3rem;
    text-align: right;
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: calc(50% - 30px);
    position: relative;
}

.year {
    position: absolute;
    top: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-item:nth-child(odd) .year {
    left: 20px;
}

.timeline-item:nth-child(even) .year {
    right: 20px;
}

/* Core Values */
.core-values {
    padding: 5rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.position {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-content {
        padding-right: 0;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 200px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px !important;
        padding-left: 1.5rem !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        padding-right: 1.5rem;
    }

    .year {
        left: 20px !important;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Sectors Page Styles */
.sectors-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/sectors/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    margin-top: 72px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.sectors-hero .page-hero-content {
    position: relative;
    z-index: 2;
}

.sectors-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.sectors-page {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.sector-block {
    margin-bottom: 6rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 2rem;
}

.sector-block:last-child {
    margin-bottom: 0;
}

.sector-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sector-block.reverse .sector-content {
    direction: rtl;
}

.sector-block.reverse .sector-info {
    direction: ltr;
}

.sector-info {
    padding: 2rem;
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.sector-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
}

.sector-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.sector-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.sector-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sector-link .arrow {
    transition: transform 0.3s ease;
}

.sector-link:hover .arrow {
    transform: translateX(5px);
}

.sector-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
    aspect-ratio: 16/9;
}

.sector-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    height: 100%;
}

.sector-item:hover .sector-image img {
    transform: scale(1.05);
}

.sector-details {
    flex: 0 0 55%;
    padding: 2rem;
    margin-left: -60px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.sector-item.reverse .sector-details {
    margin-left: 0;
    margin-right: -60px;
}

.sector-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.sector-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.sector-features {
    list-style: none;
    margin-bottom: 0;
}

.sector-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.sector-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .sector-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sector-info {
        padding: 0;
    }

    .sector-block.reverse .sector-content {
        direction: ltr;
    }

    .sector-image {
        order: -1;
    }

    .sector-header h2 {
        font-size: 2rem;
    }

    .sector-block {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .sectors-hero {
        height: 200px;
        margin-top: 60px;
    }

    .sectors-hero h1 {
        font-size: 2rem;
    }

    .sectors-page {
        padding: 3rem 0;
    }

    .sector-block {
        margin-bottom: 3rem;
        padding: 1rem;
    }

    .sector-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: center;
    }

    .sector-icon {
        margin: 0 auto;
    }

    .sector-header h2 {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }

    .sector-description {
        text-align: center;
    }

    .sector-features {
        grid-template-columns: 1fr;
    }

    .sector-link {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* Sectors Content Styles */
.sectors-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.sector-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
}

.sector-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.sector-item:last-child {
    margin-bottom: 0;
}

.sector-item.reverse {
    flex-direction: row-reverse;
}

.sector-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
    aspect-ratio: 16/9;
}

.sector-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    height: 100%;
}

.sector-item:hover .sector-image img {
    transform: scale(1.05);
}

.sector-details {
    flex: 0 0 55%;
    padding: 2rem;
    margin-left: -60px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.sector-item.reverse .sector-details {
    margin-left: 0;
    margin-right: -60px;
}

.sector-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.sector-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.sector-features {
    list-style: none;
    margin-bottom: 0;
}

.sector-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.sector-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .sector-details {
        margin-left: -30px;
        padding: 1.5rem;
    }

    .sector-item.reverse .sector-details {
        margin-right: -30px;
    }

    .sector-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .sector-item {
        flex-direction: column;
        margin-bottom: 2.5rem;
    }

    .sector-item.reverse {
        flex-direction: column;
    }

    .sector-image {
        flex: 0 0 100%;
        margin-bottom: -20px;
        aspect-ratio: 21/9;
    }

    .sector-details {
        flex: 0 0 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 1.2rem;
    }

    .sector-item.reverse .sector-details {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .sectors-content {
        padding: 2rem 0;
    }

    .sector-item {
        margin-bottom: 2rem;
    }

    .sector-image {
        aspect-ratio: 16/9;
    }

    .sector-text h2 {
        font-size: 1.4rem;
    }

    .sector-text p {
        font-size: 0.9rem;
    }

    .sector-features li {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.info-items {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item .icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.info-item .text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.info-item .text p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Contact Form Container */
.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.flex-1 {
    flex: 1;
}

/* Map and Contact Info Grid */
.map-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 15px 0;
    }
    
    .map-info-grid {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .contact-info {
        padding: 20px;
    }
}
