/* ===== CSS Variables ===== */
:root {
    /* Ana renk paleti - #AA8D4A (Altın/Bronz) */
    --primary-color: #AA8D4A;        /* Ana renk - Altın/Bronz */
    --primary-dark: #8B7340;         /* Koyu altın */
    --primary-darker: #6B5A30;       /* Çok koyu altın */
    --primary-light: #C4A85C;        /* Açık altın */
    --primary-lighter: #E5D4A8;      /* Çok açık altın/Krem */
    
    /* Tamamlayıcı renkler - Belirtilen renkler */
    --complementary-blue: #0385E1;  /* Tamamlayıcı açık mavi */
    --complementary-dark: #001024;   /* Tamamlayıcı koyu mavi/navy */
    --complementary-blue-light: #4AA5E8;  /* Açık mavi tonu */
    --complementary-blue-dark: #0266B3;   /* Koyu mavi tonu */
    
    /* Vurgu renkleri */
    --accent-red: #C45A4A;          /* Altın ile uyumlu kırmızı */
    --accent-green: #6B8B4A;        /* Altın ile uyumlu yeşil */
    
    /* Logo renkleri */
    --logo-primary: #AA8D4A;        /* Logo ana rengi */
    --logo-secondary: #0385E1;      /* Logo ikincil rengi (tamamlayıcı mavi) */
    --logo-accent: #C4A85C;         /* Logo vurgu rengi */
    
    /* Temel renkler */
    --white: #ffffff;
    --light-gray: #F5F3F0;          /* Altın tonlarına uyumlu açık gri */
    --gray: #8B8B7A;                 /* Altın tonlarına uyumlu gri */
    --dark-gray: #3A3A30;            /* Koyu gri */
    
    /* Gölgeler - Ana renge uyumlu */
    --shadow: rgba(170, 141, 74, 0.1);
    --shadow-md: rgba(170, 141, 74, 0.15);
    --shadow-lg: rgba(170, 141, 74, 0.2);
    
    /* Geçişler */
    --transition: all 0.3s ease;
    
    /* Geriye dönük uyumluluk için eski değişkenler */
    --primary-blue: #0385E1;
    --dark-blue: #001024;
    --light-blue: #4AA5E8;
    --gold: #AA8D4A;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== Page Loader Spinner ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-icon {
    font-size: 60px;
    color: var(--primary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.loader-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--complementary-dark);
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Loader */
@media (max-width: 768px) {
    .loader-icon {
        font-size: 50px;
    }
    
    .loader-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .loader-icon {
        font-size: 40px;
    }
    
    .loader-text {
        font-size: 14px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Header Top Bar ===== */
.header-top {
    background: var(--complementary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

/* Hide header-top on screens below 1200px */
@media (max-width: 1199px) {
    .header-top {
        display: none;
    }
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours i {
    color: var(--primary-color);
}

.separator {
    margin: 0 5px;
    opacity: 0.7;
}

.header-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.header-contact a:hover {
    color: var(--gold);
}

.header-contact i {
    color: var(--primary-light);
}

/* ===== Main Header ===== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.header-content .main-nav {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 20px;
    color: var(--logo-primary);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--complementary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-icon:hover img {
    transform: scale(1.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo .logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.main-nav a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-md);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* ===== Modern Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 550px;
    overflow: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    transform: scale(1.1);
    transition: transform 8s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 16, 36, 0.75) 0%, 
        rgba(170, 141, 74, 0.6) 50%, 
        rgba(0, 16, 36, 0.8) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 800px;
    color: var(--white);
    padding: 40px 0 80px 0;
    animation: slideInUp 1s ease-out;
    min-height: 100%;
    box-sizing: border-box;
}

.slide[data-slide="1"] .container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.slide[data-slide="1"] .slide-content {
    text-align: right;
    align-items: flex-end;
    animation: slideInRight 1s ease-out;
}

.slide[data-slide="1"] .title-line-1,
.slide[data-slide="1"] .title-line-2 {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.slide[data-slide="1"] .title-line-2 {
    animation-delay: 0.6s;
}

.slide[data-slide="1"] .slide-description {
    animation: fadeInRight 0.8s ease-out 0.8s both;
}

.slide[data-slide="1"] .slide-features {
    animation: fadeInRight 0.8s ease-out 1s both;
    justify-content: flex-end;
}

.slide[data-slide="1"] .slide-actions {
    animation: fadeInRight 0.8s ease-out 1.2s both;
    justify-content: flex-end;
}

.slide[data-slide="3"] .container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.slide[data-slide="3"] .slide-content {
    text-align: right;
    align-items: flex-end;
    animation: slideInRight 1s ease-out;
}

.slide[data-slide="3"] .title-line-1,
.slide[data-slide="3"] .title-line-2 {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.slide[data-slide="3"] .title-line-2 {
    animation-delay: 0.6s;
}

.slide[data-slide="3"] .slide-description {
    animation: fadeInRight 0.8s ease-out 0.8s both;
}

.slide[data-slide="3"] .slide-features {
    animation: fadeInRight 0.8s ease-out 1s both;
    justify-content: flex-end;
}

.slide[data-slide="3"] .slide-actions {
    animation: fadeInRight 0.8s ease-out 1.2s both;
    justify-content: flex-end;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: rgba(170, 141, 74, 0.9);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
    animation: fadeInDown 0.8s ease-out 0.2s both;
    flex-shrink: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.title-line-1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.title-line-2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.slide-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.3);
    z-index: -1;
}

.slide-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    flex-shrink: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 1s both;
    flex-shrink: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.2s both;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 20px;
}

.btn-slider-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(170, 141, 74, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-slider-primary:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(170, 141, 74, 0.6);
}

.btn-slider-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-slider-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}


/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(170, 141, 74, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active:hover {
    background: var(--primary-light);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.arrow span {
    width: 2px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
}

.arrow span:nth-child(2) {
    transform: rotate(-45deg);
    margin-left: 5px;
}

/* Responsive Design for Slider */
@media (max-width: 1200px) {
    .hero-slider {
        height: 70vh;
        min-height: 520px;
        max-height: 800px;
    }
    
    .slide-content {
        padding: 50px 0 80px 0;
        max-width: 700px;
    }
    
    .title-line-1 {
        font-size: 42px;
    }
    
    .title-line-2 {
        font-size: 32px;
    }
    
    .slide-description {
        font-size: 15px;
        max-width: 550px;
    }
    
    .slide-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 9px 17px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 65vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .slide-content {
        padding: 40px 0 70px 0;
        max-width: 100%;
    }
    
    .slide-badge {
        padding: 6px 16px;
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .title-line-1 {
        font-size: 36px;
    }
    
    .title-line-2 {
        font-size: 28px;
    }
    
    .slide-title {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 22px;
        line-height: 1.6;
    }
    
    .slide-features {
        gap: 12px;
        margin-bottom: 22px;
    }
    
    .feature-item {
        padding: 9px 16px;
        font-size: 13px;
    }
    
    .slide-actions {
        gap: 13px;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        padding: 13px 28px;
        font-size: 14px;
    }
    
    .scroll-indicator {
        bottom: 75px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
        max-height: 600px;
    }
    
    .hero-slider .container {
        padding: 0 15px;
    }
    
    .slide[data-slide="1"] .container {
        justify-content: center;
    }
    
    .slide[data-slide="3"] .container {
        justify-content: center;
    }
    
    .slide-content {
        display: none;
    }
    
    .slide-background {
        background-size: cover;
        background-position: center;
        transform: scale(1.05);
    }
    
    .slide.active .slide-background {
        transform: scale(1);
    }
    
    .slide-overlay {
        background: linear-gradient(135deg, 
            rgba(0, 16, 36, 0.8) 0%, 
            rgba(170, 141, 74, 0.65) 50%, 
            rgba(0, 16, 36, 0.85) 100%);
    }
    
    .slide-badge {
        padding: 6px 15px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .title-line-1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .title-line-2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .slide-title {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .feature-item i {
        font-size: 14px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 30px;
    }
    
    .scroll-indicator {
        bottom: 60px;
        display: none;
    }
}

/* Tablet Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 80vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .slide-content {
        padding: 20px 0 50px 0;
    }
    
    .slide-badge {
        padding: 5px 14px;
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .title-line-1 {
        font-size: 26px;
    }
    
    .title-line-2 {
        font-size: 20px;
    }
    
    .slide-title {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .slide-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        padding: 6px 12px;
        font-size: 11px;
        width: auto;
    }
    
    .slide-actions {
        flex-direction: row;
        gap: 10px;
        width: auto;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        width: auto;
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .hero-slider {
        height: 55vh;
        min-height: 400px;
        max-height: 550px;
    }
    
    .hero-slider .container {
        padding: 0 15px;
    }
    
    .slide-content {
        padding: 25px 0 50px 0;
    }
    
    .slide-badge {
        padding: 5px 14px;
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .title-line-1 {
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    
    .title-line-2 {
        font-size: 20px;
    }
    
    .slide-title {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .slide-features {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .feature-item {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .feature-item i {
        font-size: 12px;
    }
    
    .slide-actions {
        gap: 10px;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        padding: 11px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
    .hero-slider {
        height: 50vh;
        min-height: 380px;
        max-height: 500px;
    }
    
    .hero-slider .container {
        padding: 0 12px;
    }
    
    .slide-content {
        padding: 25px 0 50px 0;
    }
    
    .slide-badge {
        padding: 5px 14px;
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .title-line-1 {
        font-size: 22px;
        letter-spacing: -0.5px;
    }
    
    .title-line-2 {
        font-size: 18px;
    }
    
    .slide-title {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 12px;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .slide-features {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .feature-item {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .feature-item i {
        font-size: 12px;
    }
    
    .slide-actions {
        gap: 10px;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        padding: 11px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 767px) and (orientation: landscape) and (min-width: 480px) {
    .hero-slider {
        height: 90vh;
        min-height: 350px;
        max-height: 450px;
    }
    
    .slide-content {
        padding: 15px 0 40px 0;
    }
    
    .slide-badge {
        padding: 4px 12px;
        font-size: 9px;
        margin-bottom: 10px;
    }
    
    .title-line-1 {
        font-size: 20px;
    }
    
    .title-line-2 {
        font-size: 16px;
    }
    
    .slide-title {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .slide-description {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .slide-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .feature-item {
        padding: 5px 10px;
        font-size: 10px;
        width: auto;
    }
    
    .feature-item i {
        font-size: 10px;
    }
    
    .slide-actions {
        flex-direction: row;
        gap: 8px;
        width: auto;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        width: auto;
        padding: 9px 18px;
        font-size: 11px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
        max-height: 480px;
    }
    
    .hero-slider .container {
        padding: 0 10px;
    }
    
    .slide-content {
        padding: 20px 0 45px 0;
    }
    
    .slide-badge {
        padding: 4px 12px;
        font-size: 9px;
        margin-bottom: 10px;
    }
    
    .title-line-1 {
        font-size: 20px;
        letter-spacing: -0.3px;
    }
    
    .title-line-2 {
        font-size: 16px;
    }
    
    .slide-title {
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 11px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .slide-features {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .feature-item i {
        font-size: 11px;
    }
    
    .slide-actions {
        gap: 8px;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .slider-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .indicator {
        width: 7px;
        height: 7px;
    }
    
    .indicator.active {
        width: 20px;
    }
}

/* Extra Small Mobile (max-width: 359px) */
@media (max-width: 359px) {
    .hero-slider {
        height: 45vh;
        min-height: 320px;
        max-height: 420px;
    }
    
    .hero-slider .container {
        padding: 0 8px;
    }
    
    .slide-content {
        padding: 18px 0 40px 0;
    }
    
    .slide-badge {
        padding: 4px 10px;
        font-size: 8px;
        margin-bottom: 8px;
    }
    
    .title-line-1 {
        font-size: 18px;
    }
    
    .title-line-2 {
        font-size: 14px;
    }
    
    .slide-title {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .slide-description {
        font-size: 10px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .slide-features {
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .feature-item {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .feature-item i {
        font-size: 10px;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
        padding: 9px 16px;
        font-size: 10px;
    }
    
    .slider-indicators {
        bottom: 10px;
        gap: 5px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .indicator.active {
        width: 18px;
    }
}

/* ===== Product Categories Section - Modern Design ===== */
.product-categories {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(170, 141, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Modern Section Header */
.section-header-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: start;
}

.section-header-left {
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.section-title-modern {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--complementary-dark);
    margin: 0;
}

.section-title-modern .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.section-title-modern .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.section-header-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
}

.experience-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.15);
    transition: var(--transition);
    width: fit-content;
}

.experience-badge-modern:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.3);
}

.experience-badge-modern i {
    font-size: 18px;
}

/* Categories Carousel */
.categories-carousel-wrapper {
    position: relative;
    padding: 0 0 15px;
    margin-top: -20px;
}

.categories-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: visible;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
}

.categories-carousel::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .categories-carousel-wrapper {
        overflow-x: hidden;
        padding: 0 0 15px;
        width: 100%;
    }
    
    .categories-carousel {
        grid-template-columns: repeat(3, 100%);
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .categories-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .category-card-modern {
        min-width: calc(100% - 40px);
        scroll-snap-align: center;
    }
    
    .category-image-modern {
        height: 500px;
    }
}

.category-card-modern {
    scroll-snap-align: start;
    min-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-image-modern {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.category-card-modern:hover .category-image-modern {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.category-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0.85) 0%, 
        rgba(170, 141, 74, 0.75) 50%,
        rgba(0, 16, 36, 0.9) 100%);
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    color: var(--white);
    transition: var(--transition);
    justify-content: space-between;
}

.category-card-modern:hover .category-overlay-modern {
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0.9) 0%, 
        rgba(170, 141, 74, 0.8) 50%,
        rgba(0, 16, 36, 0.95) 100%);
}

.category-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    font-family: 'Arial', sans-serif;
    z-index: 1;
    pointer-events: none;
}

.category-icon-modern {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.3), rgba(170, 141, 74, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 32px;
    color: var(--primary-light);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.category-icon-modern i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.category-card-modern:hover .category-icon-modern {
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.4), rgba(170, 141, 74, 0.3));
    transform: scale(1.05) translateY(-3px);
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
    color: var(--white);
}

.category-title-modern {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
    color: var(--white);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.category-list-modern {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    flex: 1;
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 0;
}

.category-list-modern li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.category-list-modern li:last-child {
    border-bottom: none;
}

.category-list-modern li:hover {
    padding-left: 10px;
    color: var(--white);
}

.category-list-modern li i {
    color: var(--primary-light);
    font-size: 12px;
}

.btn-category-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 100%;
}

.btn-category-modern:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(170, 141, 74, 0.4);
    gap: 15px;
}

.btn-category-modern i {
    transition: var(--transition);
}

.btn-category-modern:hover i {
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: none; /* Varsayılan olarak gizli */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.15);
}

/* 3 kart yan yana gelmediğinde okları göster */
@media (max-width: 1024px) {
    .carousel-nav-btn {
        display: flex;
    }
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.3);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: none; /* Varsayılan olarak gizli */
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(170, 141, 74, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

/* 3 kart yan yana gelmediğinde noktaları göster */
@media (max-width: 1024px) {
    .carousel-dots {
        display: flex;
    }
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(170, 141, 74, 0.5);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* ===== About Us Section - Modern Design ===== */
.about-us-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about-us-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(170, 141, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Text Content */
.about-text-modern {
    position: relative;
    display: flex;
    height: 100%;
}

.about-text-wrapper {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--complementary-blue));
}

.section-badge-about {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.about-subtitle-modern {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-title-modern {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--complementary-dark);
    margin-bottom: 25px;
}

.about-title-modern .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.about-title-modern .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.about-description-modern {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-subtitle-modern {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-cta-wrapper {
    margin-top: 35px;
    margin-bottom: 30px;
}

.about-contact-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.about-contact-btn-modern:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
}

.about-contact-btn-modern i {
    transition: var(--transition);
}

.about-contact-btn-modern:hover i {
    transform: translateX(5px);
}

.about-signature-modern {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(170, 141, 74, 0.15);
}

.signature-line-modern {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-bottom: 15px;
    border-radius: 2px;
}

.signature-text-modern {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.signature-name-modern {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.signature-tagline-modern {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    font-style: italic;
}

/* ===== Certificates Section ===== */
.certificates-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.03) 0%, rgba(3, 133, 225, 0.03) 100%);
    position: relative;
}

.certificates-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-certificates {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.certificates-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--complementary-dark);
    margin: 0 0 20px 0;
}

.certificates-title .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.certificates-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.certificates-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.certificate-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(170, 141, 74, 0.2);
    border-color: var(--primary-color);
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(170, 141, 74, 0.3);
    transition: var(--transition);
}

.certificate-card:hover .certificate-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(170, 141, 74, 0.4);
}

.certificate-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin: 0 0 10px 0;
}

.certificate-description {
    font-size: 15px;
    color: var(--gray);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.certificate-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(3, 133, 225, 0.1));
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(170, 141, 74, 0.2);
}

