:root {
    /* Resmi İngiliz bayrağı renkleri */
    --british-red: #C8102E;
    --british-blue: #012169;
    --british-white: #FFFFFF;
    
    /* Türev renkler */
    --british-red-soft: #E63946;
    --british-red-light: #FF6B6B;
    --british-red-dark: #9B0A23;
    --british-blue-light: #0A2D89;
    --british-blue-dark: #001449;
    
    /* Ana renkler */
    --primary-black: #1A1A1A;
    --primary-color: var(--british-blue);
    --secondary-color: var(--british-red);
    --accent-color: var(--british-red-light);
    
    /* Buton renkleri */
    --btn-primary-bg: var(--british-blue);
    --btn-primary-text: var(--british-white);
    --btn-secondary-bg: var(--british-red);
    --btn-secondary-text: var(--british-white);
    --btn-hover-bg: var(--british-blue-light);
    
    /* Gradient güncellemeleri */
    --gradient-primary: linear-gradient(135deg, var(--british-blue) 0%, var(--british-blue-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--british-red) 0%, var(--british-red-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--british-blue-dark) 0%, var(--british-blue) 100%);
    
    /* Diğer değişkenler */
    --white: var(--british-white);
    --shadow-sm: 0 2px 8px rgba(1, 33, 105, 0.08);
    --shadow-md: 0 4px 12px rgba(1, 33, 105, 0.12);
    --shadow-lg: 0 8px 24px rgba(1, 33, 105, 0.15);
    
    /* Nötr renkler */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    
    /* Gölgeler - koyu mavi tonlarıyla */
    --shadow-hover: 0 12px 32px rgba(1, 33, 105, 0.2);
    
    /* Diğer değişkenler aynı kalacak */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-effect: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --card-radius: 16px;
    --btn-radius: 50px;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
}

.main-header {
    position: fixed;
    width: 100%;
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    z-index: 1000;
    height: 70px;
}

/* Header ayırıcı çizgi */
.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}

/* Hover durumunda çizgiyi belirginleştir */
.main-header:hover::after {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    height: 70px;
    align-items: center;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a.active {
    color: var(--british-blue);
    background: rgba(1, 33, 105, 0.05);
}

.nav-menu a:hover {
    color: var(--british-blue);
    background: rgba(1, 33, 105, 0.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--british-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 2.4rem);
    opacity: 1;
}

.logo {
    max-width: 242px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Ortak Hero Stili - Tüm sayfalar için */
.page-hero {
    position: relative;
    min-height: 600px;
    background: var(--british-white);
    padding-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Gradient arka plan efekti */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(1, 33, 105, 0.04) 0%, 
        rgba(255, 255, 255, 0) 60%,
        rgba(200, 16, 46, 0.03) 100%
    );
    z-index: 1;
}

.page-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

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

.page-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--british-blue);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--primary-black);
    margin-bottom: 2rem;
    max-width: 90%;
}

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

.page-hero-image {
    text-align: center;
    transition: all 0.5s ease;
    transform: translateY(0);
}

.page-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(1, 33, 105, 0.1));
    transition: all 0.5s ease;
}

/* İngiliz bayrağı rozeti */
.brand-origin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    background: rgba(1, 33, 105, 0.04);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(1, 33, 105, 0.08);
}

.brand-origin span {
    color: var(--british-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.uk-flag {
    width: 40px;
    height: auto;
}

/* Ürünler Sayfası Özel Stilleri */
.products-hero {
    position: relative;
    min-height: 600px;
    background: var(--british-white);
    overflow: hidden;
    padding-top: 70px;
    display: flex;
    align-items: center;
}

/* Gradient arka plan efekti */
.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(1, 33, 105, 0.04) 0%, 
        rgba(255, 255, 255, 0) 60%,
        rgba(200, 16, 46, 0.03) 100%
    );
    z-index: 1;
}

.products-hero .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Teknoloji rozetleri iyileştirmesi */
.products-hero .tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.products-hero .tech-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 24px;
    background: var(--british-white);
    border-radius: 50px;
    border: 1px solid rgba(1, 33, 105, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.products-hero .tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(1, 33, 105, 0.02);
}

.products-hero .tech-badge i {
    color: var(--british-red);
    font-size: 1.2rem;
}

.products-hero .tech-badge span {
    color: var(--british-blue);
    font-weight: 600;
    font-size: 1rem;
}

/* Modern Hero Bölümü */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--british-white);
    overflow: hidden;
    padding-top: 70px;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    height: calc(100vh - 70px);
}

