/* CSS Variables & Theme Setup */
:root {
    --primary-color: #0f172a;       /* Dark slate */
    --accent-color: #0ea5e9;        /* Electric blue */
    --accent-hover: #0284c7;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --bg-dark: #020617;
    --bg-card: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(2, 6, 23, 0.7);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes pageLoadFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageLoadFadeIn 1.2s ease-out forwards;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px; /* Logo boyutu daha da büyütüldü */
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 75px; /* Kaydırıldığında küçülme boyutu ayarlandı */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn.e-payment {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 600;
}

.nav-btn.e-payment:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding-left: 2rem;
}

/* Language Dropdown Adjustment */
.lang-dropdown .dropdown-menu {
    min-width: 140px;
    left: auto;
    right: 0;
    margin-top: 5px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Hero Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-slide.active img {
    animation-play-state: running;
}

.hero-slide:not(.active) img {
    animation-play-state: paused;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2,6,23,0.9) 0%, rgba(2,6,23,0.4) 100%);
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    text-align: left;
    margin-top: 5rem;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
}

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

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Highlights Section */
.highlights {
    padding: 8rem 0;
    position: relative;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
}

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

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.card-link span {
    transition: transform 0.3s ease;
}

.card-link:hover span {
    transform: translateX(5px);
    color: var(--accent-color);
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(14, 165, 233, 0.05), rgba(2, 6, 23, 1));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact strong {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Mobile Dropdown Fixes */
    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: none;
        padding: 0;
        min-width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active:hover .dropdown-menu {
        display: block;
    }

    .lang-dropdown .dropdown-menu {
        margin-top: 0.5rem;
    }
}

/* Corporate Page Styles */
.corporate-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 2rem 4rem 2rem;
    margin-bottom: 4rem;
}

.corporate-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.corporate-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.corporate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2,6,23,0.8) 0%, rgba(2,6,23,0.4) 100%);
}

.corporate-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    z-index: 1;
}

.content-section {
    padding: 4rem 0;
    scroll-margin-top: 100px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.content-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.content-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.content-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.content-body p:last-child {
    margin-bottom: 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.vm-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.vm-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.quality-list {
    list-style: none;
    padding: 0;
}

.quality-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    .content-container {
        padding: 2rem;
    }
    .content-title {
        font-size: 2rem;
    }
}

.content-container.has-bg-image {
    position: relative;
    overflow: hidden;
    display: flex;
}

.content-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to right, transparent 0%, black 80%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80%);
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.content-container.has-bg-image:hover .content-bg-image {
    opacity: 0.8;
}

.content-text-wrapper {
    position: relative;
    z-index: 1;
    width: 65%;
}

@media (max-width: 768px) {
    .content-container.has-bg-image {
        flex-direction: column;
    }
    .content-bg-image {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
        opacity: 0.2;
    }
    .content-text-wrapper {
        width: 100%;
    }
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    min-height: 80vh;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.products-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    margin-bottom: 1rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    color: var(--text-muted);
}

.category-header:hover, .category-item.active .category-header {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--accent-color);
    color: #fff;
}

.sub-product-list {
    list-style: none;
    padding: 1rem 0 0 1rem;
    animation: fadeIn 0.4s ease;
}

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

.sub-product-item {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    cursor: pointer;
    border-left: 2px solid transparent;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.sub-product-item:hover, .sub-product-item.active {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    background: rgba(255,255,255,0.02);
}

.products-main {
    transition: opacity 0.3s ease;
}

.product-header {
    margin-bottom: 3rem;
}

.product-category-label {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image-container {
    position: sticky;
    top: 110px;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

/* Product Image Slider Component */
.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
    border-radius: inherit;
}

.product-slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
    background: #020617;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    will-change: opacity, transform;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 3;
}

.product-slide.exiting {
    opacity: 0;
    visibility: visible;
    transform: scale(0.97);
    z-index: 2;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-slider:hover .product-slide.active img {
    transform: scale(1.04);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-slider:hover .slider-btn {
    opacity: 0.85;
}

.slider-btn:hover {
    opacity: 1 !important;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 12px;
}

.slider-btn.next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    padding: 6px 14px;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    width: 22px;
    border-radius: 4px;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.6);
}

.product-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.product-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-image-container {
        position: relative;
        top: auto;
        height: 380px;
    }
}

