/* Alruna Garaj Kapıları - Retro/Vintage CSS Stilleri */

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

/* Hamburger Menu - Vintage Style */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b4513, #654321);
    border: 3px solid #d4c4a8;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
    position: relative;
}

.hamburger-menu:hover {
    background: linear-gradient(135deg, #654321, #8b4513);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
}

.hamburger-menu::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(244, 241, 232, 0.3);
    pointer-events: none;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #f4f1e8;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu açıkken body scroll'u engelle */
body.menu-open {
    overflow: hidden;
}

/* WhatsApp Floating Button - Vintage Style */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #f4f1e8;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 
        0 0 0 3px #d4c4a8,
        0 0 0 6px #25D366,
        0 8px 20px rgba(37, 211, 102, 0.4);
    border: 3px solid #d4c4a8;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px dashed rgba(244, 241, 232, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 0 3px #d4c4a8,
        0 0 0 6px #25D366,
        0 12px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.whatsapp-text {
    font-size: 0.7rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 3px #d4c4a8,
            0 0 0 6px #25D366,
            0 8px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 
            0 0 0 3px #d4c4a8,
            0 0 0 6px #25D366,
            0 8px 20px rgba(37, 211, 102, 0.4),
            0 0 0 12px rgba(37, 211, 102, 0.2);
    }
}

/* WhatsApp Button - Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-text {
        font-size: 0.6rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Oswald:wght@300;400;600&family=Courier+Prime:wght@400;700&display=swap');

body {
    font-family: 'Courier Prime', 'Courier New', monospace;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(45deg, #f4f1e8, #e8e0d3);
    background-attachment: fixed;
    font-size: 16px;
}

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

/* Vintage Paper Effect */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(160, 82, 45, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(139, 69, 19, 0.02) 50%, transparent 51%);
    pointer-events: none;
    z-index: -1;
}

/* Typography - Vintage Style */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.8rem;
    color: #8b4513;
    font-weight: 900;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.2rem;
    color: #a0522d;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    color: #8b4513;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
}

/* Buttons - Vintage Style */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    min-width: 140px;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #8b4513;
    color: #f4f1e8;
    border-color: #654321;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background-color: #654321;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background-color: #a0522d;
    color: #f4f1e8;
    border-color: #8b4513;
    box-shadow: 0 4px 8px rgba(160, 82, 45, 0.3);
}

.btn-secondary:hover {
    background-color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(160, 82, 45, 0.4);
}

.btn-block {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.contact-form .btn-block,
.contact-form button.btn-block {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
    padding: 18px 36px !important;
    font-size: 1.2rem !important;
    display: block !important;
    box-sizing: border-box !important;
    color: white !important;
    background-color: #8b4513 !important;
    border: 3px solid #8b4513 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    text-align: center !important;
    cursor: pointer !important;
    min-height: 60px !important;
    line-height: 1.2 !important;
}

.contact-form .form-group:last-child {
    width: 100%;
    text-align: center;
}

.contact-form .btn-block:hover,
.contact-form button.btn-block:hover {
    background-color: #a0522d !important;
    border-color: #a0522d !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Vintage Image Slider - Eskitme Stil */
.vintage-slider-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #e8e0d3 0%, #d4c4a8 100%);
    position: relative;
    overflow: hidden;
}

.vintage-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.03) 3px
        );
    pointer-events: none;
}

.vintage-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slider-frame {
    position: relative;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    padding: 20px;
    border: 8px solid #8b4513;
    box-shadow: 
        0 0 0 3px #d4c4a8,
        0 0 0 6px #8b4513,
        0 20px 40px rgba(139, 69, 19, 0.4),
        inset 0 0 20px rgba(139, 69, 19, 0.1);
    position: relative;
}

.slider-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(139, 69, 19, 0.3);
    pointer-events: none;
    z-index: 1;
}

.slider-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(139, 69, 19, 0.05) 50%, transparent 52%);
    pointer-events: none;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #2c2c2c;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(35%) contrast(1.15) brightness(0.95);
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.02);
    filter: sepia(40%) contrast(1.2) brightness(0.98);
}