.hero-content {
    max-width: 570px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--british-blue) 0%, var(--british-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight-text {
    display: block;
    color: var(--british-red);
    font-weight: 800;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--british-blue);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--british-blue);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--british-blue-dark);
    font-size: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    z-index: 2;
}

.hero-btn {
    position: relative;
    padding: 0;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
}

.hero-btn .btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    gap: 0.8rem;
    z-index: 1;
}

.hero-btn .btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Primary Button */
.hero-btn.primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(1, 33, 105, 0.3);
}

.hero-btn.primary .btn-content {
    -webkit-background-clip: initial;
    color: var(--white);
}

.hero-btn.primary .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(1, 33, 105, 0.4);
}

.hero-btn.primary:hover .btn-glow {
    opacity: 0.6;
}

.hero-btn.primary:hover .btn-icon {
    transform: translateX(3px);
}

.hero-btn.primary:hover .btn-text {
    opacity: 1;
}

/* Secondary Button */
.hero-btn.secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
    border: none;
}

.hero-btn.secondary .btn-content {
    color: var(--white);
}

.hero-btn.secondary:hover {
    background: linear-gradient(135deg, var(--british-red-soft) 0%, var(--british-red-light) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.hero-btn.secondary:hover .btn-icon {
    transform: scale(1.1);
}

.hero-btn.secondary:hover .btn-text {
    opacity: 1;
}

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

.hero-image {
    position: relative;
    max-width: 630px;
    margin-left: auto;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(1, 33, 105, 0.3));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Floating elements renk güncellemeleri */
.float-item {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: floatItem 5s ease-in-out infinite;
}

.float-item i {
    font-size: 1.2rem;
    color: var(--british-red); /* İkonlar kırmızı */
}

.float-item span {
    color: var(--british-blue); /* Yazılar mavi */
    font-weight: 500;
}

/* Floating element pozisyonları aynı kalacak */
.item-1 { top: 20%; left: 0; animation-delay: 0s; }
.item-2 { top: 50%; right: 0; animation-delay: 1s; }
.item-3 { bottom: 20%; left: 10%; animation-delay: 2s; }

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, 
        rgba(1, 33, 105, 0.1) 0%, /* Yeşil yerine mavi gradient */
        transparent 50%
    );
}

.pattern-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,...');
    opacity: 0.1;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatItem {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

/* Ürün Kategorileri Bölümü */
.product-categories {
    padding: 60px 0;
}

.product-categories h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: var(--british-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.category-image {
    position: relative;
    width: 100%;
    padding-top: 70%;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.1rem;
    margin: 15px 15px 8px;
}

.category-card p {
    font-size: 0.9rem;
    margin: 0 15px 15px;
    min-height: 40px;
}

.category-card .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px 15px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.category-card .btn-text i {
    transition: transform 0.3s ease;
}

.category-card .btn-text:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-card .btn-text:hover i {
    transform: translateX(5px);
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.features {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.feature-box {
    background: var(--british-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--british-white);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #95c069;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .feature-box, .category-card {
        padding: 25px;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
}

/* Mobil Menü Stilleri */
.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
    }
}

/* Footer Stilleri */
.main-footer {
    background: linear-gradient(135deg, var(--british-blue-dark) 0%, var(--british-blue) 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--secondary-color),
        var(--accent-color),
        var(--secondary-color),
        transparent
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: var(--british-red-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--british-red-soft);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    transform: translateY(-5px) rotate(8deg);
    background: linear-gradient(135deg, var(--british-red-soft) 0%, var(--british-red-light) 100%);
    border-color: transparent;
}

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

/* Responsive düzenlemeler için ek mobil menü stilleri */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--british-white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Ürünler Sayfası Stilleri */
.products-page {
    padding-top: 70px;
}

.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.filter-container {
    padding: 2rem;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    background: var(--white);
    color: var(--british-blue);
    border: 1px solid var(--british-blue);
}

.filter-btn:hover {
    background: rgba(1, 33, 105, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--british-blue) 0%, var(--british-red) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(1, 33, 105, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--british-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .product-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
}

.product-card .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-black);
}

.product-description {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-specs {
    margin-top: auto;
}

.product-specs h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.product-specs li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.product-specs li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.product-features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(0, 200, 83, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.product-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Ürün Faydaları Bölümü */
.product-benefits {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--british-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details h2 {
        font-size: 2.2rem;
    }
}

/* Dropdown menü stilleri */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    height: 70px;
    align-items: center;
    position: relative;
}

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    padding: 0 1rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--british-white);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

/* Aktif sayfa vurgulaması */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 1;
    visibility: visible;
}

/* Dropdown toggle active durumu */
.dropdown-toggle.active {
    color: var(--primary-color);
}

.dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Mobil menü için dropdown güncellemesi */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu {
        position: static;
        background: var(--gray-50);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu a {
        padding: 1rem 2rem;
    }
}

/* Mega menü stilleri */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--british-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 900px;
    margin-top: 1rem;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--british-white);
    border-radius: 2px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.menu-category h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.menu-category ul {
    list-style: none;
}

.menu-category ul li {
    margin-bottom: 0.5rem;
}

.menu-category ul li a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-category ul li a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    transform: translateX(5px);
}

.menu-item-name {
    margin-left: 0.5rem;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .mega-menu {
        width: 95vw;
        margin: 0 auto;
        left: 0;
        right: 0;
        transform: translateY(10px);
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 1rem;
        background: var(--gray-50);
        transform: none;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
    }

    .menu-category {
        padding: 1rem;
        background: var(--british-white);
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .menu-category h3 {
        font-size: 1rem;
    }

    .menu-category ul li a {
        padding: 0.8rem;
        border-bottom: 1px solid var(--gray-100);
    }
}

/* Kalite Standartları Bölümü */
.quality-standards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.standard-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
}

.standard-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.standard-icon i {
    font-size: 32px;
    color: #fff;
}

.standard-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.standard-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .quality-standards {
        padding: 60px 0;
    }
    
    .standards-grid {
        gap: 20px;
    }
    
    .standard-card {
        padding: 20px;
    }
    
    .standard-icon {
        width: 60px;
        height: 60px;
    }
    
    .standard-icon i {
        font-size: 24px;
    }
    
    .standard-card h3 {
        font-size: 18px;
    }
    
    .standard-card p {
        font-size: 14px;
    }
}

/* Yeni Özellikler Bölümü */
.key-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-content h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--british-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 15px;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--british-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--british-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .key-features {
        padding: 60px 0;
    }

    .features-content h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

/* Şirket Özellikleri Bölümü */
.company-highlights {
    padding: 80px 0;
    background: var(--british-white);
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-card {
    background: var(--british-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 24px;
    color: var(--white);
}

.highlight-content {
    flex: 1;
}

.highlight-content h3 {
    font-size: 1.25rem;
    color: var(--primary-black);
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .company-highlights {
        padding: 60px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-card {
        padding: 20px;
    }
}

/* Teknoloji Showcase Bölümü */
.tech-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-text h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.showcase-visual {
    position: relative;
}

.tech-device {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tech-device img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-highlights {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 15px;
}

.highlight-tag {
    background: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.highlight-tag span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-black);
}

@media (max-width: 992px) {
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .tech-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-device {
        padding-top: 75%;
    }
}

/* İngiliz marka kimliği stilleri - Türkçe metin için optimize edilmiş */
.brand-origin {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    background: rgba(1, 33, 105, 0.04);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(1, 33, 105, 0.08);
}

.uk-flag {
    width: 40px;
    height: auto;
}

.brand-origin span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--british-blue);
    letter-spacing: 0.5px;
}

.research-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 33, 105, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(1, 33, 105, 0.2);
}

.research-badge i {
    color: var(--british-red-soft);
    opacity: 0.9;
}

.research-badge span {
    font-size: 1rem;
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-100);
}

.quality-badges img {
    height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.quality-badges img:hover {
    opacity: 1;
}

/* Ürün rozetleri */
.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.uk-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    padding: 8px 16px; /* Türkçe metin için daha geniş padding */
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    backdrop-filter: blur(5px);
}

.uk-badge img {
    width: 16px;
    height: auto;
}

/* Basın değerlendirmeleri */
.press-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.review-card {
    background: var(--british-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 36, 125, 0.1);
}

.source {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.source img {
    height: 30px;
    width: auto;
}

.uk-press {
    font-size: 0.85rem;
    color: #666;
}

.review-card blockquote {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--primary-black);
    font-style: italic;
    margin-bottom: 20px;
}

.rating {
    color: var(--british-red-light);
}

.award {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--british-blue-light);
}

/* About Page Styles */
.about-page {
    padding-top: 70px;
    background: var(--british-white);
}

/* Container */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 600px;
    background: var(--british-white);
    padding-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Gradient arka plan efekti */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(1, 33, 105, 0.05) 0%, 
        rgba(255, 255, 255, 0) 60%,
        rgba(200, 16, 46, 0.04) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--british-blue);
    max-width: 700px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--british-blue);
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.85;
    color: var(--british-blue-dark);
}

/* Brand Origin rozeti */
.about-hero .brand-origin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    background: rgba(1, 33, 105, 0.04);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(1, 33, 105, 0.08);
    box-shadow: var(--shadow-sm);
}