@media (max-width: 576px) {
    .product-image-container {
        height: 280px;
    }
}

/* Brands Banner Section */
.brands-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(2, 6, 23, 0.2) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
}

/* Side gradient fades for smooth scrolling transition */
.brands-section::before,
.brands-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.brands-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 6rem;
    animation: scrollBrands 35s linear infinite;
    transform: translate3d(0, 0, 0);
}

.brands-slider:hover .brands-track {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.55;
    transition: var(--transition-smooth);
    user-select: none;
    flex-shrink: 0;
}

.brand-item:hover {
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

.brand-logo-img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.brand-item:hover .brand-logo-img {
    opacity: 1;
    transform: scale(1.08);
}


/* Card Loader / Skeleton Styles */
.card-skeleton {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skeleton-image {
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
}

.skeleton-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.skeleton-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.skeleton-text.sub { height: 14px; width: 30%; }
.skeleton-text.title { height: 24px; width: 70%; margin-bottom: 0.5rem; }
.skeleton-text.p1 { height: 16px; width: 100%; }
.skeleton-text.p2 { height: 16px; width: 90%; }
.skeleton-text.link { height: 16px; width: 40%; margin-top: auto; }

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: #fff;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    transform: translateY(-3px);
}

.footer-socials a.whatsapp:hover {
    color: #fff;
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp Widget */
.whatsapp-float-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float-tooltip {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.whatsapp-float-container:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float-btn {
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: waPulse 2s infinite ease-in-out;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Sub-products styles */
.sub-products-section {
    margin-top: 4rem;
    animation: fadeIn 0.6s ease;
}

.sub-products-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    color: #fff;
}

.sub-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.sub-product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.sub-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(14, 165, 233, 0.1);
}

.sub-product-image {
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

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

.sub-product-card:hover .sub-product-image img {
    transform: scale(1.08);
}

.sub-product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sub-product-content h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.sub-product-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sub-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.sub-product-link:hover {
    color: #fff;
}

.sub-product-link span {
    transition: transform 0.3s ease;
}

.sub-product-link:hover span {
    transform: translateX(5px);
}

/* Product Detail Page Styles */
.detail-section {
    padding: 10rem 0 6rem; /* extra top padding for fixed navbar */
    min-height: 80vh;
}

.back-btn-container {
    margin-bottom: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.back-btn:hover {
    color: var(--accent-color);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-image-container {
    position: sticky;
    top: 110px;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-breadcrumbs {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.detail-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.detail-section-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.detail-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.detail-features-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.detail-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .detail-image-container {
        position: relative;
        top: auto;
        height: 380px;
    }
    .detail-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .detail-image-container {
        height: 280px;
    }
}

/* Contact Page Styling */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-card {
        position: relative;
        top: auto;
    }
}

/* Address Cards */
.address-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.address-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.1);
}

.address-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.address-icon {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.address-details {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.address-details p {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.address-details svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--accent-color);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.map-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
    background: rgba(2, 6, 23, 0.7);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Custom Captcha Widget */
.captcha-widget {
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    user-select: none;
}

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

.captcha-checkbox-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.captcha-checkbox {
    width: 100%;
    height: 100%;
    border: 2px solid #64748b;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-checkbox:hover {
    border-color: var(--accent-color);
}

.captcha-checkbox.verified {
    border-color: #10b981;
    background: #10b981;
}

.captcha-checkbox svg.check-icon {
    display: none;
    color: #fff;
}

.captcha-checkbox.verified svg.check-icon {
    display: block;
}

.captcha-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: captchaSpin 0.8s linear infinite;
}

@keyframes captchaSpin {
    to { transform: rotate(360deg); }
}

.captcha-text {
    font-size: 0.95rem;
    color: var(--text-main);
}

.captcha-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.captcha-brand svg {
    color: var(--accent-color);
}

.captcha-brand span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #475569;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Toast Notification */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid #10b981;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastSlideIn 0.4s ease-out forwards;
}

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

/* =============================================
   MEDIA PAGE STYLES
   ============================================= */

/* Media Section Wrapper */
.media-section {
    padding: 5rem 0 8rem;
}

/* Tab Navigation */
.media-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
}

.media-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.media-tab-btn.active {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}

.media-tab-btn:not(.active):hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

/* Tab Panels */
.media-panel {
    display: none;
    animation: panelFadeIn 0.4s ease-out;
}

.media-panel.active {
    display: block;
}

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

/* ---- VIDEO CENTER ---- */
.video-center {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .video-center {
        grid-template-columns: 1fr;
    }
}

/* Main Video Player */
.video-player-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.video-player-area {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}

.video-player-area iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-player-meta {
    padding: 1.5rem 2rem;
}

.video-category-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(14, 165, 233, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.video-player-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-player-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Video List Sidebar */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 640px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.video-list::-webkit-scrollbar {
    width: 4px;
}
.video-list::-webkit-scrollbar-track { background: transparent; }
.video-list::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 4px; }

.video-list-header {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.video-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(4px);
}

.video-card.active {
    border-color: var(--accent-color);
    background: rgba(14, 165, 233, 0.1);
}

.video-thumb {
    position: relative;
    width: 90px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.video-thumb-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: var(--transition-smooth);
}

.video-card:hover .video-play-icon {
    opacity: 1;
}

.video-card-info {
    flex: 1;
    min-width: 0;
}

.video-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---- PHOTO GALLERY ---- */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.gallery-filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.gallery-item-hidden {
    display: none;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-img {
    max-height: 75vh;
    max-width: 100%;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.lightbox-img-placeholder {
    width: 600px;
    max-width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.lightbox-caption {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -1rem;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.6);
    border-color: rgba(239,68,68,0.5);
}

/* ---- NEWS SECTION ---- */
.news-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
    .news-featured {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14,165,233,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.news-card-image {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

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

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

.news-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.news-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    width: fit-content;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.news-card-summary {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.news-card-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-color);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.news-read-btn:hover {
    gap: 0.7rem;
    color: #38bdf8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

.news-grid .news-card-image {
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .media-tabs {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.35rem;
        gap: 0.35rem;
        border-radius: 12px;
    }
    .media-tabs::-webkit-scrollbar {
        display: none;
    }
    .media-tab-btn {
        flex: 1 0 auto;
        justify-content: center;
        padding: 0.6rem 0.85rem;
        font-size: 0.85rem;
        gap: 0.4rem;
        white-space: nowrap;
    }
    .media-tab-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .media-tab-btn {
        padding: 0.55rem 0.65rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
}

/* =============================================
   CERTIFICATES PAGE STYLES
   ============================================= */

.certificates-section {
    padding: 5rem 0 8rem;
}

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

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

@media (max-width: 900px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.certificate-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(14, 165, 233, 0.1);
}

.certificate-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(2, 6, 23, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.certificate-card:hover .certificate-image img {
    transform: scale(1.08);
}

.certificate-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.certificate-card:hover .certificate-overlay-icon {
    opacity: 1;
}

.certificate-overlay-icon svg {
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

.certificate-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.certificate-info h3 {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.certificate-info h2 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.certificate-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.certificate-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.certificate-card:hover .certificate-link {
    color: #fff;
}

.certificate-link span {
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-link span {
    transform: translateX(5px);
}

/* =============================================
   YEŞİL DÖNÜŞÜM LOGO VE ROZET STİLLERİ
   ============================================= */
.green-donusum-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.9rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    max-width: fit-content;
}

.green-donusum-badge:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.green-donusum-img-wrapper {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-donusum-img-wrapper img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.green-donusum-text {
    display: flex;
    flex-direction: column;
}

.green-donusum-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.green-donusum-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Kurumsal Yeşil Dönüşüm Kartı */
.green-donusum-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.green-donusum-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.green-donusum-card-logo {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.15);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.green-donusum-card-logo img {
    height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.green-donusum-card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.green-donusum-card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .green-donusum-card {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
        gap: 1.5rem;
    }
    
    .green-donusum-card-content h3 {
        justify-content: center;
    }
}

/* =============================================
   HUMAN RESOURCES (İK) PAGE STYLES
   ============================================= */

.hr-section {
    padding: 6rem 0 8rem;
}

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

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

.hr-value-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hr-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}

.hr-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hr-value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
}

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

.hr-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.open-positions-container {
    display: flex;
    flex-direction: column;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.position-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.position-card:hover {
    border-color: rgba(14, 165, 233, 0.35);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-2px);
}

.position-dept {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.35rem;
}

.position-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

@media (max-width: 1100px) {
    .hr-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hr-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .hr-values-grid {
        grid-template-columns: 1fr;
    }
    .position-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .apply-btn {
        width: 100%;
    }
}
