/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-yellow: #FFD700;
    --dark-yellow: #DAA520;
    --light-gray: #f5f5f5;
    --text-gray: #666;
    --border-gray: #ddd;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    max-width: 1400px;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background: var(--primary-black);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-heavy);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.lang-select {
    background: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 55px;
    max-width: 65px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.lang-select:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--white);
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.lang-select option {
    background: var(--primary-black);
    color: var(--white);
    padding: 0.5rem;
}

/* RTL Support */
.rtl {
    direction: rtl;
}

.rtl .header-content {
    flex-direction: row-reverse;
}

.rtl .nav-list {
    flex-direction: row-reverse;
}

.rtl .language-selector {
    margin-right: 0;
    margin-left: 1rem;
}

.rtl .hero-content {
    text-align: right;
}

.rtl .hero-subtitle {
    text-align: right;
}

/* Arabic Font Support */
.rtl body {
    font-family: 'Cairo', 'Noto Sans Arabic', 'Poppins', sans-serif;
}

.rtl h1, .rtl h2, .rtl h3, .rtl h4, .rtl h5, .rtl h6 {
    font-family: 'Cairo', 'Noto Sans Arabic', 'Poppins', sans-serif;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .mobile-catalog-btn {
        order: 2;
        margin-right: 0.3rem;
    }
    
    .language-selector {
        margin-right: 0.5rem;
        order: 3;
    }
    
    .mobile-menu-toggle {
        order: 4;
    }
    
    .lang-select {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .rtl .mobile-catalog-btn {
        order: 2;
        margin-left: 0.3rem;
        margin-right: 0;
    }
    
    .rtl .language-selector {
        margin-right: 0;
        margin-left: 0.5rem;
        order: 3;
    }
    
    .rtl .mobile-menu-toggle {
        order: 1;
    }
    
    .rtl .logo {
        order: 4;
    }
}

@media (max-width: 480px) {
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.3rem;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .mobile-catalog-btn {
        order: 2;
        margin-right: 0.25rem;
        padding: 0.25rem 0.5rem;
    }
    
    .mobile-catalog-btn .catalog-text {
        font-size: 0.6rem;
    }
    
    .language-selector {
        position: relative;
        top: auto;
        right: auto;
        margin-right: 0.3rem;
        order: 3;
    }
    
    .mobile-menu-toggle {
        order: 4;
    }
    
    .rtl .mobile-catalog-btn {
        order: 2;
        margin-left: 0.3rem;
        margin-right: 0;
    }
    
    .rtl .language-selector {
        right: auto;
        left: auto;
        margin-right: 0;
        margin-left: 0.3rem;
        order: 3;
    }
    
    .rtl .mobile-menu-toggle {
        order: 1;
    }
    
    .rtl .logo {
        order: 4;
    }
    
    .lang-select {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
}

.logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo a:hover {
    opacity: 0.9;
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
}

.logo h1 span {
    color: var(--primary-yellow);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--primary-yellow);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0.3rem 0 0 0.2rem;
    text-transform: lowercase;
    opacity: 0.9;
    font-family: 'Georgia', serif;
    transform: skewX(-8deg);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-catalog-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-catalog-btn::after {
    display: none;
}

.nav-catalog-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Mobile Catalog Button - Mobilde görünür */
.mobile-catalog-btn {
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white) !important;
    padding: 0.35rem 0.65rem;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.4rem;
    font-weight: 600;
    white-space: nowrap;
}

.mobile-catalog-btn .catalog-text {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
}

.mobile-catalog-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-quote-btn {
    background: var(--primary-yellow);
    color: var(--primary-black) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-quote-btn::after {
    display: none;
}

.nav-quote-btn:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Desktop'ta ok işareti görünmesin */
.dropdown > .nav-link::before {
    content: '';
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-black);
    list-style: none;
    min-width: 280px;
    max-width: 350px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-yellow);
    box-shadow: 0 5px 20px var(--shadow-heavy);
    z-index: 1001;
}

.rtl .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding-left: 2rem;
}

.rtl .dropdown-menu a:hover {
    padding-left: 1.5rem;
    padding-right: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 215, 0, 0.03) 10px,
            rgba(255, 215, 0, 0.03) 20px
        );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--primary-yellow);
    margin-top: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: slideFloat 3s ease-in-out infinite;
}

