/* ========================================
   NOPAŞ TEKSTİL - Ana Stil Dosyası
   ======================================== */

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555;
    background: #fff;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: #222;
    padding: 7px 0;
    border-bottom: 1px solid #333;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sol: İletişim Bilgileri */
.topbar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-info li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #bbb;
    font-size: 12px;
    white-space: nowrap;
}

.topbar-info li .fa {
    color: #e63946;
    font-size: 12px;
}

.topbar-info li a {
    color: #bbb;
    transition: color 0.2s;
    font-size: 12px;
}
.topbar-info li a:hover { color: #fff; }

.topbar-info li:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid #444;
}

/* Sağ: Sosyal + Dil */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: #444;
    margin: 0 12px;
}

.social-menu {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #aaa;
    font-size: 12px;
    transition: all 0.3s;
}

.social-menu li a.facebook:hover { background: #3b5998; color: #fff; }
.social-menu li a.twitter:hover  { background: #1da1f2; color: #fff; }
.social-menu li a.youtube:hover  { background: #ff0000; color: #fff; }
.social-menu li a.linkedin:hover { background: #0077b5; color: #fff; }

/* Dil Menüsü - Sağda */
.lang-menu {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.lang-menu li a {
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.lang-menu li a:hover,
.lang-menu li a.active {
    color: #fff;
    background: #e63946;
}

.lang-menu li:not(:last-child) a {
    margin-right: 3px;
}

/* ========================================
   MAIN NAV
   ======================================== */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo { padding: 8px 0; }
.nav-logo img { height: 60px; width: auto; }

.nav-menu-wrapper { flex: 1; display: flex; justify-content: flex-end; }

.forOther { display: flex; align-items: center; }
.forMobile { display: none; }

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 22px 15px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-menu > li > a:hover,
.main-menu > li > a.active,
.main-menu > li.active-li > a {
    color: #e63946;
}

/* Dropdown */
.drop-down {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    border-top: 2px solid #e63946;
    z-index: 999;
    padding: 5px 0;
}

.drop-down li a {
    display: block;
    padding: 10px 15px;
    color: #555;
    font-size: 13px;
    transition: all 0.2s;
}

.drop-down li a:hover { background: #f5f5f5; color: #e63946; padding-left: 20px; }

.main-menu li.drop:hover .drop-down,
.main-menu li.drop.hovered .drop-down {
    display: block;
}

/* Mobile hamburger */
.open-menu-button {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 15px 0;
}

.menuTitle {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.open-toggle {
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px 8px;
    cursor: pointer;
}

.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #555;
    margin: 4px 0;
    transition: all 0.3s;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.mobile-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.mobile-menu li a:hover,
.mobile-menu li.active a { color: #e63946; background: #fafafa; }

.mobile-menu li.active.bg { background: #f5f5f5; }

.drop-down-mobile li a {
    padding-left: 40px;
    font-size: 13px;
    background: #fafafa;
}

.chevron-icon { font-size: 10px; color: #e63946; }

/* ========================================
   SLIDER (Anasayfa)
   ======================================== */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    background: #000;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.slider-arrow:hover { background: rgba(0,0,0,0.7); }
.slider-arrow.prev { left: 15px; }
.slider-arrow.next { right: 15px; }

.slider-bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}
.slider-bullet.active { background: #fff; }

/* ========================================
   SLOGAN SECTION (Anasayfa)
   ======================================== */
.slogan-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.slogan-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.slogan-section p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
}

/* ========================================
   ÜRÜNLER CAROUSEL (Anasayfa)
   ======================================== */
.products-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e63946;
}

.products-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.products-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 0 10px;
}

.product-item {
    min-width: calc(33.333% - 14px);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-top {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
    padding: 10px;
    transition: transform 0.5s;
    display: block;
}

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

.product-btn-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.product-item:hover .product-btn-wrapper {
    transform: translateY(0);
}

.detailButton {
    display: inline-block;
    padding: 8px 25px;
    background: #e63946;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.2s;
}
.detailButton:hover { background: #c62828; }

.product-bottom {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.product-title a { color: #333; transition: color 0.2s; }
.product-title a:hover { color: #e63946; }

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    transition: all 0.2s;
}
.carousel-btn:hover { background: #e63946; color: #fff; border-color: #e63946; }

.see-all-btn {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.see-all-btn a {
    display: inline-block;
    padding: 12px 35px;
    background: #e63946;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.2s;
}
.see-all-btn a:hover { background: #c62828; }

/* ========================================
   BANT BAŞLIK (İç Sayfalar)
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px 0;
    border-bottom: 3px solid #e63946;
}

.page-banner h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #e63946;
}

/* ========================================
   SOL MENU (İç Sayfalar)
   ======================================== */
.inner-layout {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.sidebar {
    width: 250px;
    min-width: 250px;
    margin-right: 30px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.sidebar-menu li a .fa { color: #e63946; font-size: 12px; }
.sidebar-menu li a:hover { background: #f5f5f5; color: #e63946; padding-left: 20px; }
.sidebar-menu li.active a { background: #e63946; color: #fff; font-weight: 600; }
.sidebar-menu li.active a .fa { color: #fff; }
.sidebar-menu li:last-child a { border-bottom: none; }

.content-area {
    flex: 1;
    min-width: 0;
}

/* ========================================
   İÇERİK (Kurumsal Sayfalar)
   ======================================== */
.content-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 30px;
}

.content-box h2.title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e63946;
}

.font-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.font-controls span {
    cursor: pointer;
    background: #eee;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: background 0.2s;
}
.font-controls span:hover { background: #e63946; color: #fff; }

.fullbody {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.fullbody p { margin-bottom: 15px; }

/* ========================================
   ÜRÜN LİSTESİ (Ürünler Sayfası)
   ======================================== */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.products-grid .product-item {
    min-width: 0;
    width: calc(33.333% - 14px);
    flex: 0 0 calc(33.333% - 14px);
}

.products-grid .product-image {
    height: 225px;
}

/* ========================================
   İLETİŞİM
   ======================================== */
#map-container {
    width: 100%;
    height: 400px;
    background: #ddd;
    margin-bottom: 0;
}

#map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-section {
    padding: 40px 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 30px;
}

.contact-info h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e63946;
}

.contactInformation {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contactInformation:last-child { border-bottom: none; margin-bottom: 0; }

.contactInformation .fa {
    font-size: 20px;
    color: #e63946;
    margin-top: 2px;
    min-width: 24px;
}

.contactInformation .column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contactInformation .title {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contactInformation .desc {
    font-size: 14px;
    color: #444;
}

.contactInformation .desc a { color: #e63946; }

.contact-form-box {
    flex: 1.5;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 30px;
}

.contact-form-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e63946;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.form-title-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.contact-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
    outline: none;
}
.contact-input:focus { border-color: #e63946; }

textarea.contact-input {
    resize: vertical;
    min-height: 100px;
}

.btn-send {
    display: inline-block;
    padding: 12px 30px;
    background: #e63946;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
    margin-top: 5px;
}
.btn-send:hover { background: #c62828; }
.btn-send:disabled { opacity: 0.7; cursor: not-allowed; }

/* ========================================
   FOOTER
   ======================================== */
.footer-main {
    background: #222;
    padding: 50px 0;
    color: #aaa;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 40px;
}

.footer-col { flex: 1; }

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact ul li .fa {
    color: #e63946;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact ul li a { color: #aaa; transition: color 0.2s; }
.footer-contact ul li a:hover { color: #fff; }

.newsletter-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-inputs .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.newsletter_name,
.newsletter_text {
    padding: 9px 12px;
    background: #333;
    border: 1px solid #444;
    color: #ddd;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter_name:focus,
.newsletter_text:focus { border-color: #e63946; }

.newsletter_button {
    padding: 9px 20px;
    background: #e63946;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
}
.newsletter_button:hover { background: #c62828; }
.newsletter_button:disabled { opacity: 0.7; }

.newsletter-alert { margin-top: 10px; }

.footer-bottom {
    background: #1a1a1a;
    padding: 15px 0;
    border-top: 1px solid #333;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu li a {
    color: #666;
    font-size: 12px;
    transition: color 0.2s;
}
.footer-menu li a:hover,
.footer-menu li a.active { color: #e63946; }

/* ========================================
   INNER PAGE CONTAINER
   ======================================== */
.inner-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.inner-row {
    display: flex;
    gap: 30px;
}

/* ========================================
   ALERT
   ======================================== */
.alert {
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 13px;
    margin-top: 10px;
}
.alert-danger { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }

/* ========================================
   MULTIMEDYA FOTOĞRAFLAR
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(230,57,70,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .fa { font-size: 30px; color: #fff; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}
.lightbox-close:hover { color: #e63946; }

/* ========================================
   İNSAN KAYNAKLARI
   ======================================== */
.ik-form-section {
    margin-top: 20px;
}

.ik-form-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* ========================================
   ŞİRKETLERİMİZ
   ======================================== */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.company-card {
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 25px;
    transition: all 0.3s;
}
.company-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }
.company-card h3 { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 10px; }
.company-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* Şirketlerimiz - Logo Listesi (canlı site ile uyumlu) */
.companies-list {
    display: flex;
    flex-direction: row;       /* YAN YANA */
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 30px 0;
    margin: 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.companies-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 50px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 240px;
    text-align: center;
}

.companies-list li:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    background: #fff;
}

.companies-list .imagecontainer {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.companies-list .imagecontainer img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.companies-list h3.title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .forOther { display: none !important; }
    .forMobile { display: block !important; }
    .main-nav .container { flex-wrap: wrap; }
    .nav-menu-wrapper { width: 100%; }
    .open-menu-button { padding: 10px 0; }

    .inner-row { flex-direction: column; }
    .sidebar { width: 100%; margin-right: 0; margin-bottom: 20px; }

    .contact-section .container { flex-direction: column; }

    .products-grid .product-item { width: calc(50% - 10px); flex: 0 0 calc(50% - 10px); }

    .footer-main .container { flex-direction: column; }
    .footer-bottom .container { flex-direction: column; gap: 10px; }

    .companies-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-container { height: 300px; }
}

@media (max-width: 600px) {
    .slogan-section h1 { font-size: 24px; }
    .products-grid .product-item { width: 100%; flex: 0 0 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .product-item { min-width: 100% !important; }
    .slider-container { height: 200px; }
    .top-bar .container { flex-direction: column; gap: 5px; }
}

/* Animations */
.animation { transition: all 0.3s ease; }