.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.92), rgba(101, 67, 33, 0.92));
    padding: 20px 40px;
    border: 3px solid #f4f1e8;
    box-shadow: 
        0 0 0 2px #8b4513,
        0 8px 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    min-width: 350px;
    z-index: 3;
}

.slide-caption h3 {
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-caption p {
    color: rgba(244, 241, 232, 0.95);
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Vintage Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8b4513, #654321);
    color: #f4f1e8;
    border: 4px solid #d4c4a8;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 
        0 0 0 2px #8b4513,
        0 6px 12px rgba(139, 69, 19, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: linear-gradient(135deg, #654321, #8b4513);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 0 0 2px #8b4513,
        0 8px 16px rgba(139, 69, 19, 0.6);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav.prev {
    left: -30px;
}

.slider-nav.next {
    right: -30px;
}

.slider-nav span {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Vintage Dots */
.slider-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    padding: 12px 25px;
    border: 3px solid #8b4513;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.3);
}

.dot {
    width: 18px;
    height: 18px;
    border: 3px solid #8b4513;
    background: #f4f1e8;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(139, 69, 19, 0.2);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #8b4513;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
    border-color: #654321;
    box-shadow: 
        inset 0 2px 4px rgba(139, 69, 19, 0.3),
        0 0 10px rgba(139, 69, 19, 0.4);
}

.dot.active {
    background: #8b4513;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(139, 69, 19, 0.6);
}

.dot.active::after {
    width: 8px;
    height: 8px;
    background: #f4f1e8;
}

/* Responsive Design for Vintage Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 350px;
    }
    
    .slide-caption {
        min-width: 250px;
        padding: 15px 25px;
        bottom: 20px;
    }
    
    .slide-caption h3 {
        font-size: 1.4rem;
    }
    
    .slide-caption p {
        font-size: 0.95rem;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slider-nav.prev {
        left: -15px;
    }
    
    .slider-nav.next {
        right: -15px;
    }
    
    .slider-dots {
        bottom: -45px;
        padding: 10px 20px;
        gap: 12px;
    }
    
    .dot {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .vintage-slider-section {
        padding: 40px 0;
    }
    
    .slider-frame {
        padding: 15px;
        border-width: 6px;
    }
    
    .slider-container {
        height: 280px;
    }
    
    .slide-caption {
        min-width: 200px;
        padding: 12px 20px;
        bottom: 15px;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
    }
    
    .slide-caption p {
        font-size: 0.85rem;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .slider-nav.prev {
        left: -10px;
    }
    
    .slider-nav.next {
        right: -10px;
    }
}

/* Hero Section - Vintage Style */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(160, 82, 45, 0.85) 50%, rgba(205, 133, 63, 0.85) 100%),
        url('/img/MgX6PpvV3PyOsP7S7BUd.webp') center center;
    background-size: cover;
    background-attachment: fixed;
    color: #f4f1e8;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.05) 4px
        );
    filter: sepia(30%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(244, 241, 232, 0.95);
    font-family: 'Courier Prime', monospace;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Products Section - Vintage Style */
.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9f6f0 0%, #f4f1e8 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(139, 69, 19, 0.03) 100px
        );
    pointer-events: none;
}

.products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 
        0 8px 16px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(139, 69, 19, 0.05) 50%, transparent 52%);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 
        0 12px 24px rgba(139, 69, 19, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: #8b4513;
}

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

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), transparent);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: sepia(20%) contrast(1.1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: sepia(30%) contrast(1.2);
}

.no-image {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border: 2px dashed #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.no-image i {
    font-size: 24px;
    margin-bottom: 8px;
}

.product-content {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
}

.product-content h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.product-content p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.6rem 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 1.8rem;
    font-family: 'Courier Prime', monospace;
    border-bottom: 1px dotted rgba(139, 69, 19, 0.2);
}

.features-list li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
    font-size: 1.2rem;
}


/* Features Section - Vintage Style */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4c4a8 0%, #f0ede6 50%, #e8e0d3 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(160, 82, 45, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 
        0 6px 12px rgba(139, 69, 19, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 20px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: #8b4513;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: sepia(30%) hue-rotate(20deg);
}