/* ===== Mission & Vision Section - Modern Minimal Design ===== */
.mission-vision-section {
    padding: 60px 0 120px;
    background: var(--white);
    position: relative;
}

.mission-vision-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
    position: relative;
}

.section-badge-mission {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.mission-vision-main-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--complementary-dark);
    margin: 0;
    line-height: 1.2;
}

.mission-vision-main-title .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.mission-vision-main-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-vision-card {
    background: transparent;
    padding: 0;
    position: relative;
    transition: var(--transition);
}

.mission-vision-number {
    font-size: 120px;
    font-weight: 900;
    color: rgba(170, 141, 74, 0.05);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 0;
    font-family: 'Arial', sans-serif;
    transition: var(--transition);
}

.mission-vision-card:hover .mission-vision-number {
    color: rgba(170, 141, 74, 0.08);
    transform: translateY(-5px);
}

.mission-vision-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
    z-index: 1;
}

.mission-vision-icon-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    transition: var(--transition);
}

.mission-vision-card:hover .mission-vision-icon-line {
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.mission-vision-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
    position: relative;
}

.mission-vision-card:hover .mission-vision-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(170, 141, 74, 0.2);
}

.mission-vision-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.mission-vision-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Certificates */
@media (max-width: 992px) {
    .certificates-section {
        padding: 60px 0 80px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .certificate-card {
        padding: 35px 25px;
    }
    
    .certificate-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .certificate-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 50px 0 70px;
    }
    
    .certificates-header {
        margin-bottom: 40px;
    }
    
    .certificates-title {
        font-size: 30px;
    }
    
    .certificates-description {
        font-size: 15px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .certificate-card {
        padding: 30px 20px;
    }
    
    .certificate-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .certificate-title {
        font-size: 20px;
    }
    
    .certificate-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .certificates-section {
        padding: 40px 0 60px;
    }
    
    .certificates-header {
        margin-bottom: 30px;
    }
    
    .section-badge-certificates {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .certificates-title {
        font-size: 26px;
    }
    
    .certificates-description {
        font-size: 14px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .certificate-card {
        padding: 30px 20px;
    }
}

/* Responsive Design for Mission & Vision */
@media (max-width: 992px) {
    .mission-vision-section {
        padding: 100px 0;
    }
    
    .mission-vision-content {
        gap: 50px;
    }
    
    .mission-vision-main-title {
        font-size: 32px;
    }
    
    .mission-vision-number {
        font-size: 100px;
    }
    
    .mission-vision-title {
        font-size: 22px;
    }
    
    .mission-vision-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 40px 0 80px;
    }
    
    .mission-vision-header {
        margin-bottom: 40px;
        margin-top: 0;
    }
    
    .mission-vision-main-title {
        font-size: 30px;
    }
    
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-vision-number {
        font-size: 90px;
        top: -15px;
    }
    
    .mission-vision-icon-wrapper {
        margin-bottom: 25px;
    }
    
    .mission-vision-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .mission-vision-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .mission-vision-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 30px 0 60px;
    }
    
    .mission-vision-header {
        margin-bottom: 35px;
        margin-top: 0;
    }
    
    .section-badge-mission {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .mission-vision-main-title {
        font-size: 26px;
    }
    
    .mission-vision-content {
        gap: 40px;
    }
    
    .mission-vision-number {
        font-size: 70px;
        top: -10px;
    }
    
    .mission-vision-icon-wrapper {
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .mission-vision-icon-line {
        width: 2px;
        height: 40px;
    }
    
    .mission-vision-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .mission-vision-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .mission-vision-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Products Grid */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.05), rgba(3, 133, 225, 0.05));
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid rgba(170, 141, 74, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.product-item-modern:hover {
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(3, 133, 225, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(170, 141, 74, 0.15);
}

.product-icon-modern {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(170, 141, 74, 0.3);
}

.product-item-modern span {
    font-size: 14px;
    font-weight: 600;
    color: var(--complementary-dark);
}

/* Image Content */
.about-image-modern {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.about-images-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    flex: 1;
}

.image-wrapper-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    flex: 1;
    width: 100%;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.image-wrapper-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0.1) 0%, 
        rgba(170, 141, 74, 0.2) 100%);
    pointer-events: none;
}

.experience-banner-modern {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 20px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(170, 141, 74, 0.4);
    white-space: nowrap;
    z-index: 2;
}

.banner-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.banner-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ===== Products Section - Modern Design ===== */
.products-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 16, 36, 0.02) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.products-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(170, 141, 74, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(3, 133, 225, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.products-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(170, 141, 74, 0.3) 20%, 
        rgba(3, 133, 225, 0.3) 50%, 
        rgba(170, 141, 74, 0.3) 80%, 
        transparent 100%);
    pointer-events: none;
}