.slide-caption {
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--primary-yellow);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 215, 0, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-yellow);
    border-color: var(--white);
    transform: scale(1.3);
}

@keyframes slideFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-yellow);
}

.category-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-image {
    border-color: var(--primary-yellow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-category {
    background: var(--primary-black);
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-category:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Products Page */
.products-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.products-page .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.products-page .back-button:hover {
    color: var(--primary-yellow);
    transform: translateX(-5px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-yellow);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: var(--white);
    padding: 1rem;
}

.product-no-image {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    border: 2px dashed var(--border-gray);
}

.product-no-image span {
    font-size: 3rem;
    opacity: 0.5;
}

.product-no-image p {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    padding: 0 1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
}

.product-main-image.product-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    border: 3px dashed var(--border-gray);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.product-thumbnail {
    width: 100%;
    height: 100px;
    object-fit: contain;
    background: var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-yellow);
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-description-short {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.product-description-short.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}

.product-description-full {
    max-height: none;
}

.read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-black);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.read-more-btn:active {
    transform: translateY(0);
}

.product-specs {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.product-specs h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-black);
}

.spec-value {
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Vision, Mission, Values Section */
.vision-mission-values {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vmv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-heavy);
}

.vmv-card h3 {
    color: var(--primary-black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.vmv-list {
    list-style: none;
    padding: 0;
}

.vmv-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.vmv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.values-card {
    grid-column: 1 / -1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 3px 15px var(--shadow);
}

.value-item h4 {
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* RTL Support for Vision/Mission/Values */
.rtl .vmv-card {
    text-align: right;
}

.rtl .vmv-list li {
    padding-left: 0;
    padding-right: 1.5rem;
}

.rtl .vmv-list li::before {
    left: auto;
    right: 0;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0;
    background: var(--light-gray);
    min-height: 80vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-yellow);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--dark-yellow);
    text-decoration: underline;
}

.contact-card small {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.8rem;
    line-height: 1.4;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.whatsapp-card h3,
.whatsapp-card p,
.whatsapp-card small {
    color: var(--white);
}

.whatsapp-card a {
    color: var(--white);
}

.whatsapp-card .btn-whatsapp {
    background: var(--white);
    color: #25D366 !important;
    width: 100%;
    margin-top: 1rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

.whatsapp-card .btn-whatsapp span {
    color: #25D366 !important;
}

.whatsapp-card .btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: #128C7E !important;
}

.whatsapp-card .btn-whatsapp:hover span {
    color: #128C7E !important;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp span {
    color: var(--white) !important;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.contact-form-wrapper h3 {
    color: var(--primary-black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.contact-form,
.quote-form {
    background: var(--white);
    padding: 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Form içindeki harita bölümü */
.form-map-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.form-map-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    box-shadow: 0 10px 40px var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact-info {
    margin-top: 1.5rem;
}

.footer-contact-info p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact-info strong {
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.3rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact-info a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-black);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Modal (Lightbox) */
.image-modal {
    background: rgba(0, 0, 0, 0.95);
}

.image-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    color: var(--primary-yellow);
    transform: rotate(90deg);
}

.image-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 3rem;
}

.image-modal-content img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.image-modal-caption {
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.clickable-image {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Thank You Page */
.thank-you-page {
    padding: 5rem 0;
    min-height: 80vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    color: var(--primary-black);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.thank-you-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-yellow);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.thank-you-actions .btn {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--white);
}

/* Quote Page */
.quote-page {
    padding: 5rem 0;
    min-height: 80vh;
    background: var(--light-gray);
}

.quote-page-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.quote-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
    border-left: 4px solid var(--primary-yellow);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-box h3 {
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.quote-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.quote-form-container h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-yellow);
}

.main-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.main-quote-form label {
    display: block;
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.main-quote-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.main-quote-form select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.main-quote-form optgroup {
    font-weight: 600;
    font-style: normal;
    color: var(--primary-black);
}

.main-quote-form option {
    padding: 0.5rem;
}

.btn-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Blog Page */
.blog-page, .blog-detail-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-yellow);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: var(--light-gray);
    padding: 1rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.blog-card h3 {
    color: var(--primary-black);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.blog-article {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
}

.blog-article h2 {
    color: var(--primary-black);
    margin: 2rem 0 1rem;
    font-size: 2rem;
    border-left: 5px solid var(--primary-yellow);
    padding-left: 1rem;
}

.blog-article h3 {
    color: var(--primary-black);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.blog-article h4 {
    color: var(--primary-black);
    margin: 1.2rem 0 0.8rem;
    font-size: 1.2rem;
}

.blog-article p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-article ul, .blog-article ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.blog-article li {
    margin-bottom: 0.5rem;
}

.blog-article strong {
    color: var(--primary-black);
    font-weight: 600;
}

.blog-article a {
    color: var(--primary-yellow);
    font-weight: 600;
    text-decoration: underline;
}

/* FAQ Page */
.faq-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.faq-category-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--border-gray);
    background: var(--white);
    color: var(--primary-black);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    border-color: var(--primary-yellow);
    background: var(--light-gray);
}

.faq-category-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-black);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-yellow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question-icon {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Medium Screens - Optimize header for smaller desktops/tablets */
@media (max-width: 1200px) {
    .nav-list {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-catalog-btn,
    .nav-quote-btn {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }
    
    .logo h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-catalog-btn,
    .nav-quote-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .lang-select {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        min-width: 50px;
        max-width: 60px;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Masaüstü katalog butonunu gizle */
    .desktop-only {
        display: none !important;
    }
    
    /* Mobil katalog butonunu göster */
    .mobile-catalog-btn {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--primary-black);
        transition: all 0.3s ease;
        padding: 2rem;
        text-align: left;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-list > li {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .nav-list > li > .nav-link {
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
        text-align: left !important;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
        background: rgba(255, 215, 0, 0.08);
        border-left: 3px solid var(--primary-yellow);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 0 8px 8px 0;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobilde dropdown link stil */
    .dropdown > .nav-link {
        position: relative;
        padding: 1rem 1.5rem !important;
        display: block !important;
        width: 100%;
        text-align: left !important;
    }
    
    /* Ok işaretini tamamen kaldır */
    .dropdown > .nav-link::after {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.15);
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        padding-left: 1.5rem;
        background: rgba(255, 215, 0, 0.2);
        color: var(--primary-yellow);
    }

    .product-detail-content {
        grid-template-columns: 1fr;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-slider {
        margin-left: 0;
        max-width: 100%;
    }

    .slider-container {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .quote-page-content {
        grid-template-columns: 1fr;
    }

    .main-quote-form .form-row {
        grid-template-columns: 1fr;
    }

    .blog-articles {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        justify-content: flex-start;
    }

    .faq-category-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .hero {
        min-height: auto;
    }

    .hero-wrapper {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .slider-container {
        height: 300px;
    }

    .slide img {
        max-height: 250px;
    }

    .slide-caption {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .contact-form,
    .quote-form {
        padding: 1.5rem;
    }

    .image-modal-content {
        padding: 1rem;
    }

    .image-modal-content img {
        max-width: 95%;
        max-height: 80vh;
    }

    .image-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .image-modal-caption {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .blog-articles {
        grid-template-columns: 1fr;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .blog-article h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .quote-form-container {
        padding: 1.5rem;
    }

    .info-box {
        padding: 1.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
    
    .form-map-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .form-map-section h3 {
        font-size: 1.3rem;
    }

    .whatsapp-float {
        bottom: 60px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Extra small screens - WhatsApp button more left */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 55px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Thank You Page Mobile */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 3rem 2rem;
    }
    
    .thank-you-icon {
        font-size: 4rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .thank-you-message {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
}

/* Footer mobile optimization */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-column h3,
    .footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .footer-contact-info {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* Spam Protection Styles */
.spam-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #f5c6cb;
}

.spam-error strong {
    font-weight: bold;
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Honeypot field - completely hidden */
input[name="website_url"] {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Rate limit warning */
.rate-limit-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.rate-limit-warning h4 {
    margin: 0 0 10px 0;
    color: #856404;
}

.rate-limit-warning p {
    margin: 0;
    font-size: 14px;
}

/* Math verification styles */
.form-group label[for*="MathAnswer"] {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-group input[name="math_answer"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input[name="math_answer"]:focus {
    border-color: var(--primary-gold);
    outline: none;
    background-color: #fff;
}

.form-group input[name="math_answer"]::placeholder {
    color: #999;
    font-style: italic;
}