.feature-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
}

/* CTA Section - Vintage Style */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #654321 50%, #a0522d 100%);
    color: #f4f1e8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.05) 11px,
            rgba(0,0,0,0.05) 12px
        );
    pointer-events: none;
}

.cta-section h2,
.cta-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.cta-section p {
    color: rgba(244, 241, 232, 0.95);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Related Products Section - Vintage Style */
.related-products {
    padding: 80px 0;
    background: linear-gradient(180deg, #e8e0d3 0%, #f9f6f0 100%);
    position: relative;
}

.related-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(139, 69, 19, 0.03) 100px
        );
    pointer-events: none;
}

.related-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.related-header h2 {
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.related-header .ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.related-header .ornament {
    font-size: 2rem;
    color: #8b4513;
}

.related-header .line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b4513, transparent);
}

.no-products-message {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    position: relative;
    z-index: 2;
}

.no-products-message::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.no-products-message p {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0;
}

/* Product Detail - Vintage Style */
.product-detail {
    padding: 40px 0;
    background: linear-gradient(180deg, #f9f6f0 0%, #f4f1e8 100%);
    position: relative;
}

.product-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(139, 69, 19, 0.03) 100px
        );
    pointer-events: none;
}

.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #8b4513;
    text-decoration: none;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #654321;
    text-decoration: underline;
}

.breadcrumb span {
    color: #a0522d;
    margin: 0 0.5rem;
    font-family: 'Courier Prime', monospace;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.product-images .main-image {
    margin-bottom: 1rem;
    position: relative;
}

.product-images .main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #d4c4a8;
    z-index: 1;
}

.product-images .main-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
    filter: sepia(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.product-images .main-image img:hover {
    filter: sepia(30%) contrast(1.2);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.image-gallery img {
    width: 100%;
    border: 2px solid #d4c4a8;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: sepia(15%) contrast(1.05);
}

.image-gallery img:hover {
    transform: scale(1.05);
    border-color: #8b4513;
    filter: sepia(25%) contrast(1.15);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
}

.product-info h1 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
}


.product-features, .product-specifications {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    position: relative;
}

.product-features::before, .product-specifications::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.product-features h3, .product-specifications h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.product-features ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.product-features li {
    padding: 0.6rem 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 1.8rem;
    font-family: 'Courier Prime', monospace;
    border-bottom: 1px dotted rgba(139, 69, 19, 0.2);
}

.product-features li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
    font-size: 1.2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.specs-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #d4c4a8;
    font-family: 'Courier Prime', monospace;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #8b4513;
    background: rgba(244, 241, 232, 0.5);
}

.product-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* Contact Page - Vintage Style */
.contact-page {
    padding: 40px 0;
    background: linear-gradient(180deg, #f9f6f0 0%, #f4f1e8 100%);
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(139, 69, 19, 0.03) 100px
        );
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.2);
    border-color: #8b4513;
}

.contact-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    filter: sepia(30%) hue-rotate(20deg);
}

