/*
Theme Name: Bİgelal Tema
Theme URI: https://bigelal.com
Author: Bİgelal
Author URI: https://bigelal.com
Description: Bİgelal için özel geliştirilmiş kurumsal WordPress teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bigelal
Tags: custom, responsive, business

Kurumsal Renkler:
- Koyu Turuncu: #DF7010
- Açık Turuncu: #FF9F51
- Siyah: #343434
*/

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #343434;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #DF7010;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #343434;
}

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

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    background-color: #343434;
    padding: 10px 0;
}

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

.header-info {
    display: flex;
    gap: 20px;
    color: #ffffff;
    font-size: 14px;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

.header-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    color: #ffffff;
    transform: scale(1.05);
}

.whatsapp-btn i {
    font-size: 16px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.email-link:hover {
    color: #FF9F51;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FF9F51;
}

.header-main {
    padding: 15px 0;
}

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

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-logo a {
    display: inline-block;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #343434;
    padding: 10px 0;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #DF7010;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #DF7010;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #343434;
    cursor: pointer;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 600px;
    overflow: hidden;
    background-color: #ffffff;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.slide-content {
    text-align: center;
    color: #ffffff;
    max-width: 90%;
    padding: 0 20px;
}
.slide-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background-color: #DF7010;
    transform: scale(1.3);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.slider-arrow:hover {
    background-color: #DF7010;
}
.slider-arrow.prev {
    left: 30px;
}
.slider-arrow.next {
    right: 30px;
}
/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
    color: #ffffff;
}

.btn-primary {
    background-color: #DF7010;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c55e0d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 112, 16, 0.3);
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #DF7010;
}

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

.about-section {
    background: linear-gradient(135deg, #DF7010 0%, #FF9F51 100%);
    color: #ffffff;
}

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

.about-left h2 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 32px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

/* ==========================================================================
   MÜŞTERİ YORUMLARI - YUKARIYA KAYAN
   ========================================================================== */

.testimonials-scroll-container {
    height: 430px;
    overflow: hidden;
    position: relative;
}

.testimonials-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: scrollUp 30s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-scroll-track:hover {
    animation-play-state: paused;
}

.testimonial-scroll-item {
    flex-shrink: 0;
}

.testimonial-bubble {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 15px;
    position: relative;
    min-height: 110px;
}

.testimonial-bubble::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 50px;
    color: #DF7010;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-bubble p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    font-style: italic;
    margin: 0;
    padding-left: 10px;
}

.testimonial-author {
    padding-left: 20px;
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

@media (max-width: 768px) {
    .testimonials-scroll-container {
        height: 500px;
    }
}
/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */

.categories-section {
    background-color: #ffffff;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.category-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    width: calc(25% - 24px);
    min-width: 250px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(223, 112, 16, 0.2);
}

.category-image {
    width: 100%;
    height: 270px;
    background: linear-gradient(135deg, #FF9F51 0%, #DF7010 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 25px;
    font-family: 'Open Sans', sans-serif;
}

.category-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #343434;
    font-family: 'Montserrat', sans-serif;
}

.category-items {
    list-style: none;
    padding-left: 0;
    font-family: 'Open Sans', sans-serif;
}

.category-items li {
    padding: 8px 0;
    color: #666666;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    font-family: 'Open Sans', sans-serif;
}

.category-items li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #FF9F51;
    font-weight: bold;
}

/* ==========================================================================
   BRANDS SECTION (Marka Bandı)
   ========================================================================== */

.brands-section {
    background-color: #f5f5f5;
    padding: 60px 0 30px;
    overflow: hidden;
}

.brands-section .section-title {
    margin-bottom: 40px;
}

.brands-marquee {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    border-top: 2px solid #DF7010;
    border-bottom: 2px solid #DF7010;
}

.brands-track {
    display: flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

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

.brand-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 20px;
}

.brand-item img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ==========================================================================
   HOW WE WORK SECTION
   ========================================================================== */

.how-we-work-section {
    background-color: #f5f5f5;
}

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

.step-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(223, 112, 16, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DF7010, #FF9F51);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #343434;
}

.step-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

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

