/* ============================================
   BEŞALTI TEKSTİL - CSS STYLESHEET
   Renk Paleti: #E0870B, #227185, #8D8C8A
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E0870B;
    --secondary-color: #227185;
    --tertiary-color: #8D8C8A;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 12px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar a:hover {
    color: var(--primary-color);
}

.topbar-contact-btn {
    background-color: #E0870B;
    color: var(--white) !important;
    padding: 5px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(224, 135, 11, 0.3);
}

.topbar-contact-btn:hover {
    background-color: #c7750a;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 135, 11, 0.5);
}

.topbar i {
    font-size: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--dark-gray);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
}

/* ============================================
   SLIDER
   ============================================ */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Slider Dekoratif SVG Desenler */
.slider-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.slider-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
}

.slider-decoration-left {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 300px;
    opacity: 1;
}

.slider-decoration-right {
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    opacity: 1;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1200px;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%) rotateY(-45deg) scale(0.8);
    transform-origin: center center;
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    filter: blur(8px);
    will-change: transform, opacity, filter;
}

.slide.prev {
    transform: translateX(-100%) rotateY(45deg) scale(0.8);
    opacity: 0;
    filter: blur(8px);
}

.slide.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
    pointer-events: auto;
    z-index: 2;
    filter: blur(0);
}

.slide.next {
    transform: translateX(100%) rotateY(-45deg) scale(0.8);
    opacity: 0;
    filter: blur(8px);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide.active img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    text-align: center;
    color: var(--white);
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    opacity: 0;
    transition: all 1s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.products-grid.centered-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-content {
    padding: 20px;
}

.product-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.product-card p {
    color: var(--tertiary-color);
    margin-bottom: 15px;
    font-size: 14px;
}

/* ============================================
   CATEGORY ACCORDION
   ============================================ */
.category-accordion {
    margin-top: 30px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-header.active {
    background: var(--secondary-color);
    color: var(--white);
}

.accordion-header h3 {
    font-size: 18px;
    margin: 0;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-body {
    padding: 20px;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
}

.accordion-body li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 20px;
    position: relative;
}

.accordion-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.accordion-body li:last-child {
    border-bottom: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
}

/* ============================================
   NEWS & BLOG
   ============================================ */
.news-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card,
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.news-card img,
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content,
.blog-card-content {
    padding: 20px;
}

.news-card h3,
.blog-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.news-date,
.blog-date {
    color: var(--tertiary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.news-card p,
.blog-card p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ============================================
   BLOG/HABER DETAIL
   ============================================ */
.detail-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.detail-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.detail-date {
    font-size: 16px;
    opacity: 0.9;
}

.detail-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.detail-content img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
}

.detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.detail-content h2 {
    color: var(--secondary-color);
    margin: 40px 0 20px;
    font-size: 28px;
}

.detail-content h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 22px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.contact-item-content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--dark-gray);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    color: #cccccc;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu a {
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 0;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-content {
        padding: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section {
        padding: 50px 0;
    }

    .slider-decoration-left,
    .slider-decoration-right {
        width: 250px;
        height: 200px;
        opacity: 0.6;
    }

    .products-grid,
    .gallery-grid,
    .news-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .products-grid.centered-two {
        max-width: 100%;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .topbar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .topbar-contact-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    .slider-container {
        height: 400px;
    }

    .slider-decoration-left,
    .slider-decoration-right {
        width: 250px;
        height: 200px;
        opacity: 0.85;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px;
    }

    .slider-decoration-left,
    .slider-decoration-right {
        width: 180px;
        height: 150px;
        opacity: 0.75;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    width: fit-content;
    animation: slideTestimonials 24s linear infinite;
}

.testimonials-wrapper:hover {
    animation-play-state: paused;
}

.testimonial-item {
    min-width: 250px;
    margin-right: 30px;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 15px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--tertiary-color);
    font-size: 12px;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        width: 90%;
        max-width: 100%;
    }
    
    .testimonial-item {
        min-width: 140px;
        margin-right: 20px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