.contact-text h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-text a {
    color: #8b4513;
    text-decoration: none;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-text a:hover {
    color: #654321;
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    padding: 2.5rem;
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-form .form-group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 2px solid #d4c4a8;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Courier Prime', monospace;
    background: rgba(244, 241, 232, 0.8);
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #8b4513;
    background: rgba(244, 241, 232, 1);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

/* Google reCAPTCHA Vintage Style */
.recaptcha-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    margin-bottom: 1.5rem !important;
    position: relative;
}

.recaptcha-wrapper::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.recaptcha-wrapper .g-recaptcha {
    transform: scale(1);
    transform-origin: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
    border: 3px solid #8b4513;
    border-radius: 0;
}

.recaptcha-note {
    color: #8b4513;
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.recaptcha-note::before {
    content: '⚠';
    margin-right: 5px;
    font-size: 1.1rem;
}

/* Responsive reCAPTCHA */
@media (max-width: 480px) {
    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
        margin: 0 auto 1rem;
    }
    
    .recaptcha-note {
        font-size: 0.8rem;
    }
}

/* About Page - Vintage Style */
.about-page {
    padding: 40px 0;
    background: linear-gradient(180deg, #f9f6f0 0%, #f4f1e8 100%);
    position: relative;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(139, 69, 19, 0.03) 100px
        );
    pointer-events: none;
}

.about-content {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.company-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    position: relative;
}

.company-intro::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.company-intro h2 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.company-intro p {
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
    position: relative;
    z-index: 2;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.mission, .vision {
    padding: 2.5rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
    border-color: #8b4513;
}

.mission h3, .vision h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.mission p, .vision p {
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
    position: relative;
    z-index: 2;
}

.values {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.values h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: linear-gradient(145deg, #f9f6f0, #f0ede6);
    border: 1px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 0 3px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(139, 69, 19, 0.15);
    border-color: #8b4513;
}

.value-icon {
    color: #8b4513;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.value-item span {
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
}

.company-stats {
    margin: 3rem 0;
    text-align: center;
}

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

.stat-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, #8b4513, #654321, #a0522d);
    color: #f4f1e8;
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(244, 241, 232, 0.3);
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.team-section {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #faf7f0, #f0ede6);
    border: 2px solid #d4c4a8;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.team-section h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.team-section p {
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

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

.team-member {
    padding: 2.5rem;
    background: linear-gradient(145deg, #f9f6f0, #f0ede6);
    border: 2px solid #d4c4a8;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(139, 69, 19, 0.2);
    border-color: #8b4513;
}

.member-avatar {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: sepia(30%) hue-rotate(20deg);
    position: relative;
    z-index: 2;
}

.team-member h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.team-member p {
    color: #4a4a4a;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Footer - Vintage Style */
.footer {
    background: linear-gradient(135deg, #8b4513 0%, #654321 50%, #a0522d 100%);
    color: #f4f1e8;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-section h3,
.footer-section h4 {
    color: #f4f1e8;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section p {
    color: rgba(244, 241, 232, 0.9);
    margin-bottom: 0.5rem;
    font-family: 'Courier Prime', monospace;
}

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

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

.footer-section ul li a {
    color: rgba(244, 241, 232, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Courier Prime', monospace;
}

.footer-section ul li a:hover {
    color: #f4f1e8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 241, 232, 0.3);
    padding-top: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(244, 241, 232, 0.8);
    margin: 0;
    font-family: 'Courier Prime', monospace;
}

/* Responsive Design - Vintage Style */
@media (max-width: 768px) {
    /* Hamburger Menu Göster */
    .hamburger-menu {
        display: flex;
    }
    
    /* Navigation Links - Mobile */
    .top-nav {
        position: relative;
    }
    
    .top-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #8b4513 0%, #654321 50%, #a0522d 100%);
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        border-left: 3px solid #d4c4a8;
        overflow-y: auto;
    }
    
    .top-nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .top-nav-links.active {
        right: 0;
    }
    
    .top-nav-links a {
        width: 100%;
        padding: 15px 20px;
        color: #f4f1e8;
        text-decoration: none;
        font-size: 1.2rem;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        border-bottom: 2px solid rgba(244, 241, 232, 0.2);
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .top-nav-links a:hover {
        background: rgba(244, 241, 232, 0.1);
        padding-left: 30px;
        border-left: 4px solid #f4f1e8;
    }
    
    .top-nav-links a::before {
        content: '◆';
        position: absolute;
        left: 0;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .top-nav-links a:hover::before {
        opacity: 1;
        left: 10px;
    }
    
    /* Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Mobile Menu - Küçük Ekranlar */
    .top-nav-links {
        width: 280px;
        padding: 70px 20px 20px;
    }
    
    .top-nav-links a {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .hamburger-menu {
        width: 45px;
        height: 45px;
        padding: 8px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .feature-item, .contact-item, .team-member {
        padding: 1.5rem;
    }
    
    .mission, .vision {
        padding: 2rem;
    }
    
    .company-intro {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .values {
        padding: 1.5rem;
    }
    
    .team-section {
        padding: 1.5rem;
    }
}
