/* ==================== 
   THONGCHIANGMAI CUES - Main Stylesheet
   ==================== */

/* ==================== Base Styles ==================== */
:root {
    --primary-color: #2e8b57; /* สีเขียว Sea Green */
    --secondary-color: #1a5d38; /* สีเขียวเข้ม */
    --accent-color: #3cb371; /* สีเขียว Medium Sea Green */
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #0f3823; /* สีเขียวเข้มมาก */
    --light-bg: #f8f8f8;
    --gray-bg: #f0f0f0;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-header.light h2,
.section-header.light p {
    color: var(--light-text);
}

.section-header.light h2::after {
    background-color: var(--light-text);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==================== Preloader ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cue-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.cue {
    position: absolute;
    width: 10px;
    height: 150px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: bottom center;
    animation: cueAnimation 2s infinite ease-in-out;
}

.ball {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: ballAnimation 2s infinite ease-in-out;
}

@keyframes cueAnimation {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(30deg);
    }
}

@keyframes ballAnimation {
    0%, 100% {
        top: 20%;
        left: 50%;
    }
    50% {
        top: 15%;
        left: 65%;
    }
}

/* ==================== Header ==================== */
header {
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    position: relative;
    letter-spacing: 1px;
}

.logo-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
}

.mobile-language-toggle {
    display: flex;
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--light-text);
    padding: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 139, 87, 0.2);
}

.mobile-language-toggle:hover {
    background-color: var(--primary-color);
}

.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 5px;
    flex-direction: column;
    width: auto;
    min-width: 60px;
    margin-top: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1003;
}

.language-switcher.open .language-menu {
    display: flex;
}

.lang-btn {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--light-text);
    padding: 5px 10px;
    margin: 3px 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: var(--border-radius);
    width: 100%;
    text-align: center;
}

.lang-btn:hover, .lang-btn.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* ==================== Hero Section ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 56, 35, 0.8), rgba(15, 56, 35, 0.8)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed; /* เพิ่มเพื่อให้พื้นหลังอยู่นิ่ง */
}

.hero-content {
    width: 50%;
    padding-left: 10%;
    color: var(--light-text);
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    width: 50%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cue-showcase {
    position: relative;
}

.cue-showcase img {
    max-height: 80vh;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down a {
    color: var(--light-text);
    font-size: 1.5rem;
}

/* ลบ animation bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%);
    }
    40% {
        transform: translateX(-50%);
    }
    60% {
        transform: translateX(-50%);
    }
}

/* ลบ animation fadeInUp */
@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Features Section ==================== */
.features {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-color);
    font-size: 1.2rem;
}

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

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ==================== Products Section ==================== */
.products {
    padding: 100px 0;
    background-color: #fff;
}

.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.filter-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--primary-color);
}

.filter-btn:hover::after, .filter-btn.active::after {
    width: 80%;
}

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

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 139, 87, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background-color: var(--light-text);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .btn-view {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-desc {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

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

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-add-cart {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
}

.view-all-products {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* ==================== Custom Order Section ==================== */
.custom-order {
    background: linear-gradient(rgba(15, 56, 35, 0.9), rgba(15, 56, 35, 0.9)), url('../images/custom-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: var(--light-text);
    text-align: center;
}

.custom-order .section-header h2 {
    color: var(--light-text);
}

.custom-order-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-order-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.custom-cta {
    margin-top: 30px;
}

.btn-white {
    background-color: var(--light-text);
    color: var(--secondary-color);
    border: 2px solid var(--light-text);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--light-text);
}

/* ==================== About Section ==================== */
.about {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

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

.stat-text {
    color: #666;
    font-size: 0.9rem;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
    background-color: #fff;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

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

.prev-testimonial, .next-testimonial {
    background-color: var(--light-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* ==================== Contact Section ==================== */
.contact {
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    margin-bottom: 5px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* ==================== Map Section ==================== */
.map {
    padding: 0;
}

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

/* ==================== Footer ==================== */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo p {
    color: #aaa;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter {
    flex: 1.5;
    min-width: 250px;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.btn-subscribe {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

/* ==================== Back to Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* ==================== RTL Support for Arabic ==================== */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .menu {
    flex-direction: row-reverse;
}

body.rtl .language-switcher {
    margin-left: 0;
    margin-right: 20px;
}

body.rtl .section-header h2::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

body.rtl .custom-steps li .step-number {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .contact-info i {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .footer-links {
    text-align: right;
}

body.rtl .social-links {
    justify-content: flex-end;
}

/* ==================== Responsive Design ==================== */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .language-switcher {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }
    
    .mobile-language-toggle {
        background-color: rgba(46, 139, 87, 0.2);
        border-color: var(--primary-color);
    }
    
    nav .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1001;
    }
    
    nav .menu.active {
        right: 0;
    }
    
    nav .menu li {
        margin: 15px 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-content {
        margin-top: 100px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .custom-order-content,
    .about-content {
        flex-direction: column;
    }
    
    .language-switcher {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .product-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-newsletter {
        min-width: 100%;
    }
}
