/* ==========================================
   GENERAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #003366;
    --primary-blue: #0066CC;
    --accent-blue: #0099FF;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    
    /* Spacing */
    --section-padding: 40px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar__container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.navbar__logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.navbar__logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.navbar__logo-subtitle {
    font-size: 0.75rem;
    color: white;
    font-weight: 400;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 90px;
    flex: 1;
    justify-content: center;
}

.navbar__menu-item {
    color: #0099FF; 
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.navbar__menu-item:hover {
    color: #0099FF;
}

.navbar__menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.navbar__menu-item:hover::after {
    width: 100%;
}

.navbar__menu-icon {
    width: 22px;
    height: 22px;
    stroke: #0099FF;
    transition: all 0.3s ease;
}

.navbar__menu-item:hover .navbar__menu-icon {
    stroke: #0099FF;
    transform: scale(1.1);
}

/* Dropdown Styles */
.navbar__dropdown {
    position: relative;
}

.navbar__menu-item--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.navbar__dropdown-arrow {
    width: 16px;
    height: 16px;
    stroke: #0099FF;
    transition: transform 0.3s ease;
}

.navbar__dropdown:hover .navbar__dropdown-arrow {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar__dropdown-item:hover {
    background: #f8f9fa;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    padding-left: 24px;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar__contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__icon {
    width: 18px;
    height: 18px;
    color: var(--accent-blue);
}

.navbar__contact-item a {
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.navbar__contact-item a:hover {
    color: #0099FF;
}

.navbar__language {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__language--mobile {
    display: none; /* Mobilde görünecek */
}

.language-btn {
    background: none;
    border: none;
    color: #0099FF;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-btn.active {
    background: var(--accent-blue);
    color: var(--white);
}

.language-btn:hover:not(.active) {
    color: var(--accent-blue);
}

.language-divider {
    color: rgba(231, 76, 60, 0.3);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero__card {
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.hero__btn {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero__btn:hover {
    background: #0099FF;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero__dot.active {
    background: var(--accent-blue);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero__dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero Static (for corporate page) */
.hero--static {
    height: 60vh;
    min-height: 500px;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(220, 20, 60, 0.1));
}

.about__content {
    padding: 20px 0;
}

.about__content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about__intro {
    font-size: 1.2rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about__text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-blue);
}

.about__highlight-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.about__highlight p {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.6;
}

/* ==========================================
   REFERENCES SECTION
   ========================================== */
.references {
    padding: var(--section-padding);
}

.references .container {
    max-width: 1200px;
}

.references__slider {
    position: relative;
    overflow: hidden;
    margin: 50px 0 0;
    width: 100%;
}

.references__track {
    display: flex;
    transition: transform 0.6s ease;
}

.references__slide {
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0;
}

.references__item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    transition: all 0.3s ease;
}

.references__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.references__logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.references__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.references__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.references__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C4C4C4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.references__dot.active {
    background: var(--accent-blue);
    transform: scale(1.3);
}

.references__dot:hover {
    background: var(--primary-blue);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.services__item {
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services__item:hover {
    background: var(--white);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.services__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-blue);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.services__item:hover .services__icon {
    background: var(--primary-blue);
    transform: scale(1.1) rotate(5deg);
}

.services__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.services__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.services__description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits {
    padding: var(--section-padding);
    background: var(--white);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefits__item {
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefits__item:hover {
    background: var(--white);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.benefits__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-blue);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefits__item:hover .benefits__icon {
    background: var(--primary-blue);
    transform: scale(1.1) rotate(5deg);
}

.benefits__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.benefits__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.benefits__description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.benefits__bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(139, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.benefits__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), #66B3FF);
    border-radius: 10px;
    transition: width 1.5s ease;
    width: 0;
}

.benefits__bar-label {
    position: absolute;
    right: 0;
    top: -28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-blue);
}

/* ==========================================
   CORPORATE ABOUT SECTION
   ========================================== */
.corporate-about {
    padding: var(--section-padding);
    background: var(--white);
}

.corporate-about__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.corporate-about__content {
    padding: 20px 0;
}

.corporate-about__text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.corporate-about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-blue);
}

.stat-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card__icon {
    background: linear-gradient(135deg, var(--accent-blue), #B91C1C);
    transform: scale(1.1) rotate(5deg);
}

.stat-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.stat-card__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.stat-card__label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   CORPORATE VALUES SECTION
   ========================================== */
.corporate-values {
    padding: var(--section-padding);
}

.corporate-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-blue);
}

.value-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), #66B3FF);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-card__icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    transform: scale(1.15) rotate(360deg);
}

.value-card__icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--white);
}