.products-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

/* Products Search and Filter Section */
.products-filter-section-modern {
    margin-bottom: 50px;
}

.products-search-filter-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.products-search-wrapper-modern {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.products-search-wrapper-modern i {
    position: absolute;
    left: 20px;
    color: var(--gray);
    font-size: 18px;
    z-index: 1;
}

.products-search-input-modern {
    width: 100%;
    padding: 16px 50px 16px 50px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    color: var(--complementary-dark);
    outline: none;
}

.products-search-input-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(170, 141, 74, 0.1);
}

.products-search-input-modern::placeholder {
    color: var(--gray);
}

.products-search-clear-modern {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    color: var(--white);
    padding: 0;
    margin: 0;
    line-height: 1;
}

.products-search-clear-modern i {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.products-search-clear-modern:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

.products-category-filter-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.category-filter-btn-modern {
    padding: 12px 24px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    background: var(--white);
    color: var(--gray);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.category-filter-btn-modern:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-filter-btn-modern.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.products-results-count-modern {
    font-size: 14px;
    color: var(--gray);
    text-align: right;
    padding-right: 10px;
}

.products-results-count-modern span {
    font-weight: 700;
    color: var(--primary-color);
}

.no-results-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.no-results-content {
    max-width: 400px;
}

.no-results-content i {
    font-size: 64px;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 24px;
    color: var(--complementary-dark);
    margin-bottom: 10px;
}

.no-results-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.section-badge-products {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.products-title-modern {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--complementary-dark);
    margin-bottom: 5px;
}

.products-title-modern .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.products-title-modern .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.products-subtitle-modern {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== New Products Grid ===== */
.products-container-new {
    position: relative;
    padding: 20px 0 40px;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Loading State */
.products-loading-new {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.products-loading-new i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.products-loading-new p {
    font-size: 18px;
    color: var(--gray);
}

/* Empty State */
.products-empty-new {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.products-empty-new i {
    font-size: 48px;
    color: #9ca3af;
    margin-bottom: 20px;
    display: block;
}

.products-empty-new h3 {
    font-size: 24px;
    color: var(--complementary-dark);
    margin-bottom: 10px;
}

.products-empty-new p {
    font-size: 16px;
    color: var(--gray);
}

/* Error State */
.products-error-new {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.products-error-new i {
    font-size: 48px;
    color: #ef4444;
    margin-bottom: 20px;
    display: block;
}

.products-error-new h3 {
    font-size: 24px;
    color: var(--complementary-dark);
    margin-bottom: 10px;
}

.products-error-new p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* New Product Card */
.product-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(170, 141, 74, 0.1);
    height: 100%;
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(170, 141, 74, 0.2);
    border-color: rgba(170, 141, 74, 0.3);
}

.product-image-new {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.05), rgba(3, 133, 225, 0.05));
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-new:hover .product-image-new img {
    transform: scale(1.1);
}

.product-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0) 0%, 
        rgba(170, 141, 74, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-new:hover .product-overlay-new {
    opacity: 1;
}

.product-view-btn-new {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.product-view-btn-new:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-content-new {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--white);
}

.product-category-new {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(170, 141, 74, 0.05));
    border-radius: 20px;
    width: fit-content;
}

.product-title-new {
    font-size: 20px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    flex: 1;
}

.product-description-new {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-link-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    }

.product-link-new:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.product-link-new i {
    transition: transform 0.3s ease;
    }

.product-link-new:hover i {
    transform: translateX(5px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image-new {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .products-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-new {
        height: 220px;
    }
    
    .product-content-new {
        padding: 20px;
    }
}

/* ===== Catalogs Page Layout Overrides ===== */
/* Katalog kartlarının daha modern ve responsive bir grid olarak görünmesi için
   sadece kataloglar sayfasındaki ürün grid'ini yeniden tanımlıyoruz. */
/* Products Grid Wrapper for urunlerimiz.html */
.products-grid-wrapper {
    position: relative;
    padding: 20px 0 40px;
    overflow: visible;
}

/* Products Pagination */
.products-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 20px 0;
}

.products-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    min-width: 44px;
    height: 44px;
    border: 2px solid rgba(170, 141, 74, 0.2);
    background: var(--white);
    color: var(--complementary-dark);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    user-select: none;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 141, 74, 0.3);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(0);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(170, 141, 74, 0.3);
}

.pagination-btn.pagination-number {
    padding: 12px 16px;
    min-width: 44px;
}

.pagination-btn.pagination-prev,
.pagination-btn.pagination-next {
    padding: 12px 20px;
}

.pagination-btn i {
    font-size: 12px;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--gray);
    font-weight: 600;
    user-select: none;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .products-pagination-wrapper {
        margin-top: 40px;
        padding: 15px 0;
    }
    
    .products-pagination {
        gap: 6px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .pagination-btn.pagination-number {
        padding: 10px 14px;
        min-width: 40px;
    }
    
    .pagination-btn.pagination-prev span,
    .pagination-btn.pagination-next span {
        display: none;
    }
    
    .pagination-btn.pagination-prev,
    .pagination-btn.pagination-next {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .products-pagination {
        gap: 4px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        min-width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .pagination-btn.pagination-number {
        padding: 8px 10px;
        min-width: 36px;
    }
    
    .pagination-ellipsis {
        padding: 0 4px;
        font-size: 12px;
    }
}

.catalogs-section .products-grid-wrapper {
    padding: 20px 0 60px;
    overflow: visible;
}

.catalogs-section .products-grid {
    display: grid;
    /* Masaüstünde ekranda net 3 kart gözüksün */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    transform: none !important; /* Slider için kullanılan transform’u katalog sayfasında kapatıyoruz */
}

@media (max-width: 1024px) {
    .catalogs-section .products-grid {
        /* Tablet ve küçük laptoplarda 2 sütuna düş */
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .catalogs-section .products-grid {
        /* Mobilde tek sütun */
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid-wrapper {
        padding-bottom: 60px;
    }
    .products-slider-nav {
        top: auto;
        bottom: -20px;
        justify-content: center;
        gap: 14px;
    }
}

.product-card-modern {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(170, 141, 74, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.product-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--complementary-blue));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.product-card-modern:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(170, 141, 74, 0.25);
    border-color: rgba(170, 141, 74, 0.3);
    opacity: 1;
    z-index: 10;
}

.product-card-modern:hover::before {
    opacity: 1;
}

.product-image-modern {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.05), rgba(3, 133, 225, 0.05));
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.05);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(170, 141, 74, 0) 0%, 
        rgba(170, 141, 74, 0.3) 50%,
        rgba(0, 16, 36, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

.product-view-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    border: 2px solid var(--primary-color);
}

.product-card-modern:hover .product-view-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product-view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(0) scale(1.15);
    box-shadow: 0 12px 35px rgba(170, 141, 74, 0.5);
}

.product-info-modern {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--white);
    position: relative;
}

.product-category-modern {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(170, 141, 74, 0.05));
    border-radius: 15px;
    transition: var(--transition);
}

.product-card-modern:hover .product-category-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 141, 74, 0.3);
}

.product-name-modern {
    font-size: 22px;
    font-weight: 800;
    color: var(--complementary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.product-card-modern:hover .product-name-modern {
    color: var(--primary-color);
}

.product-description-modern {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.1em;
    flex: 1;
}

.product-detail-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(170, 141, 74, 0.05));
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: fit-content;
}

.product-detail-link i {
    font-size: 12px;
    transition: var(--transition);
}

.product-detail-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
    border-color: var(--primary-color);
}

.product-detail-link:hover i {
    transform: translateX(3px);
}

