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

:root {
    --primary-color: #e31e24;
    --primary-dark: #c41a1f;
    --primary-light: #ff4757;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --gradient-primary: linear-gradient(135deg, #e31e24 0%, #ff4757 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --shadow: 0 10px 30px rgba(227, 30, 36, 0.1);
    --shadow-hover: 0 15px 40px rgba(227, 30, 36, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

@media (max-width: 480px) {
    .container {
        max-width: 100vw;
        padding: 0;
        margin: 0;
        width: 100vw;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 480px) {
    .nav-container {
        max-width: 100vw;
        padding: 0 15px;
        margin: 0;
        width: 100vw;
    }
}

@media (min-width: 481px) and (max-width: 1110px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .hero-container {
        width: 100vw;
        padding: 0;
        margin: 0;
        max-width: none;
    }
    
    .hero-slider {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slider-container {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide-image {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide-img {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .container {
        max-width: 100vw;
        padding: 0;
        margin: 0;
        width: 100vw;
    }
    
    .nav-container {
        max-width: 100vw;
        padding: 0 20px;
        margin: 0;
        width: 100vw;
    }
}

@media (min-width: 771px) and (max-width: 1070px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .hero-container {
        width: 100vw;
        padding: 0;
        margin: 0;
        max-width: none;
        position: relative;
    }
    
    .hero-slider {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
        position: relative;
    }
    
    .slider-container {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
        position: relative;
    }
    
    .slide {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
        position: relative;
    }
    
    .slide-image {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
        position: relative;
    }
    
    .slide-img {
        width: 100vw;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 0;
        max-width: none;
        position: relative;
    }
    
    .container {
        max-width: 100vw;
        padding: 0;
        margin: 0;
        width: 100vw;
    }
    
    .nav-container {
        max-width: 100vw;
        padding: 0 20px;
        margin: 0;
        width: 100vw;
    }
}

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

.nav-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    gap: 5px;
}

.anadolu-text {
    color: var(--white);
    background: var(--dark-gray);
    padding: 8px 12px;
    border-radius: 8px;
}

.bebe-text {
    color: var(--dark-gray);
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slide.active .slide-image {
    transform: scale(1.02);
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0;
    filter: brightness(0.6);
}

.slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 2rem 4rem;
    width: 100%;
    height: 100%;
}

.slide-text {
    text-align: left;
    flex: 1;
}

.slide-content .author {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-content .title {
    font-size: 3rem;
    font-weight: 400;
    font-family: inherit;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.slide-button {
    text-align: right;
    flex: 0 0 auto;
}

.slide-button button {
    background: var(--primary-color);
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.slide-button button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.slide-button button a {
    color: inherit;
    text-decoration: none;
}



.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header h2 i {
    color: var(--primary-color);
    font-size: 2rem;
    animation: star-glow 2s ease-in-out infinite alternate;
}

@keyframes star-glow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.section-header p::before,
.section-header p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    top: -10px;
}

.section-header p::before {
    left: 0;
}

.section-header p::after {
    right: 0;
}

/* Biz Neredeyiz Section */
.biz-neredeyiz {
    padding: 100px 0;
    background: var(--white);
}

.biz-neredeyiz-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    align-items: start;
}

.biz-neredeyiz-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.biz-neredeyiz-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.biz-neredeyiz-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.biz-neredeyiz-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-section,
.brands-section,
.references-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.about-section:last-child,
.brands-section:last-child,
.references-section:last-child {
    border-bottom: none;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-secondary);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.brand-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.brand-logo {
    width: 100%;
    max-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: inherit;
}

.brand-item p {
    font-size: 0.9rem;
    margin: 0;
    color: inherit;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.partner-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(5px);
}

.testimonial {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.biz-neredeyiz-map {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.biz-neredeyiz-map h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1;
    min-height: 400px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

/* Responsive Design */
@media (min-width: 770px) {
    .biz-neredeyiz-content {
        grid-template-columns: 1fr 4fr;
        gap: 3rem;
    }
    
    .biz-neredeyiz-map {
        width: 1100px;
        max-width: 1100px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .biz-neredeyiz-content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 2.5fr 1fr;
        gap: 0rem;
    }
    
    .contact-page-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-slider {
        width: 100%;
        height: calc(100vh - 80px);
    }
    
    .slider-container {
        height: calc(100vh - 80px);
    }
    
    .slide-image {
        width: 100%;
        height: calc(100vh - 80px);
    }
    
    .slide-img {
        width: 100%;
        height: calc(100vh - 80px);
        object-fit: cover;
        position: relative;
        top: 0;
    }
    
    .slide-image i {
        font-size: 2.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .biz-neredeyiz {
        padding: 60px 0;
    }
    
    .biz-neredeyiz-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .biz-neredeyiz-text h3 {
        font-size: 1.8rem;
    }
    
    .biz-neredeyiz-text h4 {
        font-size: 1.3rem;
    }
    
    .biz-neredeyiz-map {
        min-height: 400px;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1rem;
    }
    
    .partners-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .partner-item {
        padding: 0.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        gap: 0.5rem;
    }
    
    .section-header h2 i {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* About Page Responsive */
    .about-content {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .quality-section {
        padding: 60px 0;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .quality-card {
        padding: 2rem;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 2rem;
    }
    
    /* Logo Section Responsive */
    .logo-section {
        padding: 60px 0;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .logo-area {
        padding: 2rem;
        min-height: 300px;
    }
    
    .logo-image {
        max-width: 200px;
        max-height: 200px;
    }
    
    .logo-placeholder h3 {
        font-size: 1.3rem;
    }
    
    /* Brands Page Responsive */
    .brands-content {
        padding: 60px 0;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-card {
        padding: 2rem;
    }
    
    .product-categories {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .quality-assurance {
        padding: 60px 0;
    }
    
    .quality-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .quality-feature {
        padding: 2rem;
    }
    
    /* Brands Categories Responsive */
    .brands-categories {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-title i {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brand-item {
        padding: 1.5rem;
    }
    
    .brand-image {
        width: 60px;
        height: 60px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .success-stories {
        padding: 60px 0;
    }
    
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .success-card {
        padding: 2rem;
    }
    
    /* Contact Page Responsive */
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo-image {
        width: 55px;
        height: 55px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-slider {
        max-width: 300px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slide-image {
        height: calc(100vh - 80px);
    }
    
    .slide-img {
        height: calc(100vh - 80px);
    }
    
    .hero-overlay {
        flex-direction: column;
        padding: 0 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-button {
        margin-left: 0;
    }
    
    .hero-button .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        gap: 0.3rem;
    }
    
    .section-header h2 i {
        font-size: 1.2rem;
    }
    
    .section-header p {
        padding: 0 1rem;
    }
    
    .section-header p::before,
    .section-header p::after {
        font-size: 1.5rem;
        top: -5px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .biz-neredeyiz-text h3 {
        font-size: 1.5rem;
    }
    
    .biz-neredeyiz-text h4 {
        font-size: 1.2rem;
    }
    
    .biz-neredeyiz-text h5 {
        font-size: 1.1rem;
    }
    
    .biz-neredeyiz-text p {
        font-size: 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .brand-item {
        padding: 0.8rem;
    }
    
    .brand-item h5 {
        font-size: 1rem;
    }
    
    .brand-item p {
        font-size: 0.8rem;
    }
    
    .partner-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-author strong {
        font-size: 0.9rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    /* About Page Mobile */
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .values-list li {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quality-card {
        padding: 1.5rem;
    }
    
    .quality-card h3 {
        font-size: 1.3rem;
    }
    
    .quality-card p {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-card h3 {
        font-size: 1.3rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
    
    /* Logo Section Mobile */
    .logo-grid {
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .logo-area {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .logo-image {
        max-width: 150px;
        max-height: 150px;
    }
    
    .logo-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .logo-placeholder p {
        font-size: 0.9rem;
    }
    
    .logo-link input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    /* Brands Page Mobile */
    .brands-grid {
        gap: 1rem;
    }
    
    .brand-card {
        padding: 1.5rem;
    }
    
    .brand-card h3 {
        font-size: 1.3rem;
    }
    
    .brand-card p {
        font-size: 0.9rem;
    }
    
    .brand-features li {
        font-size: 0.9rem;
    }
    
    .brand-products li {
        font-size: 0.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.3rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    .category-card li {
        font-size: 0.9rem;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quality-feature {
        padding: 1.5rem;
    }
    
    .quality-feature h3 {
        font-size: 1.3rem;
    }
    
    .quality-feature p {
        font-size: 0.9rem;
    }
    
    /* Brands Categories Mobile */
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-title i {
        font-size: 1.8rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1rem;
    }
    
    .brand-image {
        width: 50px;
        height: 50px;
    }
    
    .brand-item h4 {
        font-size: 1.1rem;
    }
    
    .brand-item p {
        font-size: 0.8rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .author-info strong {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .success-card {
        padding: 1.5rem;
    }
    
    .success-card h3 {
        font-size: 1.2rem;
    }
    
    .success-card p {
        font-size: 0.9rem;
    }
    
    .success-year {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Contact Page Mobile */
    .contact-page-content {
        gap: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
}

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

/* About Content */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.values-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quality-icon i {
    font-size: 2rem;
    color: var(--white);
}

.quality-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.quality-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-image i {
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray);
    line-height: 1.6;
}

/* Logo Section */
.logo-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    transition: all 0.3s ease;
    min-height: 400px;
}

.logo-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.logo-link {
    width: 100%;
    max-width: 300px;
    text-align: left;
}

.logo-link label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.logo-link input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.logo-link input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.logo-link input::placeholder {
    color: #adb5bd;
}

/* Brands Content */
.brands-content {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.brand-products {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.brand-products h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-products ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.brand-products li {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    text-align: left;
}

.category-card li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.category-card li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Quality Assurance */
.quality-assurance {
    padding: 80px 0;
    background: var(--light-gray);
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quality-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quality-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.quality-feature p {
    color: var(--gray);
    line-height: 1.6;
}

/* Brands Categories Section */
.brands-categories {
    padding: 80px 0;
    background: var(--white);
}

.category-section {
    margin-bottom: 4rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.category-title i {
    font-size: 2.5rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.brand-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-secondary);
}

.brand-logo {
    margin-bottom: 1.5rem;
}

.brand-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.brand-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.brand-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.author-info strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: var(--white);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.success-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 2rem;
    color: var(--white);
}

.success-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: var(--white);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Catalog Page Styles */
.catalog-section {
    padding: 80px 0;
    background: var(--white);
}

.catalog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.catalog-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.catalog-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.catalog-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.catalog-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
}

.catalog-item p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

.catalog-upload {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.upload-area {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 3px dashed #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary-color);
    background: var(--white);
}

.upload-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.upload-area h3 {
    margin: 0 0 1rem 0;
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
}

.upload-area p {
    margin: 0 0 2rem 0;
    color: var(--gray);
    line-height: 1.6;
}

.upload-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
}

.upload-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.upload-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.upload-success,
.upload-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-success i {
    color: #28a745;
}

.upload-error i {
    color: #dc3545;
}

.catalog-preview {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.catalog-preview h3 {
    margin: 0 0 1.5rem 0;
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
}

.pdf-preview {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: border-color 0.3s ease;
}

.pdf-preview:hover {
    border-color: var(--primary-color);
}

.pdf-preview i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.pdf-preview h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
}

.pdf-preview p {
    margin: 0 0 1.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.pdf-viewer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.pdf-viewer h4 {
    margin: 0 0 1rem 0;
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.pdf-viewer iframe {
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
    padding: 0 4rem;
}

.hero-overlay {
    position: absolute;
   
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    padding: 0 4rem;
}

.hero-text {
    text-align: left;
    color: white;
    z-index: 6;
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.2;
}

.hero-button {
    z-index: 6;
    margin-left: 2rem;
}

.hero-button .btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.hero-button .btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
    width: 100%;
    height: calc(100vh - 80px);
    position: absolute;
    top: 80px;
    left: 0;
}

.brand-card {
    animation: fadeInUp 0.6s ease-out;
}

.brand-card:nth-child(1) { animation-delay: 0.1s; }
.brand-card:nth-child(2) { animation-delay: 0.2s; }
.brand-card:nth-child(3) { animation-delay: 0.3s; }
.brand-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Utilities */
.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    
    .show-mobile {
        display: block;
    }
    
    .slide-content {
        padding: 1rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 2rem;
    }
    
    .slide-text {
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }
    
    .slide-content .author {
        font-size: 1rem;
    }
    
    .slide-content .title {
        font-size: 2rem;
    }
    
    .slide-button {
        text-align: center;
        padding-top: 15rem;
    }
    
    .slide-button button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100vw;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .hero-container {
        width: 100vw;
        padding: 0;
        margin: 0;
        max-width: none;
    }
    
    .hero-slider {
        width: 100vw;
        height: calc(100vh - 70px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slider-container {
        width: 100vw;
        height: calc(100vh - 70px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide {
        width: 100vw;
        height: calc(100vh - 70px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide-image {
        width: 100vw;
        height: calc(100vh - 70px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide-img {
        width: 100vw;
        height: calc(100vh - 70px);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .slide-content {
        padding: 0.5rem;
        max-width: 100%;
        padding-top: 18rem;
    }
    
    .slide-content .author {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content .title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .slide-content .buttons {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .slide-content .buttons button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .slide-button {
        text-align: center;
        padding-top: 2rem;
    }
    
    .slide-button button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .slider-controls {
        bottom: 1rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .brand-item, .partner-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn {
        padding: 15px 30px;
    }
    
    .nav-link {
        padding: 10px 0;
    }
}

/* Print styles */
@media print {
    .navbar, .footer, .back-to-top, .hamburger {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .biz-neredeyiz {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .about-content, .brands-content, .partners-section, 
    .testimonials-section, .success-stories, .contact-page {
        padding: 2rem 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}
/* Production Gallery */
.production-gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

.gallery-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-slider {
        height: 300px;
    }
    
    .gallery-controls {
        padding: 0 1rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
/* Brand Logos Carousel */
.brand-carousel-section {
    background: white;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.brand-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.brand-carousel {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.brand-carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200px * 18); /* 18 logo, her biri 200px */
}

.brand-item {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

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

/* Pause animation on hover */
.brand-carousel:hover .brand-carousel-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .brand-carousel-track {
        width: calc(150px * 8);
    }
    
    .brand-item {
        flex: 0 0 150px;
        padding: 0.5rem;
    }
}
/* Quero Marka Tanıtım Section */
.quero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.quero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.quero-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.quero-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quero-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.quero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature i {
    font-size: 1.2rem;
}

.quero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.quero-btn:hover {
    background: #c41a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

@media (max-width: 768px) {
    .quero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quero-info h2 {
        font-size: 2rem;
    }
}