.value-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.value-card__description {
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Active menu item */
.navbar__menu-item--active {
    color: var(--accent-blue);
}

.navbar__menu-item--active::after {
    width: 100%;
}

/* Hamburger Menu Button */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.navbar__hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-dark);  
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ==========================================
   REFERENCES PAGE
   ========================================== */
.references-page {
    padding: var(--section-padding);
}

.reference-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.reference-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.reference-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.reference-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.reference-card:hover .reference-card__image img {
    transform: scale(1.1);
}

.reference-card__content {
    padding: 30px;
}

.reference-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.reference-card__description {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px;
}

.reference-card__btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.reference-card__btn:hover {
    background: linear-gradient(135deg, var(--accent-blue), #B91C1C);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer__heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__icon {
    width: 18px;
    height: 18px;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer__list a:hover {
    color: var(--accent-blue);
}

.footer__list--brands li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   BRAND DETAIL PAGE
   ========================================== */
.brand-detail {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.brand-detail__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.brand-detail__image {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 120px;
}

.brand-detail__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-detail__content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brand-detail__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--accent-blue);
    padding-bottom: 15px;
}

.brand-detail__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.brand-detail__text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 30px 0 20px;
}

.brand-detail__text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.brand-detail__text ul li {
    font-size: 1.05rem;
    color: #555;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.brand-detail__text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 968px) {
    .section-title {
        font-size: 2rem;
    }
    
    .navbar__hamburger {
        display: flex;
    }
    
    .navbar__logo-image {
        height: 40px;
        max-width: 200px;
        object-fit: contain;
    }
    
    .navbar__language--desktop {
        display: none;
    }
    
    .navbar__language--mobile {
        display: flex;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .navbar__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(139, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        order: 3;
        border-top: none;
    }
    
    .navbar__menu.active {
        left: 0;
    }
    
    .navbar__menu-item {
        width: 100%;
        text-align: center;
        padding: 18px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }
    
    .navbar__menu-item::after {
        display: none;
    }
    
    /* Mobilde dropdown toggle sistemi */
    .navbar__menu-item--dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        pointer-events: auto;
    }
    
    .navbar__dropdown-arrow {
        display: block;
        width: 32px;
        height: 32px;
        stroke: #fff;
        transition: transform 0.3s ease;
        cursor: pointer;
        padding: 5px;
        margin: -5px;
    }
    
    .navbar__dropdown.active .navbar__dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .navbar__dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 0;
        margin: 0;
        min-width: auto;
        transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .navbar__dropdown.active .navbar__dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
    }
    
    .navbar__dropdown-item {
        width: 100%;
        text-align: center;
        padding: 15px 18px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-left: none;
        background: transparent;
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .navbar__dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 18px;
        border-left: none;
    }
    
    .navbar__right {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(139, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        transition: left 0.4s ease;
        z-index: 998;
        margin-top: calc(100vh - 80px);
    }
    
    .navbar__right.active {
        left: 0;
        margin-top: 0;
    }
    
    .navbar__contact {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .navbar__contact-item {
        justify-content: center;
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero__card {
        padding: 40px 35px;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__content .section-title {
        text-align: center;
    }
    
    .references__slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .references__item {
        height: 140px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .corporate-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .corporate-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reference-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .brand-detail__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-detail__image {
        position: static;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .navbar__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    .navbar__logo {
        text-align: left;
    }
    
    .navbar__logo-title {
        font-size: 1.1rem;
    }
    
    .navbar__logo-subtitle {
        font-size: 0.65rem;
    }
    
    .navbar__hamburger {
        display: flex;
        order: 3;
    }
    
    .navbar__language--desktop {
        display: none;
    }
    
    .navbar__language--mobile {
        display: flex;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .navbar__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 51, 102, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .navbar__menu.active {
        left: 0;
        background-color: #003366;
    }
    
    .navbar__menu-item {
        width: 100%;
        text-align: center;
        padding: 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }
    
    .navbar__menu-item::after {
        display: none;
    }
    
    .navbar__menu-icon {
        width: 28px;
        height: 28px;
    }
    
    .navbar__right {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(139, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        transition: left 0.4s ease;
        z-index: 998;
        margin-top: calc(100vh - 80px);
    }
    
    .navbar__right.active {
        left: 0;
        margin-top: 0;
    }
    
    .navbar__contact {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .navbar__contact-item {
        justify-content: center;
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    
    .hero {
        min-height: 500px;
        margin-top: 80px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
    }
    
    .hero__card {
        padding: 30px 20px;
    }
    
    .hero__btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .references__slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references__item {
        height: 120px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-about__grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-about__stats {
        grid-template-columns: 1fr;
    }
    
    .corporate-values__grid {
        grid-template-columns: 1fr;
    }
    
    .reference-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reference-card__image {
        height: 200px;
    }
    
    .reference-card__title {
        font-size: 1.3rem;
    }
    
    .stat-card__number {
        font-size: 2rem;
    }
    
    .hero--static {
        min-height: 400px;
    }
    
    .testimonials__item {
        padding: 30px 20px;
    }
    
    .testimonials__text {
        font-size: 1rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-detail__content {
        padding: 30px 25px;
    }
    
    .brand-detail__title {
        font-size: 2rem;
    }
    
    .brand-detail__text p,
    .brand-detail__text ul li {
        font-size: 1rem;
    }
}

/* ==========================================
   GALLERY PAGE
   ========================================== */
.gallery-page {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__icon {
    width: 50px;
    height: 50px;
    color: var(--white);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__icon {
    transform: scale(1);
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox__close:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: rotate(90deg);
}

.lightbox__close svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.lightbox__prev,
.lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__prev svg,
.lightbox__next svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

/* Gallery Page Responsive */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .lightbox__prev {
        left: 20px;
    }
    
    .lightbox__next {
        right: 20px;
    }
    
    .lightbox__close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item__icon {
        width: 40px;
        height: 40px;
    }
    
    .lightbox__prev,
    .lightbox__next {
        width: 50px;
        height: 50px;
    }
    
    .lightbox__prev {
        left: 15px;
    }
    
    .lightbox__next {
        right: 15px;
    }
    
    .lightbox__close {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
    
    .lightbox__content {
        max-width: 95%;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.contact-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(220, 20, 60, 0.2);
}

.contact-info__item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 15px;
}

.contact-info__item:hover {
    background: var(--light-gray);
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info__item:hover .contact-info__icon {
    background: linear-gradient(135deg, var(--accent-blue), #B91C1C);
    transform: rotate(10deg) scale(1.1);
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-info__content {
    flex: 1;
}

.contact-info__content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-info__content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info__content p:last-child {
    margin-bottom: 0;
}

.contact-info__content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info__content a:hover {
    color: var(--accent-blue);
}

/* Social Links */
.contact-info__social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(220, 20, 60, 0.1);
    justify-content: center;
}

.contact-info__social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-info__social-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    transform: translateY(-5px);
}

.contact-info__social-link svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.contact-info__social-link:hover svg {
    color: var(--white);
}

/* Contact Map Card */
.contact-card--map {
    padding: 0;
    overflow: hidden;
}

.contact-card--map .contact-card__title {
    padding: 30px 40px 20px;
    margin-bottom: 0;
    border-bottom: 2px solid rgba(220, 20, 60, 0.2);
}

.contact-map {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.contact-map__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.contact-map__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-map__link:hover .contact-map__overlay {
    opacity: 1;
}

.contact-map__overlay svg {
    width: 60px;
    height: 60px;
    color: var(--white);
    stroke-width: 2.5;
    animation: bounce 1s ease-in-out infinite;
}

.contact-map__overlay span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 35px;
    }
    
    .contact-card__title {
        font-size: 1.6rem;
        padding-bottom: 18px;
    }
    
    .contact-info__item {
        gap: 15px;
        padding: 18px;
    }
    
    .contact-map {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .contact-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .contact-card__title {
        font-size: 1.4rem;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .contact-info__item {
        gap: 12px;
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .contact-info__icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .contact-info__icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-info__content h4 {
        font-size: 1rem;
    }
    
    .contact-info__content p {
        font-size: 0.85rem;
    }
    
    .contact-info__social {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .contact-info__social-link {
        width: 45px;
        height: 45px;
    }
    
    .contact-info__social-link svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .contact-map__overlay svg {
        width: 50px;
        height: 50px;
    }
    
    .contact-map__overlay span {
        font-size: 1.1rem;
    }
}

/* ==========================================
   PDF SECTION
   ========================================== */
.pdf-section {
    padding: var(--section-padding);
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pdf-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pdf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.pdf-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pdf-card:hover .pdf-card__icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    transform: scale(1.1);
}

.pdf-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.pdf-card__content {
    width: 100%;
}

.pdf-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.pdf-card__description {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.pdf-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-family);
}

.pdf-card__btn:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

.pdf-card__btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

/* PDF Section Responsive */
@media (max-width: 968px) {
    .pdf-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .pdf-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pdf-card {
        padding: 30px 20px;
    }
    
    .pdf-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .pdf-card__icon svg {
        width: 35px;
        height: 35px;
    }
    
    .pdf-card__title {
        font-size: 1.2rem;
    }
}