/* Products Section Responsive */
@media (max-width: 1024px) {
    .product-card-modern {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .product-image-modern {
        height: 260px;
    }
    
    .product-info-modern {
        padding: 24px;
    }
    
    .product-name-modern {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .products-carousel {
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .product-card-modern {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    
    .products-carousel-wrapper::before,
    .products-carousel-wrapper::after {
        width: 50px;
    }
    
    .product-image-modern {
        height: 240px;
    }
    
    .product-info-modern {
        padding: 16px;
    }
    
    .product-name-modern {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .product-category-modern {
        font-size: 11px;
        margin-bottom: 6px;
        padding: 4px 10px;
    }
    
    .product-description-modern {
        font-size: 13px;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .product-detail-link {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .product-view-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .products-carousel-nav {
        margin-top: 25px;
        gap: 18px;
    }
    
    .products-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .products-carousel-dots {
        gap: 10px;
        padding: 6px 12px;
    }
    
    .products-carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .products-carousel-dot.active {
        width: 30px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .products-carousel-wrapper {
        padding: 5px 0 40px;
    }
    
    .products-carousel {
        gap: 15px;
    }
    
    .product-card-modern {
        flex: 0 0 calc(100% - 15px);
        min-width: calc(100% - 15px);
        max-width: calc(100% - 15px);
        border-radius: 20px;
    }
    
    .products-carousel-wrapper::before,
    .products-carousel-wrapper::after {
        display: none;
    }
    
    .product-image-modern {
        height: 220px;
    }
    
    .product-info-modern {
        padding: 16px;
    }
    
    .product-name-modern {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .product-category-modern {
        font-size: 11px;
        margin-bottom: 6px;
        padding: 3px 10px;
    }
    
    .product-description-modern {
        font-size: 13px;
        margin-bottom: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .product-detail-link {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .product-detail-link i {
        font-size: 10px;
    }
    
    .product-card-modern:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .products-carousel-nav {
        margin-top: 20px;
        gap: 15px;
    }
    
    .products-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .products-carousel-dots {
        gap: 8px;
        padding: 5px 10px;
    }
    
    .products-carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .products-carousel-dot.active {
        width: 25px;
        height: 7px;
    }
    
    .products-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .products-carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .products-carousel-dot.active {
        width: 30px;
    }
}

/* ===== Service Network Section ===== */
/* Service Network Modern Section */
.service-network-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 50%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}

.service-network-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(170, 141, 74, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(3, 133, 225, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Image Side */
.service-promo-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.service-image-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInLeft 0.8s ease-out;
    border: 1px solid rgba(170, 141, 74, 0.1);
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.05), rgba(3, 133, 225, 0.05));
}

.service-image-modern {
    width: 100%;
    height: 600px !important;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    filter: brightness(0.98);
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0.05) 0%, 
        rgba(170, 141, 74, 0.1) 100%);
    pointer-events: none;
    border-radius: 24px;
    z-index: 1;
}

.service-image-modern:hover {
    transform: scale(1.05);
    filter: brightness(1.02);
}

/* Text Content Side */
.service-text-modern {
    padding: 20px 0;
}

.service-text-wrapper {
    max-width: 100%;
}

.service-title-modern {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.service-subtitle-modern {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.service-description-modern {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 35px;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.service-features-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 0.8s ease-out 0.8s both;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(170, 141, 74, 0.15);
    border-left-color: var(--primary-dark);
}

.service-feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(170, 141, 74, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-feature-item:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

/* Service Network Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes floatGift {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseDiscount {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Legacy styles for backward compatibility */
.service-network {
    padding: 80px 0;
    background: var(--white);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-md);
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

/* ===== Full Width Banner Section ===== */
.full-width-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.full-width-banner-wrapper {
    width: 100%;
    position: relative;
    display: block;
}

.full-width-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 400px;
    max-height: 600px;
}

/* Responsive Design for Full Width Banner */
@media (max-width: 768px) {
    .full-width-banner-image {
        min-height: 300px;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .full-width-banner-image {
        min-height: 250px;
        max-height: 350px;
    }
}

/* ===== Contact Section Modern ===== */
.contact-section-modern {
    padding: 80px 0;
    background: var(--complementary-dark);
    color: var(--white);
    position: relative;
}

/* Contact Header */
.contact-header-modern {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-title-modern {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-subtitle-modern {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Content */
.contact-content-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Map Section */
.contact-map-modern {
    position: relative;
}

.map-wrapper-modern {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.map-wrapper-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Info Panel */
.contact-info-card-modern {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-item-modern {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item-modern:last-child {
    margin-bottom: 0;
}

.contact-icon-wrapper-modern {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper-modern i {
    font-size: 20px;
    color: var(--white);
}

.contact-item-content-modern {
    flex: 1;
}

.contact-item-title-modern {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-item-text-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.contact-link-modern {
    color: var(--primary-light);
    transition: color 0.2s ease;
    text-decoration: none;
}

.contact-link-modern:hover {
    color: var(--white);
}

/* Callback Form */
.callback-form-modern {
    position: relative;
    z-index: 1;
}

.callback-form-wrapper-modern {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.callback-form-header-modern {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.callback-form-header-modern i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.callback-form-title-modern {
    font-size: 26px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin: 0;
    line-height: 1.3;
}

.callback-form-content-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.form-input-wrapper-modern {
    position: relative;
    width: 100%;
}

.form-input-wrapper-modern i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-color);
    z-index: 2;
    pointer-events: none;
}

.callback-input-modern {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: var(--complementary-dark) !important;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.callback-input-modern::placeholder {
    color: #6c757d !important;
    opacity: 1;
}

.callback-input-modern:focus {
    color: var(--complementary-dark) !important;
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(170, 141, 74, 0.1);
}

.callback-input-modern:-webkit-autofill,
.callback-input-modern:-webkit-autofill:hover,
.callback-input-modern:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--complementary-dark) !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.callback-btn-modern {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.callback-btn-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
}

.callback-btn-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.callback-btn-modern:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.form-error-message {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.form-input-wrapper-modern.error {
    border-color: #dc3545;
}

.form-input-wrapper-modern.error .callback-input-modern {
    border-color: #dc3545;
    background: #fff5f5;
}

/* Responsive adjustments for callback form */
@media (max-width: 768px) {
    .callback-form-wrapper-modern {
        padding: 40px 25px;
    }
    
    .callback-form-title-modern {
        font-size: 22px;
    }
    
    .callback-form-header-modern i {
        font-size: 40px;
    }
    
    .callback-form-content-modern {
        gap: 18px;
    }
    
    .callback-input-modern {
        padding: 14px 18px 14px 45px;
        font-size: 14px;
    }
    
    .callback-btn-modern {
        padding: 16px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .callback-form-wrapper-modern {
        padding: 25px 15px;
    }
    
    .callback-form-title-modern {
        font-size: 18px;
    }
    
    .form-input-wrapper-modern i {
        font-size: 16px;
    }
}

.callback-btn-modern i {
    font-size: 14px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--complementary-dark), var(--complementary-blue-dark));
    color: var(--white);
}

.contact-section .section-title.white,
.contact-section .section-subtitle.white {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-light);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.callback-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.callback-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.callback-form form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.callback-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.callback-form button {
    padding: 15px 30px;
}

/* ===== Partners Section ===== */
/* ===== Partners Section Modern ===== */
.partners-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--complementary-dark) 0%, var(--light-gray) 20%, var(--light-gray) 80%, var(--complementary-dark) 100%);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.partners-modern .container {
    max-width: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.partners-header-modern {
    text-align: center;
    margin: 20px auto 50px;
    width: 100%;
    max-width: 100%;
}

.partners-title-modern {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--complementary-dark);
    margin: 0 0 8px 0;
    word-wrap: break-word;
}

.partners-title-modern .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.partners-title-modern .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.partners-slogan-modern {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.partners-slider-wrapper-modern {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-slider-track-modern {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: slidePartners 30s linear infinite;
    will-change: transform;
    width: fit-content;
}

.partners-slider-track-modern.no-animation {
    animation: none;
    justify-content: center;
}

.partner-logo-modern {
    flex-shrink: 0;
    padding: 25px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(170, 141, 74, 0.1);
    min-width: 200px;
    max-width: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.partner-logo-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    z-index: 10;
}

.partner-name-modern {
    font-size: 20px;
    font-weight: 600;
    color: var(--complementary-blue);
    white-space: nowrap;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.partner-logo-modern:hover .partner-name-modern {
    color: var(--primary-color);
}

/* Partners Slider Animation */
@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Legacy styles for backward compatibility */
.partners {
    padding: 50px 0;
    background: var(--light-gray);
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--complementary-blue);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Footer Modern ===== */
.footer-modern {
    background: linear-gradient(180deg, var(--complementary-dark) 0%, #000a18 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Column */
.footer-column-modern {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo-modern {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-description-modern {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Footer Title */
.footer-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-title-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
}

/* Footer List */
.footer-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-list-item-modern:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-list-item-modern i {
    color: var(--primary-color);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-list-item-modern:hover i {
    transform: translateX(3px);
}

.footer-list-item-modern span,
.footer-list-item-modern a {
    flex: 1;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list-item-modern a:hover {
    color: var(--primary-light);
}

/* Footer News */
.footer-news-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-news-item-modern {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.footer-news-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-news-item-modern i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-news-item-modern p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer Contact */
.footer-contact-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.footer-contact-item-modern:hover {
    color: var(--white);
}

.footer-contact-icon-modern {
    width: 40px;
    height: 40px;
    background: rgba(170, 141, 74, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item-modern:hover .footer-contact-icon-modern {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-contact-icon-modern i {
    color: var(--primary-light);
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-contact-item-modern:hover .footer-contact-icon-modern i {
    color: var(--white);
}

.footer-contact-item-modern span,
.footer-contact-item-modern a {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item-modern a:hover {
    color: var(--primary-light);
}

/* Footer Bottom */
.footer-bottom-modern {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-modern {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social-modern {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-link-modern {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link-modern:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(170, 141, 74, 0.3);
}

.footer-social-link-modern i {
    font-size: 16px;
}

/* Legacy styles for backward compatibility */
.main-footer {
    background: var(--complementary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary-light);
}

.footer-column p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li i {
    color: var(--primary-light);
    font-size: 12px;
}

.news-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-item:last-child {
    border-bottom: none;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== Floating Widgets ===== */

.chat-widget {
    background: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-lg);
    width: 300px;
    overflow: hidden;
    transform: translateY(0);
    transition: var(--transition);
}

.chat-widget.hidden {
    transform: translateY(400px);
    opacity: 0;
    pointer-events: none;
}

.chat-header {
    background: var(--complementary-dark);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.chat-close {
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    display: flex;
    gap: 10px;
}

.chat-body input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.chat-body input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chat-send {
    background: var(--primary-light);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(170, 141, 74, 0.4);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    font-size: 20px;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(170, 141, 74, 0.6);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .section-header {
        flex-direction: column;
    }
    
    .about-content,
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .contact-content-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-map-modern {
        order: 2;
    }
    
    .contact-info-modern {
        order: 1;
    }
    
    .map-wrapper-modern {
        height: 400px;
    }
    
    .contact-title-modern {
        font-size: 36px;
    }
    
    .contact-subtitle-modern {
        font-size: 18px;
    }
    
    .map-wrapper-modern {
        height: 400px;
    }
    
    .callback-form-content-modern {
        flex-direction: column;
    }
    
    .callback-btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .experience-banner {
        display: none;
    }

    /* Service Network Responsive */
    .service-content-modern {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .service-promo-modern {
        order: -1;
    }
    
    .service-text-modern {
        align-items: center;
    }
    
    .service-feature-item {
        justify-content: center;
    }
    
    /* Footer Modern Responsive - Tablet */
    .footer-modern {
        padding: 70px 0 25px;
    }
    
    .footer-content-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-title-modern {
        font-size: 19px;
    }
    
    .footer-description-modern {
        font-size: 14px;
    }
}

/* Mobile Menu for screens below 950px */
@media (max-width: 949px) {
    .main-header {
        position: sticky;
        top: 0;
    }
    
    .main-header .container {
        position: relative;
        padding: 0;
    }
    
    .header-content {
        position: relative;
        padding: 15px 20px;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height, 70px);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px var(--shadow);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    }
    
    .main-nav.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease-in, opacity 0.3s ease-in, visibility 0.3s ease-in;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
        align-items: flex-start;
        margin: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .main-nav a.active::after {
        display: none;
    }
    
    .main-nav a.active {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .main-nav a:hover {
        color: var(--primary-color);
        padding-left: 10px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle {
        display: block;
        color: var(--primary-color);
    }
    
    .header-content {
        position: relative;
    }
    
    .header-content .main-nav {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icons {
        display: none;
    }
    
    .title-main {
        font-size: 32px;
    }
    
    .title-sub {
        font-size: 24px;
    }
    
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .hero-carousel-controls {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    /* Footer Modern Responsive */
    .footer-modern {
        padding: 70px 0 25px;
    }
    
    .footer-content-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-title-modern {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-description-modern {
        font-size: 14px;
    }
    
    .footer-list-item-modern {
        padding: 8px 0;
    }
    
    .footer-news-item-modern {
        padding: 15px;
    }
    
    .footer-contact-item-modern {
        gap: 12px;
    }
    
    .footer-contact-icon-modern {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom-content-modern {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-social-modern {
        justify-content: center;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
}

@media (max-width: 640px) {
    /* Footer Modern Responsive - Mobile */
    .footer-modern {
        padding: 50px 0 20px;
    }
    
    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-column-modern {
        text-align: left;
    }
    
    .footer-logo-modern {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 25px;
    }
    
    .footer-logo-img {
        max-width: 140px;
    }
    
    .footer-description-modern {
        text-align: left;
        font-size: 14px;
    }
    
    .footer-title-modern {
        font-size: 17px;
        margin: 0 0 20px 0;
        text-align: left;
        width: fit-content;
    }
    
    .footer-list-modern {
        text-align: left;
    }
    
    .footer-list-item-modern {
        justify-content: flex-start;
        padding: 8px 0;
    }
    
    .footer-contact-modern {
        align-items: flex-start;
    }
    
    .footer-contact-item-modern {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 15px 0;
    }
    
    .footer-contact-icon-modern {
        width: 40px;
        height: 40px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .footer-contact-item-modern span,
    .footer-contact-item-modern a {
        text-align: left;
        font-size: 13px;
    }
    
    .footer-bottom-content-modern {
        gap: 20px;
    }
    
    .footer-copyright-modern {
        font-size: 13px;
    }
    
    .footer-social-link-modern {
        width: 38px;
        height: 38px;
    }
    
    .footer-social-link-modern i {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Footer Modern Responsive - Small Mobile */
    .footer-modern {
        padding: 40px 0 15px;
    }
    
    .footer-content-modern {
        gap: 30px;
    }
    
    .footer-title-modern {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-description-modern {
        font-size: 13px;
    }
    
    .footer-list-item-modern {
        padding: 6px 0;
        font-size: 14px;
    }
    
    .footer-list-item-modern i {
        font-size: 11px;
    }
    
    .footer-contact-item-modern {
        padding: 12px 0;
    }
    
    .footer-contact-icon-modern {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-contact-item-modern span,
    .footer-contact-item-modern a {
        font-size: 12px;
    }
    
    .footer-bottom-content-modern {
        gap: 15px;
    }
    
    .footer-copyright-modern {
        font-size: 12px;
    }
    
    .footer-social-modern {
        gap: 10px;
    }
    
    .footer-social-link-modern {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-link-modern i {
        font-size: 14px;
    }
    
    /* Partners Modern Responsive */
    .partners-modern {
        padding: 70px 0;
    }
    
    .partners-title-modern {
        font-size: 32px;
        margin-bottom: 6px;
    }
    
    .partners-slogan-modern {
        font-size: 17px;
    }
    
    .partners-slider-track-modern {
        gap: 50px;
    }
    
    .partner-logo-modern {
        padding: 22px 35px;
        min-width: 180px;
        max-width: 180px;
        width: 180px;
    }
    
    .partner-name-modern {
        font-size: 19px;
    }
    
    /* Modern Categories Carousel Responsive - Tablet (2 cards) */
    .product-categories {
        padding: 70px 0;
    }
    
    .section-header-modern {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .category-title-modern {
        font-size: 20px;
    }
    
    .categories-carousel-wrapper {
        overflow-x: hidden;
        padding: 0 0 15px;
        width: 100%;
    }
    
    .categories-carousel {
        grid-template-columns: repeat(3, 100%);
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .categories-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .category-card-modern {
        min-width: calc(100% - 40px);
        scroll-snap-align: center;
    }
    
    .category-image-modern {
        height: 420px;
    }
    
    .category-overlay-modern {
        padding: 25px 22px;
    }
    
    .category-icon-modern {
        margin-bottom: 15px;
    }
    
    .category-title-modern {
        margin-bottom: 15px;
    }
    
    .category-list-modern {
        margin-bottom: 15px;
    }
    
    .category-list-modern li {
        padding: 7px 0;
        font-size: 13px;
    }
    
    .btn-category-modern {
        padding: 11px 22px;
        font-size: 13px;
    }
    
    .carousel-nav {
        margin-top: 8px;
    }
    
    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* About Us Modern Responsive */
    .about-us-modern {
        padding: 70px 0;
    }
    
    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-wrapper {
        padding: 40px 35px;
    }
    
    .about-subtitle-modern {
        font-size: 18px;
    }
    
    .about-title-modern {
        font-size: 32px;
    }
    
    .about-contact-btn-modern {
        padding: 13px 30px;
        font-size: 15px;
    }
    
    .signature-name-modern {
        font-size: 16px;
    }
    
    .signature-tagline-modern {
        font-size: 12px;
    }
    
    .about-description-modern {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-text-modern {
        height: auto;
    }
    
    .about-image-modern {
        height: auto;
    }
    
    .about-images-container {
        gap: 15px;
    }
    
    .image-wrapper-modern {
        height: 300px;
        min-height: 300px;
    }
    
    .experience-banner-modern {
        right: -20px;
        padding: 15px 28px;
    }
    
    .banner-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .banner-number {
        font-size: 28px;
    }
    
    .banner-label {
        font-size: 11px;
    }
    
    /* Products Modern Responsive */
    .products-modern {
        padding: 70px 0;
    }
    
    .products-header-modern {
        margin-bottom: 50px;
    }
    
    .products-title-modern {
        font-size: 32px;
    }
    
    .products-subtitle-modern {
        font-size: 16px;
    }
    
    .products-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .product-card-modern {
        min-width: 250px;
    }
    
    .product-image-modern {
        height: 220px;
    }
    
    /* Products Modern Responsive */
    .products-modern {
        padding: 70px 0;
    }
    
    .products-header-modern {
        margin-bottom: 50px;
    }
    
    .products-title-modern {
        font-size: 32px;
    }
    
    .products-subtitle-modern {
        font-size: 16px;
    }
    
    .products-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .product-card-modern {
        min-width: 250px;
    }
    
    .product-image-modern {
        height: 220px;
    }
    
    .products-list {
        grid-template-columns: 1fr;
    }
    
    .callback-form form {
        flex-direction: column;
    }
    
    .chat-widget {
        width: calc(100vw - 40px);
        max-width: 300px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    /* Mobile - Single card carousel */
    .product-categories {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .categories-carousel-wrapper {
        overflow-x: hidden;
        padding: 0 0 15px;
        width: 100%;
        margin-top: -15px;
    }
    
    .categories-carousel {
        grid-template-columns: repeat(3, 100%);
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 15px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .categories-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .category-card-modern {
        min-width: calc(100% - 30px);
        scroll-snap-align: center;
    }
    
    .category-image-modern {
        height: 380px;
        border-radius: 15px;
    }
    
    .category-overlay-modern {
        padding: 22px 18px;
        border-radius: 15px;
    }
    
    .category-icon-modern {
        margin-bottom: 15px;
    }
    
    .category-title-modern {
        margin-bottom: 15px;
    }
    
    .category-list-modern {
        margin-bottom: 15px;
    }
    
    .category-list-modern li {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .btn-category-modern {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .category-number {
        font-size: 60px;
        top: 15px;
        right: 15px;
    }
    
    .category-icon-modern {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
        font-size: 24px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, rgba(170, 141, 74, 0.3), rgba(170, 141, 74, 0.2));
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
    
    .category-title-modern {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .category-list-modern {
        margin-bottom: 20px;
    }
    
    .category-list-modern li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .category-list-modern li i {
        font-size: 10px;
    }
    
    .btn-category-modern {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .carousel-nav {
        display: flex;
        margin-top: 8px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .service-network-modern {
        padding: 50px 0;
    }
    
    .service-content-modern {
        gap: 30px;
    }
    
    .service-promo-modern {
        padding: 20px;
        gap: 30px;
    }
    
    .promo-badge-wrapper {
        gap: 10px;
    }
    
    .promo-badge-item {
        width: 50px;
        height: 65px;
    }
    
    .badge-letter {
        font-size: 26px;
    }
    
    .promo-visual-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .promo-gift-box {
        width: 120px;
        height: 120px;
    }
    
    .gift-box-body {
        height: 95px;
    }
    
    .discount-number {
        font-size: 70px;
    }
    
    .discount-percent {
        font-size: 35px;
    }
    
    .service-title-modern {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .service-subtitle-modern {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .service-description-modern {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .service-feature-item {
        padding: 12px 16px;
    }
    
    .service-feature-item i {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .service-feature-item span {
        font-size: 14px;
    }
    
    .about-us-modern {
        padding: 50px 0;
    }
    
    .about-text-wrapper {
        padding: 30px 25px;
    }
    
    .about-subtitle-modern {
        font-size: 16px;
    }
    
    .about-title-modern {
        font-size: 26px;
    }
    
    .about-contact-btn-modern {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .signature-name-modern {
        font-size: 15px;
    }
    
    .signature-tagline-modern {
        font-size: 11px;
    }
    
    .about-description-modern {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .products-grid-modern {
        gap: 10px;
    }
    
    .product-item-modern {
        padding: 12px 15px;
    }
    
    .product-icon-modern {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .product-item-modern span {
        font-size: 13px;
    }
    
    .about-text-modern {
        height: auto;
    }
    
    .about-image-modern {
        height: auto;
    }
    
    .about-images-container {
        gap: 15px;
    }
    
    .image-wrapper-modern {
        height: 250px;
        min-height: 250px;
    }
    
    .experience-banner-modern {
        right: -15px;
        padding: 12px 22px;
        gap: 12px;
    }
    
    .banner-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .banner-number {
        font-size: 24px;
    }
    
    .banner-label {
        font-size: 10px;
    }
    
    .products-modern {
        padding: 50px 0;
    }
    
    .products-header-modern {
        margin-bottom: 40px;
    }
    
    .products-title-modern {
        font-size: 26px;
    }
    
    .products-subtitle-modern {
        font-size: 14px;
    }
    
    .products-carousel {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .product-card-modern {
        min-width: 220px;
    }
    
    .product-image-modern {
        height: 200px;
    }
    
    .product-info-modern {
        padding: 20px;
    }
    
    .product-name-modern {
        font-size: 18px;
    }
    
    .product-category-modern {
        font-size: 12px;
    }
    
    .product-categories {
        padding: 50px 0;
        overflow-x: hidden;
    }
    
    .section-header-modern {
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .section-title-modern {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .categories-carousel-wrapper {
        padding: 0 0 40px;
        margin-top: -10px;
    }
    
    .categories-carousel {
        padding: 0 10px;
        gap: 12px;
    }
    
    .category-card-modern {
        min-width: calc(100% - 20px);
    }
    
    .category-image-modern {
        height: 350px;
    }
    
    .category-overlay-modern {
        padding: 20px 16px;
    }
    
    .category-icon-modern {
        margin-bottom: 12px;
    }
    
    .category-title-modern {
        margin-bottom: 12px;
        font-size: 17px;
    }
    
    .category-list-modern {
        margin-bottom: 12px;
    }
    
    .category-list-modern li {
        padding: 5px 0;
        font-size: 12px;
    }
    
    .btn-category-modern {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .category-number {
        font-size: 50px;
        top: 12px;
        right: 12px;
    }
    
    .category-icon-modern {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
        background: linear-gradient(135deg, rgba(170, 141, 74, 0.3), rgba(170, 141, 74, 0.2));
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
    
    .category-title-modern {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .category-list-modern {
        margin-bottom: 15px;
    }
    
    .category-list-modern li {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .category-list-modern li i {
        font-size: 9px;
    }
    
    .btn-category-modern {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .carousel-nav {
        margin-top: 5px;
    }
    
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Partners Modern Responsive - Mobile */
    .partners-modern {
        padding: 50px 0;
    }
    
    .partners-title-modern {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .partners-slogan-modern {
        font-size: 15px;
    }
    
    .partners-header-modern {
        margin-bottom: 35px;
    }
    
    .partners-modern .container {
        padding: 0 15px;
    }
    
    .partners-slider-wrapper-modern {
        padding: 6px 0;
        mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    }
    
    .partners-slider-track-modern {
        gap: 30px;
        animation-duration: 20s;
    }
    
    .partner-logo-modern {
        padding: 18px 25px;
        min-width: 140px;
        max-width: 140px;
        width: 140px;
        border-radius: 10px;
    }
    
    .partner-logo-modern:hover {
        transform: translateY(-3px);
    }
    
    .partner-name-modern {
        font-size: 16px;
    }
    
    .partner-name-modern {
        font-size: 16px;
    }
}

/* ===== Page Header ===== */
.page-header {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 16, 36, 0.85) 0%, 
        rgba(170, 141, 74, 0.75) 50%,
        rgba(0, 16, 36, 0.9) 100%);
    z-index: 1;
}

.page-header-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(170, 141, 74, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(3, 133, 225, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    width: 100%;
}

/* Kataloglar sayfasında başlık ile header arasındaki boşluğu azalt */
.page-header--catalogs .page-header-content {
    padding: 35px 0 45px;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Page Header */
@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
    }
    
    .page-header-content {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 250px;
    }
    
    .page-header-content {
        padding: 50px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
        .breadcrumb {
            font-size: 13px;
        }
    }

/* ===== Product Detail Section - SEO Optimized ===== *//* ===== Catalogs Section - Modern Design ===== */
.catalog-card-modern {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(170, 141, 74, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
    will-change: transform;
    isolation: isolate;
}

.catalog-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.catalog-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.catalog-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.catalog-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

.catalog-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--complementary-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 24px 24px 0 0;
}

.catalog-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(170, 141, 74, 0.3);
    border-color: var(--primary-color);
    z-index: 10;
}

.catalog-card-modern:hover::before {
    opacity: 1;
}

.catalog-image-modern {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(3, 133, 225, 0.1));
}

.catalog-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.catalog-card-modern:hover .catalog-image-modern img {
    transform: scale(1.12);
}

.catalog-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0.7) 0%, 
        rgba(170, 141, 74, 0.6) 50%,
        rgba(0, 16, 36, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.catalog-card-modern:hover .catalog-overlay-modern {
    opacity: 1;
}

.catalog-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s ease;
    will-change: transform;
}

.catalog-card-modern:hover .catalog-icon-modern {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.3);
}

.catalog-info-modern {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-category-modern {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.catalog-name-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.catalog-description-modern {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.catalog-buttons-modern {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.catalog-view-btn,
.catalog-download-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.catalog-view-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.catalog-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.catalog-download-btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.catalog-download-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.catalog-view-btn i,
.catalog-download-btn-modern i {
    transition: var(--transition);
}

.catalog-view-btn:hover i,
.catalog-download-btn-modern:hover i {
    transform: scale(1.1);
}

/* ===== Contact Section - Modern Design ===== */
.contact-cards-grid {
    /* Slider davranışını devre dışı bırakıp grid düzenine geçiyoruz */
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    transform: none !important;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .contact-cards-grid {
        /* Tablet ve küçük laptoplarda 2 sütun */
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-cards-grid {
        /* Mobilde tek sütun */
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(170, 141, 74, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
    will-change: transform;
    overflow: hidden;
    isolation: isolate;
    height: 100%; /* Grid içinde tüm kartların aynı yükseklikte görünmesini sağlar */
}

.contact-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--complementary-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(170, 141, 74, 0.3);
    border-color: var(--primary-color);
    z-index: 10;
}

.contact-card-modern:hover::before {
    opacity: 1;
}

.contact-card-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
    box-shadow: 0 8px 20px rgba(170, 141, 74, 0.3);
    will-change: transform;
}

.contact-card-modern:hover .contact-card-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(170, 141, 74, 0.4);
}

.contact-card-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-card-text-modern {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.contact-card-link-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.contact-card-link-modern:hover {
    color: var(--primary-dark);
    gap: 15px;
}

.contact-card-link-modern i {
    transition: var(--transition);
}

.contact-card-link-modern:hover i {
    transform: translateX(5px);
}

/* Map Section */
.contact-map-section-modern {
    margin: 0 0 60px 0;
}

.map-container-modern {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Callback Form Section */
.callback-form-section-modern {
    margin-top: 60px;
    padding: 80px 40px;
    /* Arka plana tıbbi ikonlu, çok hafif bir pattern ekleyelim */
    background:
        radial-gradient(circle at 10% 20%, rgba(3, 133, 225, 0.06) 0, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(170, 141, 74, 0.06) 0, transparent 50%),
        url('../images/contact-form.png');
    background-size: 260px 260px, 260px 260px, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: left top, right bottom, center;
    border-radius: 0;
}

.callback-form-container-modern {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 24px;
    /* "Sizi arayalım" formu için daha belirgin, yumuşak bir gölge */
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(170, 141, 74, 0.05);
}

.callback-form-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.callback-icon-wrapper-modern {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.25);
    transform: rotate(-15deg);
}

.callback-icon-wrapper-modern i {
    transform: rotate(15deg);
    color: var(--white);
    font-size: 40px;
}

.callback-form-title-modern {
    font-size: 32px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.callback-form-subtitle-modern {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.callback-form-content-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-wrapper-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    overflow: hidden;
}

.form-input-wrapper-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55px;
    background: var(--white);
    border-right: 2px solid var(--primary-color);
    z-index: 1;
}

.form-input-wrapper-modern i {
    position: absolute;
    left: 18px;
    color: var(--primary-color);
    font-size: 20px;
    z-index: 2;
}

.callback-input-modern {
    width: 100%;
    padding: 18px 20px 18px 70px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition);
    background: transparent;
    color: var(--complementary-dark);
    outline: none;
}

.callback-input-modern:focus {
    outline: none;
}

.callback-input-modern::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.callback-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.callback-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
    background: var(--primary-dark);
}

.callback-btn-modern i {
    transition: var(--transition);
    font-size: 14px;
}

.callback-btn-modern:hover i {
    transform: translateX(3px);
}

/* ===== Group Companies Section - Modern Design ===== */
.company-card-modern {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(170, 141, 74, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
    will-change: transform;
}

.company-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.company-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.company-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.company-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--complementary-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 24px 24px 0 0;
}

.company-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(170, 141, 74, 0.3);
    border-color: var(--primary-color);
    z-index: 10;
}

.company-card-modern:hover::before {
    opacity: 1;
}

.company-image-modern {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(3, 133, 225, 0.1));
}

.company-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.products-modern .products-grid > .company-card-modern {
    height: 100%;
}

.products-modern .products-grid {
    /* Masaüstünde 3 kart yan yana */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* urunlerimiz.html için yeni kart tasarımı */
.products-modern .products-grid .product-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(170, 141, 74, 0.1);
    height: 100%;
}

.products-modern .products-grid .product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(170, 141, 74, 0.2);
    border-color: rgba(170, 141, 74, 0.3);
}

.products-modern .products-grid .product-image-new {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.05), rgba(3, 133, 225, 0.05));
}

.products-modern .products-grid .product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-modern .products-grid .product-card-new:hover .product-image-new img {
    transform: scale(1.1);
}

.products-modern .products-grid .product-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0) 0%, 
        rgba(170, 141, 74, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.products-modern .products-grid .product-card-new:hover .product-overlay-new {
    opacity: 1;
}

.products-modern .products-grid .product-view-btn-new {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.products-modern .products-grid .product-view-btn-new:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.products-modern .products-grid .product-content-new {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--white);
}

.products-modern .products-grid .product-category-new {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(170, 141, 74, 0.05));
    border-radius: 20px;
    width: fit-content;
}

.products-modern .products-grid .product-title-new {
    font-size: 20px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    flex: 1;
}

.products-modern .products-grid .product-description-new {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.products-modern .products-grid .product-link-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.products-modern .products-grid .product-link-new:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.products-modern .products-grid .product-link-new i {
    transition: transform 0.3s ease;
}

.products-modern .products-grid .product-link-new:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .products-modern .products-grid {
        /* Tablet ve küçük laptoplarda 2 sütun */
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .products-modern .products-grid {
        /* Mobilde tek sütun */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-modern .products-grid .product-image-new {
        height: 240px;
    }
}

.company-card-modern:hover .company-image-modern img {
    transform: scale(1.12);
}

.company-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 16, 36, 0.7) 0%, 
        rgba(170, 141, 74, 0.6) 50%,
        rgba(0, 16, 36, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.company-card-modern:hover .company-overlay-modern {
    opacity: 1;
}

.company-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s ease;
    will-change: transform;
}

.company-card-modern:hover .company-icon-modern {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.3);
}

.company-info-modern {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.company-category-modern {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.company-name-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.company-description-modern {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.company-details-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(170, 141, 74, 0.1);
}

.company-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}

.company-detail-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.company-detail-item span {
    flex: 1;
}

/* ===== Partners Logos Section ===== */
.partners-logos-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 16, 36, 0.02) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.partners-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(170, 141, 74, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(3, 133, 225, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.partners-logos-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge-partners {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.partners-logos-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--complementary-dark);
    margin-bottom: 15px;
}

.partners-logos-title .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.partners-logos-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(170, 141, 74, 0.2);
    z-index: -1;
}

.partners-logos-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.partner-logo-item {
    position: relative;
}

.partner-logo-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(170, 141, 74, 0.2);
    border-color: var(--primary-color);
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: var(--transition);
}

.partner-logo-wrapper:hover .partner-logo-img {
    transform: scale(1.05);
}

.partner-logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 16, 36, 0.9), transparent);
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

.partner-logo-wrapper:hover .partner-logo-overlay {
    opacity: 1;
    transform: translateY(0);
}

.partner-logo-name {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: block;
}

/* Responsive Design for Partners Logos */
@media (max-width: 992px) {
    .partners-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partners-logos-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .partners-logos-section {
        padding: 80px 0;
    }
    
    .partners-logos-header {
        margin-bottom: 50px;
    }
    
    .partners-logos-title {
        font-size: 32px;
    }
    
    .partners-logos-subtitle {
        font-size: 16px;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .partner-logo-img {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .partners-logos-section {
        padding: 60px 0;
    }
    
    .partners-logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .partners-logos-title {
        font-size: 28px;
    }
    
    .partner-logo-img {
        padding: 20px;
    }
}

/* Responsive - Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    .company-card-modern {
        animation-delay: 0s;
    }
    
    .company-image-modern {
        height: 220px;
    }
    
    .company-info-modern {
        padding: 25px 20px;
    }
    
    .company-name-modern {
        font-size: 20px;
    }
    
    .company-description-modern {
        font-size: 14px;
    }
    
    .company-details-modern {
        gap: 10px;
        padding-top: 15px;
    }
    
    .company-detail-item {
        font-size: 13px;
    }
    
    /* Products Grid Responsive */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-search-filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .products-search-wrapper-modern {
        min-width: 100%;
    }
    
    .products-category-filter-modern {
        justify-content: center;
    }
    
    .products-results-count-modern {
        text-align: center;
    }
    
    .catalog-card-modern,
    .product-card-modern {
        animation-delay: 0s;
    }
    
    .catalog-image-modern,
    .product-image-modern {
        height: 220px;
    }
    
    .catalog-info-modern,
    .product-info-modern {
        padding: 25px 20px;
    }
    
    .catalog-name-modern,
    .product-name-modern {
        font-size: 20px;
    }
    
    .catalog-description-modern,
    .product-description-modern {
        font-size: 14px;
    }
    
    .catalog-buttons-modern {
        flex-direction: column;
        gap: 10px;
    }
    
    .catalog-view-btn,
    .catalog-download-btn-modern {
        width: 100%;
        min-width: auto;
        padding: 11px 20px;
        font-size: 13px;
    }
    
    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .products-search-filter-wrapper {
            gap: 15px;
        }
        
        .products-search-input-modern {
            padding: 14px 45px 14px 45px;
            font-size: 14px;
        }
        
        .category-filter-btn-modern {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .products-results-count-modern {
            font-size: 13px;
        }
        
        .catalog-image-modern,
        .product-image-modern {
            height: 200px;
        }
        
        .catalog-info-modern,
        .product-info-modern {
            padding: 20px 18px;
        }
        
        .catalog-name-modern,
        .product-name-modern {
            font-size: 18px;
        }
        
        .catalog-description-modern,
        .product-description-modern {
            font-size: 13px;
        }
        
        .catalog-buttons-modern {
            gap: 8px;
        }
        
        .catalog-view-btn,
        .catalog-download-btn-modern {
            padding: 10px 18px;
            font-size: 12px;
        }
        
        .company-image-modern {
            height: 200px;
        }
        
        .company-info-modern {
            padding: 20px 18px;
        }
        
        .company-name-modern {
            font-size: 18px;
        }
        
        .company-description-modern {
            font-size: 13px;
        }
        
        .company-details-modern {
            gap: 8px;
            padding-top: 15px;
        }
        
        .company-detail-item {
            font-size: 12px;
        }
        
        /* Contact Cards Responsive */
        .contact-card-modern {
            animation-delay: 0s;
        }
        
        .contact-card-icon-modern {
            width: 70px;
            height: 70px;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .contact-card-title-modern {
            font-size: 20px;
        }
        
        .contact-card-text-modern {
            font-size: 14px;
        }
        
        .map-container-modern {
            height: 400px;
        }
        
        .callback-form-section-modern {
            padding: 60px 30px;
        }
        
        .callback-form-container-modern {
            padding: 50px 35px;
        }
        
        .callback-form-title-modern {
            font-size: 26px;
        }
        
        .callback-icon-wrapper-modern {
            width: 80px;
            height: 80px;
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .form-input-wrapper-modern::before {
            width: 50px;
        }
        
        .form-input-wrapper-modern i {
            left: 16px;
            font-size: 18px;
        }
        
        .callback-input-modern {
            padding: 16px 18px 16px 65px;
        }
    }
    
    @media (max-width: 480px) {
        .contact-card-modern {
            padding: 30px 20px;
        }
        
        .contact-card-icon-modern {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
        
        .contact-card-title-modern {
            font-size: 18px;
        }
        
        .contact-card-text-modern {
            font-size: 13px;
        }
        
        .map-container-modern {
            height: 300px;
        }
        
        .callback-form-section-modern {
            padding: 50px 20px;
        }
        
        .callback-form-container-modern {
            padding: 40px 25px;
        }
        
        .callback-form-title-modern {
            font-size: 22px;
        }
        
        .callback-form-subtitle-modern {
            font-size: 14px;
        }
        
        .callback-icon-wrapper-modern {
            width: 70px;
            height: 70px;
            font-size: 28px;
            margin-bottom: 18px;
        }
        
        .form-input-wrapper-modern::before {
            width: 48px;
        }
        
        .form-input-wrapper-modern i {
            left: 14px;
            font-size: 16px;
        }
        
        .callback-input-modern {
            padding: 15px 16px 15px 60px;
            font-size: 14px;
        }
        
        .callback-btn-modern {
            padding: 16px 30px;
            font-size: 14px;
        }
        
        .form-input-wrapper-modern::before {
            width: 48px;
        }
        
        .form-input-wrapper-modern i {
            left: 14px;
            font-size: 16px;
        }
        
        .callback-input-modern {
            padding: 15px 16px 15px 60px;
            font-size: 14px;
        }
        
        .callback-btn-modern {
            padding: 16px 30px;
            font-size: 14px;
        }
    }
    
    /* Page Header Responsive */
    .page-header {
        min-height: 220px;
    }
    
    .page-header-content {
        padding: 50px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    @media (max-width: 480px) {
        .page-header {
            min-height: 180px;
        }
        
        .page-header-content {
            padding: 40px 0;
        }
        
        .page-title {
            font-size: 28px;
        }
        
        .breadcrumb {
            font-size: 13px;
        }
    }
}

/* ===== Product Detail Section - SEO Optimized ===== */
.product-detail-section-modern {
    padding: 80px 0;
    background: var(--white);
}

.product-header-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.product-detail-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Product Images */
.product-detail-images-modern {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image-modern {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: var(--light-gray);
}

.product-main-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-image-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.product-image-badge-modern i {
    font-size: 12px;
}

.product-thumbnails-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.product-thumbnail-modern {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.product-thumbnail-modern:hover,
.product-thumbnail-modern.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-thumbnail-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-detail-info-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.product-category-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.1), rgba(170, 141, 74, 0.05));
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 0;
}

.product-detail-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: var(--complementary-dark);
    line-height: 1.2;
    margin: 0;
    margin-top: 12px;
}

.product-rating-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-stars-modern {
    display: flex;
    gap: 4px;
    color: #FFA500;
}

.rating-stars-modern i {
    font-size: 18px;
}

.rating-text-modern {
    font-size: 14px;
    color: var(--gray);
}

.product-detail-description-modern {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

.product-detail-description-modern p {
    margin: 0 0 12px 0;
}

.product-detail-description-modern p:last-child {
    margin-bottom: 0;
}

/* Product Features */
.product-features-modern {
    padding: 30px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.05), rgba(3, 133, 225, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(170, 141, 74, 0.1);
}

.features-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 20px;
}

.features-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--complementary-dark);
}

.features-list-modern i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Product Specifications */
.product-specifications-modern {
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--light-gray);
}

.specifications-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 20px;
}

.specifications-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.specification-item-modern {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.spec-label-modern {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value-modern {
    font-size: 16px;
    color: var(--complementary-dark);
    font-weight: 600;
}

/* Product CTA */
.product-cta-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-contact-btn-modern,
.product-call-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.product-contact-btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(170, 141, 74, 0.3);
}

.product-contact-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 141, 74, 0.4);
}

.product-call-btn-modern {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.product-call-btn-modern:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Tabs */
.product-tabs-modern {
    margin-top: 60px;
    margin-bottom: 80px;
}

.product-tabs-nav-modern {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
    flex-wrap: wrap;
}

.product-tab-btn-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
}

.product-tab-btn-modern:hover {
    color: var(--primary-color);
}

.product-tab-btn-modern.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.product-tabs-content-modern {
    position: relative;
}

.product-tab-content-modern {
    display: none;
    animation: fadeIn 0.4s ease;
}

.product-tab-content-modern.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner-modern {
    padding: 40px;
    background: linear-gradient(135deg, rgba(170, 141, 74, 0.03), rgba(3, 133, 225, 0.03));
    border-radius: 20px;
}

.tab-content-inner-modern h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 20px;
}

.tab-content-inner-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin: 25px 0 15px;
}

.tab-content-inner-modern p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.tab-content-inner-modern ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-content-inner-modern ul li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: var(--complementary-dark);
    position: relative;
    line-height: 1.6;
}

.tab-content-inner-modern ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Specifications Table */
.specifications-table-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.spec-row-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-bottom: 1px solid var(--light-gray);
}

.spec-row-modern:last-child {
    border-bottom: none;
}

.spec-cell-modern {
    padding: 18px 25px;
    font-size: 15px;
}

.spec-label-cell {
    background: rgba(170, 141, 74, 0.05);
    color: var(--complementary-dark);
    font-weight: 600;
}

.spec-value-cell {
    background: var(--white);
    color: var(--gray);
}

/* Related Products */
.related-products-section-modern {
    margin-top: 80px;
}

.related-products-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

.related-products-title-modern {
    font-size: 36px;
    font-weight: 800;
    color: var(--complementary-dark);
    margin-bottom: 10px;
}

.related-products-subtitle-modern {
    font-size: 17px;
    color: var(--gray);
}

/* Product Detail Responsive */
@media (max-width: 992px) {
    .product-header-modern {
        margin-bottom: 25px;
    }
    
    .product-detail-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail-images-modern {
        position: static;
    }
    
    .product-detail-title-modern {
        font-size: 36px;
        margin-top: 10px;
    }
    
    .product-category-badge-modern {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .specifications-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .product-features-specs-wrapper-modern {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-top: 30px !important;
    }
}

@media (max-width: 768px) {
    .product-detail-section-modern {
        padding: 60px 0;
    }
    
    .product-detail-wrapper-modern {
        margin-bottom: 60px;
    }
    
    .product-detail-title-modern {
        font-size: 28px;
        margin-top: 8px;
    }
    
    .product-category-badge-modern {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .product-detail-description-modern {
        font-size: 15px;
    }
    
    .product-features-specs-wrapper-modern {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-top: 30px !important;
    }
    
    .product-tabs-nav-modern {
        flex-direction: column;
        gap: 0;
    }
    
    .product-tab-btn-modern {
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid var(--light-gray);
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }
    
    .product-tab-btn-modern.active {
        border-left-color: var(--primary-color);
        border-bottom-color: var(--light-gray);
    }
    
    .tab-content-inner-modern {
        padding: 25px 20px;
    }
    
    .tab-content-inner-modern h2 {
        font-size: 24px;
    }
    
    .related-products-title-modern {
        font-size: 28px;
    }
    
    .spec-row-modern {
        grid-template-columns: 1fr;
    }
    
    .spec-cell-modern {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .product-detail-title-modern {
        font-size: 24px;
    }
    
    .product-thumbnails-modern {
        gap: 10px;
    }
    
    .product-thumbnail-modern {
        width: 80px;
        height: 80px;
    }
    
    .product-features-modern,
    .product-specifications-modern {
        padding: 20px;
    }
    
    .product-features-specs-wrapper-modern {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .product-contact-btn-modern,
    .product-call-btn-modern {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* ===== 404 Error Page Styles ===== */
.error-404-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.error-404-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.error-404-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.error-404-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.error-404-number {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--complementary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(170, 141, 74, 0.2);
}

.error-404-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--complementary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-404-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-error-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(170, 141, 74, 0.3);
    border: none;
    cursor: pointer;
}

.btn-error-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(170, 141, 74, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-error-primary i {
    font-size: 18px;
    transition: var(--transition);
}

.btn-error-primary:hover i {
    transform: translateX(-3px);
}

.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.btn-error-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(170, 141, 74, 0.4);
}

.btn-error-secondary i {
    font-size: 18px;
    transition: var(--transition);
}

.btn-error-secondary:hover i {
    transform: translateX(3px);
}

.error-404-links {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
}

.error-404-links-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--complementary-dark);
    margin-bottom: 25px;
}

.error-404-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.error-404-links-list li {
    margin: 0;
}

.error-404-links-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 500;
    background: var(--light-gray);
}

.error-404-links-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.error-404-links-list a i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 14px;
}

.error-404-links-list a:hover i {
    color: var(--white);
    transform: translateX(3px);
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
    .error-404-section {
        padding: 60px 20px;
        min-height: calc(100vh - 350px);
    }
    
    .error-404-section .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .error-404-icon {
        font-size: 60px;
    }
    
    .error-404-number {
        font-size: 100px;
    }
    
    .error-404-title {
        font-size: 32px;
    }
    
    .error-404-description {
        font-size: 16px;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-error-primary,
    .btn-error-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .error-404-links {
        padding: 30px 20px;
    }
    
    .error-404-links-title {
        font-size: 20px;
    }
    
    .error-404-links-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-404-section {
        padding: 40px 15px;
    }
    
    .error-404-section .container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .error-404-icon {
        font-size: 50px;
    }
    
    .error-404-number {
        font-size: 80px;
    }
    
    .error-404-title {
        font-size: 28px;
    }
    
    .error-404-description {
        font-size: 15px;
    }
    
    .btn-error-primary,
    .btn-error-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .error-404-links {
        padding: 25px 15px;
    }
    
    .error-404-links-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

