/* ===================================
   VAMATES - GLOBAL STYLES
   Corporate Elegance Theme
   =================================== */

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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #fbbf24;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-color: #374151;
    --success-color: #10b981;
    --error-color: #ef4444;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    white-space: nowrap;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.contact-item i {
    font-size: 12px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Orijinal sosyal medya renkleri */
.social-icon.facebook { color: #1877f2; }
.social-icon.facebook:hover { background: #1877f2; }

.social-icon.instagram { color: #e4405f; }
.social-icon.instagram:hover { background: #e4405f; }

.social-icon.linkedin { color: #0a66c2; }
.social-icon.linkedin:hover { background: #0a66c2; }

.social-icon.twitter { color: #1da1f2; }
.social-icon.twitter:hover { background: #1da1f2; }

.social-icon.youtube { color: #ff0000; }
.social-icon.youtube:hover { background: #ff0000; }

.social-icon.whatsapp { color: #25d366; }
.social-icon.whatsapp:hover { background: #25d366; }

.navbar {
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-bottom: 0rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    margin-top: 10px;
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-menu dl, .nav-menu ol, .nav-menu ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
.nav-menu ol, .nav-menu ul {
    padding-left: 0rem;
    width: 250px;
}

.search-btn,
.compare-btn {
    background-color: transparent;
    border: 2px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.search-btn:hover,
.compare-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-color);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    position: relative;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    padding: 40px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 3fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-color);
    font-size: 14px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: 40px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat h4 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: 40px 0;
    background-color: var(--light-color);
}

.services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.services-grid-6col {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {
    .services-grid-6col {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-6col {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-item {
        padding: 20px 12px;
        min-height: auto;
    }
    
    .service-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .service-item p {
        font-size: 12px;
        font-weight: 500;
    }
    
    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid-6col {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-item {
        padding: 15px 10px;
        border-radius: 6px;
    }
    
    .service-icon {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .service-item p {
        font-size: 11px;
        margin: 0;
    }
}

.service-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products {
    padding: 40px 0;
}

.products h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.products-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .products-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-3col {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    margin: 0;
    color: var(--primary-color);
    min-height: 56px;
    display: flex;
    align-items: flex-end;
}

.product-card p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    flex-grow: 1;
    line-height: 1.6;
    min-height: 90px;
}

.btn-link {
    padding: 0 20px 20px;
    display: inline-block;
    width: fit-content;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding-left: 1rem;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}


/* ===================================
   BREADCRUMB
   =================================== */

.breadcrumb {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumb-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 4px;
    font-weight: 600;
}

.breadcrumb-current {
    color: white;
    font-weight: 700;
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* ===================================
   CORPORATE SIDEBAR MENU
   =================================== */

.sidebar-menu {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.sidebar-icon {
    font-size: 20px;
    opacity: 0.9;
}

.sidebar-content {
    padding: 0;
}

.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu-item {
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.sidebar-menu-item:last-child {
    border-bottom: none;
}

.sidebar-menu-item:hover {
    background-color: #f8f9fa;
}

.sidebar-menu-item.active {
    background-color: #f0f7ff;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.sidebar-menu-link:hover {
    color: var(--secondary-color);
}

.sidebar-menu-item.active .sidebar-menu-link {
    color: var(--primary-color);
    font-weight: 600;
}

.menu-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.sidebar-menu-item:hover .menu-icon {
    transform: translateX(2px);
}

.sidebar-menu-item.active .menu-icon {
    color: var(--primary-color);
}

.menu-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.active-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .sidebar-menu {
        margin-bottom: 20px;
    }
    
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-title {
        font-size: 16px;
    }
    
    .sidebar-menu-link {
        padding: 14px 15px;
    }
    
    .menu-text {
        font-size: 13px;
    }
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* ===================================
   PRODUCT DETAIL PAGE
   =================================== */

.product-hero {
    background-color: var(--light-color);
    padding: 40px 0;
}

.product-hero h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-hero p {
    font-size: 16px;
    color: var(--text-color);
}

.product-content {
    padding: 60px 0;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    border-color: var(--secondary-color);
}

.product-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-info .description {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.technical-specs {
    margin-bottom: 30px;
}

.technical-specs h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.technical-specs table {
    width: 100%;
    border-collapse: collapse;
}

.technical-specs table tr {
    border-bottom: 1px solid var(--border-color);
}

.technical-specs table td {
    padding: 12px 0;
}

.technical-specs table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 40%;
}

.features-list {
    margin-bottom: 30px;
}

.features-list h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    padding: 8px 0;
    color: var(--text-color);
}

.applications {
    margin-bottom: 30px;
}

.applications h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-tags span {
    background-color: var(--light-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-actions button {
    flex: 1;
}

/* ===================================
   RELATED PRODUCTS
   =================================== */

.related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.related-products h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-content {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-box {
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-color);
    line-height: 1.8;
}

.info-box a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.social-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.contact-form-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin: 0;
}

/* ===================================
   DISTRIBUTORS SECTION
   =================================== */

.distributors {
    padding: 80px 0;
    background-color: var(--light-color);
}

.distributors h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 50px;
}

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

.distributor-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.distributor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.distributor-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 20px;
}

.distributor-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.distributor-header .region {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.distributor-info {
    padding: 25px 20px;
}

.distributor-info p {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.distributor-info p:last-child {
    margin-bottom: 0;
}

.distributor-info .description {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ===================================
   DEPARTMENTS SECTION
   =================================== */

.departments-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.departments-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.departments-section .section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.departments-section .section-subtitle {
    font-size: 16px;
    color: var(--text-color);
}

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

.department-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.department-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.department-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.department-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.info-row i {
    color: var(--secondary-color);
    width: 20px;
}

.info-row a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===================================
   LOCATION SECTION
   =================================== */

.location-section {
    padding: 80px 0;
    background-color: white;
}

.location-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-section .section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.location-section .section-subtitle {
    font-size: 16px;
    color: var(--text-color);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 20px;
}

.location-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.location-card address {
    font-style: normal;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.location-link i {
    color: var(--secondary-color);
}

.location-link:hover {
    color: var(--primary-color);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-container {
    width: 100%;
    height: 450px;
}

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

@media (max-width: 768px) {
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ===================================
   WHATSAPP CHAT WIDGET
   =================================== */

.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
    }
    
    .contact-info {
        gap: 8px;
        justify-content: center;
        width: 100%;
    }
    
    .contact-item {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .contact-item span {
        display: none;
    }
    
    .contact-item i {
        font-size: 14px;
        margin: 0;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-content,
    .product-main,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat {
        padding: 15px 10px;
    }
    
    .stat h4 {
        font-size: 22px;
    }
    
    .stat p {
        font-size: 11px;
    }

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

    .product-actions button {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 20px;
    }
    
    .stat {
        padding: 12px 8px;
        border-radius: 6px;
    }
    
    .stat h4 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .stat p {
        font-size: 10px;
        line-height: 1.2;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services-grid,
    .services-grid-6col {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-item {
        padding: 12px 8px;
        min-height: auto;
    }
    
    .service-icon {
        font-size: 22px;
        margin-bottom: 4px;
    }
    
    .service-item p {
        font-size: 10px;
        line-height: 1.2;
    }

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

    .page-hero h1 {
        font-size: 24px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 16px;
    }
}

.brands-partners { padding: 80px 0; }
.brands-partners h2 { font-size: 36px; text-align: center; color: var(--primary-color); margin-bottom: 15px; }
.brands-partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.brand-partner-card { background-color: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: var(--transition); }
.brand-partner-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); }
.brand-logo-container { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); padding: 30px 20px; text-align: center; }
.brand-logo { font-size: 32px; font-weight: 700; color: white; letter-spacing: 2px; }
.brand-partner-card img { width: 100%; height: 200px; object-fit: cover; }
.brand-content { padding: 25px 20px; }
.brand-content h3 { font-size: 22px; color: var(--primary-color); margin-bottom: 8px; }
.brand-country { font-size: 14px; color: var(--secondary-color); margin-bottom: 15px; }
.brand-content .description { font-size: 14px; color: var(--text-color); margin-bottom: 15px; line-height: 1.6; }
.brand-features { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-features span { background-color: var(--light-color); padding: 6px 12px; border-radius: 16px; font-size: 12px; color: var(--text-color); font-weight: 500; }
.latest-news { padding: 40px 0; background-color: var(--light-color); }
.latest-news h2 { font-size: 36px; text-align: center; color: var(--primary-color); margin-bottom: 15px; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.news-card { background-color: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: var(--transition); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-content { padding: 25px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12px; color: var(--secondary-color); font-weight: 600; margin-bottom: 10px; }
.news-card h3 { font-size: 18px; color: var(--primary-color); margin-bottom: 12px; line-height: 1.4; }
.news-card p { font-size: 14px; color: var(--text-color); margin-bottom: 15px; flex-grow: 1; }
.news-card .btn-link { align-self: flex-start; }
.news-cta { text-align: center; }

.brands-header { text-align: center; margin-bottom: 60px; }
.brands-header h2 { font-size: 40px; color: var(--primary-color); font-weight: 700; }
.brands-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-section { display: flex; flex-direction: column; gap: 30px; }
.brand-logo-section { text-align: center; background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); padding: 40px 20px; border-radius: 12px; }
.brand-title { font-size: 48px; font-weight: 700; color: white; letter-spacing: 3px; margin: 0; }
.kumova { width: 100%; }
.kumova-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; height: 400px; }
.panel { background-size: cover; background-position: center; border-radius: 8px; cursor: pointer; transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); flex: 1; }
.panel.active { grid-column: span 2; grid-row: span 2; }
.panel:hover { transform: scale(1.05); }
@media (max-width: 1024px) { .brands-container { grid-template-columns: 1fr; gap: 40px; } .kumova-panel { height: 350px; } }
@media (max-width: 768px) { .brands-header h2 { font-size: 28px; } .brand-title { font-size: 32px; } .kumova-panel { grid-template-columns: repeat(2, 1fr); height: 300px; } }

.carousel-section .carousel { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.carousel-item img { height: 400px; object-fit: cover; }
.carousel-indicators button { background-color: var(--primary-color); border-radius: 50%; width: 12px; height: 12px; margin: 0 6px; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(1); }
.brands-partners { padding: 40px 0; background-color: #f8f9fa; }
.brands-header { text-align: center; margin-bottom: 60px; }
.brands-header h2 { font-size: 40px; color: var(--primary-color); font-weight: 700; margin-bottom: 10px; }
.brands-subtitle { font-size: 16px; color: var(--text-color); }
.brands-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 50px; }
.brand-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(75, 61, 61, 0.08); transition: var(--transition); }
.brand-card:hover { transform: translateY(-8px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); }
.brand-header-elegant { padding: 30px 25px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; }
.brand-header-elegant h3 { font-size: 32px; font-weight: 700; margin: 0 0 8px 0; letter-spacing: 1px; }
.brand-desc { font-size: 14px; margin: 0; opacity: 0.95; }
.brand-gallery { padding: 15px; height: auto; min-height: 280px; }
.gallery-main { margin-bottom: 12px; border-radius: 8px; overflow: hidden; height: auto; min-height: 150px;}
.gallery-main img { height: auto; max-height: 180px; width: 100%; object-fit: contain; transition: var(--transition); cursor: pointer; }
.gallery-main img:hover { transform: scale(1.02); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.thumb { width: 100%; height: 50px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: var(--transition); opacity: 0.7; }
.thumb:hover { opacity: 1; }
.thumb.active { border-color: var(--primary-color); opacity: 1; }
@media (max-width: 480px) {
    .brand-gallery {
        padding: 10px;
        height: auto;
        min-height: 220px;
    }
    
    .gallery-main {
        height: auto;
        min-height: 120px;
        margin-bottom: 8px;
    }
    
    .gallery-main img {
        height: auto;
        max-height: 140px;
        width: 100%;
        object-fit: contain;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }
    
    .thumb {
        height: 40px;
    }
}


.carousel-caption-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 42px;
    font-weight: 700;
    color: white;
    text-align: center;
    max-width: 80%;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .carousel-caption-overlay {
        font-size: 24px;
        padding: 15px 25px;
        bottom: 60px;
    }
}

@media (max-width: 480px) {
    .carousel-caption-overlay {
        font-size: 18px;
        padding: 10px 20px;
        bottom: 50px;
    }
}

/* ===================================
   CAROUSEL ENHANCEMENTS
   =================================== */

.carousel-section { 
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.carousel-section .carousel { 
    border-radius: 0; 
    overflow: hidden; 
    box-shadow: none;
    width: 100%;
}

.carousel-inner {
    background-color: #f8f9fa;
    width: 100%;
}

.carousel-item {
    transition: opacity 0.6s ease-in-out;
    width: 100%;
}

.carousel-slide {
    width: 100%;
    height: 600px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 1200px) {
    .carousel-slide {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        height: 300px;
    }
}

.carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.carousel-indicators button { 
    background-color: rgba(30, 58, 138, 0.5);
    border-radius: 50%; 
    width: 14px; 
    height: 14px; 
    margin: 0 8px; 
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active { 
    background-color: #1e3a8a;
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}

.carousel-indicators button:hover {
    background-color: #1e3a8a;
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: auto !important;
    bottom: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: rgba(30, 58, 138, 0.9) !important;
    border-radius: 50% !important;
    transform: none !important;
    transition: all 0.3s ease !important;
    border: 3px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    z-index: 20 !important;
    opacity: 1 !important;
}

.carousel-control-prev {
    left: 50% !important;
    margin-left: -70px !important;
}

.carousel-control-next {
    right: 50% !important;
    margin-right: -70px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #1e3a8a !important;
    border-color: white !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5) !important;
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon { 
    filter: brightness(0) invert(1) !important;
    width: 28px !important;
    height: 28px !important;
    background-size: 100% 100% !important;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
    }
    
    .carousel-control-prev {
        margin-left: -55px !important;
    }
    
    .carousel-control-next {
        margin-right: -55px !important;
    }
    
    .carousel-control-prev-icon, 
    .carousel-control-next-icon { 
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item img { 
        height: 280px; 
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
    }
    
    .carousel-indicators button { 
        width: 10px; 
        height: 10px; 
        margin: 0 6px; 
    }
}

@media (max-width: 480px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
        bottom: 10px !important;
    }
    
    .carousel-control-prev {
        margin-left: -40px !important;
    }
    
    .carousel-control-next {
        margin-right: -40px !important;
    }
}

/* ===================================
   PROJECTS LIST
   =================================== */

.projects-list {
    padding: 60px 0;
    background-color: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-wrapper nav {
    display: flex;
    gap: 8px;
}

.pagination-wrapper .page-link {
    padding: 10px 16px;
    border-radius: 6px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pagination-wrapper .page-link:hover,
.pagination-wrapper .active .page-link {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 200px;
    }
}

/* ===================================
   LIGHTBOX
   =================================== */

.lightbox-trigger {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-trigger:hover {
    opacity: 0.8;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

/* ===================================
   JOBS SECTION (Human Resources)
   =================================== */

.jobs-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.jobs-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-section .section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.jobs-section .section-subtitle {
    font-size: 16px;
    color: var(--text-color);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: var(--text-color);
}

.job-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.job-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.job-summary {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.job-footer {
    margin-top: auto;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-apply:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

.no-jobs {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.no-jobs-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.no-jobs h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===================================
   JOB DETAIL SECTION
   =================================== */

.job-detail-section {
    padding: 80px 0;
    background-color: white;
}

.job-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.job-info-card {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 40px;
    border-left: 4px solid var(--primary-color);
}

.job-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.job-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.job-info-card h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.job-info-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.meta-item i {
    color: var(--secondary-color);
    width: 20px;
}

.job-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.job-cta {
    text-align: center;
}

.btn-apply-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-apply-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.application-form-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.form-header h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #dc3545;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 14px;
}

.input-wrapper .form-control {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.input-wrapper .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.textarea-wrapper i {
    top: 15px;
    transform: none;
}

.textarea-wrapper .form-control {
    padding-top: 15px;
    min-height: 100px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.form-check label {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.form-submit {
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .job-info-card,
    .application-form-card {
        padding: 25px;
    }
    
    .btn-apply-main,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   LANGUAGE SWITCHER
   =================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    color: white;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(30, 58, 138, 0.3);
}

.lang-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.4);
}

.lang-code {
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .lang-btn {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}