.contact-section {
    background: linear-gradient(135deg, #DF7010 0%, #FF9F51 100%);
    color: #ffffff;
    padding: 50px 0;
}

.contact-section .section-title {
    color: #ffffff;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-row-single {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #ffffff;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.captcha-group {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-question {
    background-color: #ffffff;
    color: #DF7010;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
}

.captcha-wrapper input[type="number"] {
    flex: 1;
    min-width: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    background-color: #343434;
    color: #ffffff;
    padding: 15px 50px;
}

.form-submit .btn:hover {
    background-color: #ffffff;
    color: #DF7010;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.form-message.error {
    background-color: rgba(255, 59, 48, 0.2);
    border: 2px solid rgba(255, 59, 48, 0.5);
    color: #ffffff;
}

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

.site-footer {
    background-color: #343434;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FF9F51;
}

.footer-widget p,
.footer-widget a {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
}

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

.footer-widget ul li a:hover {
    color: #FF9F51;
    padding-left: 5px;
}

.footer-widget img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-widget .widget {
    margin-bottom: 0;
}

.footer-widget .widget img {
    max-width: 100%;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo-custom {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-logo-custom .logo-b {
    color: #FF9F51;
}

.footer-logo-custom .logo-rest {
    color: #ffffff;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal-links .legal-link {
    color: #cccccc;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-links .legal-link:hover {
    color: #FF9F51;
}

.footer-legal-links .separator {
    color: #666666;
}
.footer-description {
    margin-top: 15px;
}

.footer-description p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-description p strong {
    color: #FF9F51;
    font-weight: 600;
}

/* ==========================================================================
   LEGAL MODAL
   ========================================================================== */

.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.legal-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-content {
    background-color: #ffffff;
    margin: 20px;
    padding: 0;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.legal-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    background: #DF7010;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.legal-modal-close:hover {
    background: #c55e0d;
    transform: rotate(90deg) scale(1.1);
}

.legal-modal-body {
    padding: 60px 40px 40px;
    overflow-y: auto;
    color: #343434;
}

.legal-modal-body h2 {
    color: #DF7010;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 3px solid #FF9F51;
    padding-bottom: 15px;
    padding-right: 40px;
}

.legal-modal-body h3 {
    color: #343434;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-modal-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-modal-body li {
    margin-bottom: 10px;
    line-height: 1.6;
    list-style: disc;
}

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

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

/* ==========================================================================
   PAGE CONTENT
   ========================================================================== */

.page-content {
    min-height: 400px;
}

.page-title {
    text-align: center;
    color: #DF7010;
    margin-bottom: 40px;
}

.entry-content {
    line-height: 1.8;
    color: #666666;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 30px;
    color: #343434;
}

/* ==========================================================================
   ERROR 404
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: 100px 0;
}

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

/* Responsive Tasarım - Tablet */
@media (max-width: 992px) {
    .hero-slider {
        height: 400px;
    }
    .slide-content h2 {
        font-size: 36px;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .slider-arrow.prev {
        left: 20px;
    }
    .slider-arrow.next {
        right: 20px;
    }
}

@media (max-width: 1024px) {
    .header-main .container {
        padding: 0 20px;
    }
    
    .main-navigation ul {
        gap: 20px;
    }
    
    .about-two-columns {
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-card {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .header-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
        padding: 20px;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px 0;
        font-family: 'Open Sans', sans-serif;
    }
    
    /* SLIDER RESPONSİVE */
    .hero-slider {
        height: 350px;
    }
    
    .slide img {
        object-fit: contain;
    }
    
    .slide-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-nav {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .about-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-slider {
        height: 350px;
    }
    
    .categories-grid {
        gap: 20px;
    }
    
    .category-card {
        width: calc(50% - 15px);
        min-width: unset;
    }
    
    /* BRANDS RESPONSİVE */
    .brands-marquee {
        height: 80px;
    }
    
    .brands-track {
        animation: scroll 50s linear infinite;
    }
    
    .brand-item {
        width: 150px;
        height: 80px;
        padding: 15px;
        margin: 0 10px;
    }
    
    .brand-item img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .legal-modal-body {
        padding: 50px 20px 20px;
    }
    
    .legal-modal-body h2 {
        font-size: 20px;
        padding-right: 35px;
    }
    
    .legal-modal-close {
        right: 10px;
        top: 10px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* SLIDER KÜÇÜK MOBİL */
    .hero-slider {
        height: 280px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
        border: 1px solid #ffffff;
    }
    
    /* BRANDS KÜÇÜK MOBİL */
    .brands-marquee {
        height: 70px;
    }
    
    .brands-track {
        animation: scroll 60s linear infinite;
    }
    
    .brand-item {
        width: 120px;
        height: 70px;
        padding: 10px;
        margin: 0 8px;
    }
    
    .brand-item img {
        max-width: 100px;
        max-height: 40px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .categories-grid {
        gap: 15px;
    }
    
    .category-card {
        width: 100%;
        min-width: unset;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.text-primary {
    color: #DF7010;
}

.bg-primary {
    background-color: #DF7010;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DF7010, #FF9F51);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(223, 112, 16, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    background: linear-gradient(135deg, #c55e0d, #DF7010);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(223, 112, 16, 0.4);
}

#scroll-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}
/* ==========================================================================
   KATEGORİ GALERİ BADGE
   ========================================================================== */

.category-card.has-gallery {
    cursor: pointer;
}

.category-card.has-gallery:hover .category-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.gallery-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(223, 112, 16, 0.9);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-badge i {
    font-size: 14px;
}

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

.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(223, 112, 16, 0.8);
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: #DF7010;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    background: rgba(223, 112, 16, 0.8);
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #DF7010;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

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