.about-hero .brand-origin span {
    color: var(--british-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Stats Section */
.about-stats {
    margin-top: -80px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--british-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1, 33, 105, 0.1);
}

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

.stat-label {
    color: var(--british-blue);
    font-weight: 500;
}

/* Vision Mission Section */
.vision-mission {
    padding: 100px 0 80px;
    background: var(--british-white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    padding: 40px;
    background: var(--british-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(1, 33, 105, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.vm-icon i {
    font-size: 32px;
    color: var(--white);
}

.vm-card h2 {
    color: var(--british-blue);
    margin-bottom: 15px;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--british-blue);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 30px;
    text-align: center;
    background: var(--british-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 33, 105, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card i {
    font-size: 32px;
    color: var(--british-blue);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--british-blue);
    margin-bottom: 10px;
}

/* Certificates Section */
.certificates {
    padding: 80px 0;
    background: var(--british-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    padding: 30px;
    text-align: center;
    background: var(--british-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 33, 105, 0.1);
}

.cert-card img {
    height: 80px;
    margin-bottom: 20px;
}

.cert-card h3 {
    color: var(--british-blue);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 500px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .stats-grid,
    .vm-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }
}

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

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 600px;
    background: var(--british-white);
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(1, 33, 105, 0.05) 0%, 
        rgba(255, 255, 255, 0) 60%,
        rgba(200, 16, 46, 0.04) 100%
    );
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-bottom: 60px;
}

/* Contact Info Cards Style */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.info-card {
    background: var(--british-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(1, 33, 105, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 36px;
    color: var(--british-blue);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.info-card h3 {
    color: var(--british-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

/* Contact Info Cards Background Style */
.info-card::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.03) 0%, rgba(200, 16, 46, 0.03) 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.info-card:hover::before {
    width: 140px;
    height: 140px;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.form-wrapper {
    background: var(--british-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.form-content {
    padding: 40px;
}

.form-content h2 {
    color: var(--british-blue);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-black);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(1, 33, 105, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--british-blue);
    box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Map Section */
.map-section {
    height: 100%;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(1, 33, 105, 0.1);
    height: 100%;
}

.map-wrapper iframe {
    height: 100%;
    min-height: 450px;
}

/* Contact Info Section */
.contact-info {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--british-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1, 33, 105, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-map-container {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 30px 20px;
    }
}

/* Mobil uyumluluk için medya sorguları */
@media (max-width: 992px) {
    .page-hero {
        min-height: 500px;
    }
    
    .page-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero-visual {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 60px;
    }
    
    .page-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .page-hero-title {
        font-size: 2.2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .categories-grid,
    .features-grid,
    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-origin {
        padding: 8px 15px;
    }
    
    .uk-flag {
        width: 30px;
    }
    
    .brand-origin span {
        font-size: 0.9rem;
    }
    
    /* Mobil menü */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .page-hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
    }
}

/* About Hero geliştirilmiş stiller */
.about-hero {
    position: relative;
    min-height: 600px;
    background: var(--british-white);
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(1, 33, 105, 0.05) 0%, 
        rgba(255, 255, 255, 0) 60%,
        rgba(200, 16, 46, 0.04) 100%
    );
    z-index: 1;
}

/* Achievement Badges geliştirilmiş stiller */
.achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.9) 100%);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 33, 105, 0.1);
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--british-white) 0%, rgba(255,255,255,0.9) 100%);
}

.achievement-badge i {
    color: var(--british-red);
    font-size: 1.2rem;
}

.achievement-badge span {
    color: var(--british-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Hero geliştirilmiş stiller */
.contact-hero {
    position: relative;
    min-height: 600px;
    background: var(--british-white);
    padding-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(1, 33, 105, 0.05) 0%, 
        rgba(255, 255, 255, 0) 60%,
        rgba(200, 16, 46, 0.04) 100%
    );
    z-index: 1;
}

/* Contact Methods geliştirilmiş stiller */
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.9) 100%);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 33, 105, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--british-white) 0%, rgba(255,255,255,0.9) 100%);
}

.contact-method i {
    color: var(--british-red);
    font-size: 1.2rem;
}

.contact-method span {
    color: var(--british-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Map Wrapper geliştirilmiş stiller */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(1, 33, 105, 0.1);
}

/* Gradient text stilini geliştirme */
.gradient-text {
    background: linear-gradient(135deg, var(--british-blue) 0%, var(--british-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.product-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--british-blue);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--british-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 32px;
    color: #ffffff;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text h3 {
    font-size: 1.5rem;
    color: var(--british-blue);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

 