/* ============================================
   SONEXA - Ear Care Products
   Color Scheme: Black + Gold
   ============================================ */

:root {
    --navy-900: #000000;
    --navy-800: #0a0a0a;
    --navy-700: #141414;
    --navy-600: #1e1e1e;
    --navy-500: #2a2a2a;
    --navy-400: #404040;
    --navy-300: #606060;
    --navy-200: #909090;
    --navy-100: #c0c0c0;
    --navy-50: #f0f0f0;

    --gold-600: #b8860b;
    --gold-500: #d4a017;
    --gold-400: #e6b422;
    --gold-300: #f0c850;
    --gold-200: #f5dc82;
    --gold-100: #faf0c8;

    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --black: #000000;

    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.3);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold-400);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    color: var(--gray-600);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--gold-600);
    background: rgba(212, 160, 23, 0.08);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-600);
    border-radius: 2px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--gray-200);
}

.lang-switch a {
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: var(--gray-500);
}

.lang-switch a.active {
    color: var(--gold-600);
    background: rgba(212, 160, 23, 0.12);
}

.lang-switch a:hover {
    color: var(--gold-600);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--navy-900);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
    overflow: hidden;
    padding-top: 75px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold-400);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.hero h1 span {
    color: var(--gold-400);
    display: block;
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.hero p {
    color: var(--navy-200);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 24px 0 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .hero-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, rgba(212, 160, 23, 0.03) 60%, transparent 70%);
    border: 1px solid rgba(212, 160, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual .hero-circle::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 160, 23, 0.2);
    animation: spin 30s linear infinite;
}

.hero-visual .hero-circle img {
    width: 250px;
    border-radius: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.5);
}

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

.btn-outline:hover {
    background: rgba(212, 160, 23, 0.1);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy-800);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-light {
    background: var(--gray-100);
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: var(--navy-200);
}

.section-header .gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin: 16px auto;
    border-radius: 3px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.3);
}

.product-card .product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--navy-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .product-image .placeholder-icon {
    font-size: 3.5rem;
    color: var(--navy-300);
}

.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-card .product-body {
    padding: 20px;
}

.product-card .product-category {
    color: var(--gold-600);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card h3 {
    font-size: 1.05rem;
    color: var(--navy-800);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-card .product-desc {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.product-card .feature-tag {
    background: var(--navy-50);
    color: var(--navy-600);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-card .product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-card .product-link:hover {
    color: var(--gold-400);
    gap: 10px;
}

/* ============================================
   FEATURE / WHY US SECTION
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.35);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--navy-200);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT / KURUMSAL
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.about-content .gold-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin-bottom: 20px;
    border-radius: 3px;
}

.about-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.vm-card {
    background: var(--navy-900);
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: var(--transition);
}

.vm-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-4px);
}

.vm-card h3 {
    color: var(--gold-400);
    font-size: 1.2rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-card p {
    color: var(--navy-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   BLOG
   ============================================ */

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 160, 23, 0.3);
}

.blog-card .blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .blog-body {
    padding: 24px;
}

.blog-card .blog-date {
    color: var(--gold-600);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 1.15rem;
    color: var(--navy-800);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .blog-summary {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-link {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .blog-link:hover {
    color: var(--gold-400);
}

/* Blog Detail */
.blog-detail {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.blog-detail .blog-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.blog-detail .blog-content h2,
.blog-detail .blog-content h3 {
    color: var(--navy-800);
    margin: 30px 0 15px;
}

.blog-detail .blog-content p {
    margin-bottom: 18px;
}

.blog-detail .blog-content ul {
    margin-bottom: 18px;
    padding-left: 20px;
}

.blog-detail .blog-content li {
    list-style: disc;
    margin-bottom: 8px;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-800);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--navy-900);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
}

.contact-info-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.contact-info-card h4 {
    color: var(--gold-400);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: var(--navy-200);
    font-size: 0.9rem;
    line-height: 1.6;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    font-size: 1.6rem;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--navy-200);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.page-hero .gold-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin: 16px auto;
    border-radius: 3px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--navy-300);
}

.breadcrumb a:hover {
    color: var(--gold-400);
}

.breadcrumb span {
    color: var(--gold-400);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.product-detail-image {
    background: linear-gradient(135deg, var(--navy-50), var(--gray-100));
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.product-detail-image img {
    width: 100%;
}

.product-detail-info h1 {
    font-size: 2rem;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.product-detail-info .product-category {
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-detail-info .gold-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin-bottom: 20px;
}

.product-detail-info .description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-detail-info .features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.product-detail-info .feature-item {
    background: var(--navy-900);
    color: var(--gold-400);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.product-detail-info .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-content-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-200);
}

.product-content-section h2 {
    font-size: 1.5rem;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.product-content-section h3 {
    color: var(--navy-800);
    margin: 24px 0 12px;
}

.product-content-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
}

.product-content-section ul {
    margin-bottom: 14px;
    padding-left: 20px;
}

.product-content-section li {
    list-style: disc;
    margin-bottom: 6px;
    color: var(--gray-600);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--navy-800);
    width: 40%;
    background: var(--navy-50);
}

.spec-table td:last-child {
    color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-900);
    color: var(--navy-200);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
}

.footer-about .logo {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-links ul li a {
    color: var(--navy-200);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-200);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: rgba(212, 160, 23, 0.15);
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--navy-400);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--navy-800);
    color: var(--gold-400);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-sm);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--navy-700);
    border-color: var(--gold-400);
}

/* ============================================
   ALERT / MESSAGES
   ============================================ */

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   CATEGORIES FILTER
   ============================================ */

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

.category-filter a {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    transition: var(--transition);
}

.category-filter a:hover,
.category-filter a.active {
    border-color: var(--gold-400);
    background: var(--navy-900);
    color: var(--gold-400);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-section p {
    color: var(--navy-200);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 24px auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 4px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        width: 100%;
        padding: 14px 18px;
        border-radius: var(--radius-sm);
    }

    .lang-switch {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 16px;
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

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

    .section {
        padding: 50px 0;
    }

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

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

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

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .category-filter {
        gap: 6px;
    }

    .category-filter a {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 75px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(20,20,20,0.75) 50%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slide .hero-content {
    max-width: 650px;
    padding: 40px 0;
}

.hero-slide .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    color: #e6b422;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.hero-slide h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 3px;
    line-height: 1.2;
}

.hero-slide h1 span {
    color: #e6b422;
    display: block;
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.hero-slide .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 23, 0.4);
    background: rgba(0, 0, 0, 0.6);
    color: #e6b422;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(212, 160, 23, 0.2);
    border-color: #e6b422;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #e6b422;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(212, 160, 23, 0.6);
}

/* Hero with bg image fallback */
.hero .hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(20,20,20,0.75) 50%, rgba(10,10,10,0.85) 100%);
    z-index: 0;
}

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

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

    .slider-nav {
        bottom: 25px;
    }

    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slide h1 {
        font-size: 2rem;
    }
}

/* ============================================
   NEWS TICKER (Blog Headlines Bar)
   ============================================ */

.news-ticker {
    background: linear-gradient(90deg, var(--navy-900), #0a0a0a);
    border-bottom: 2px solid var(--gold-500);
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 999;
}

.ticker-label {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-label i {
    font-size: 0.9rem;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    padding-left: 20px;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    color: var(--navy-100);
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.ticker-item:hover {
    color: var(--gold-400);
}

.ticker-arrow {
    font-size: 0.65rem;
    color: var(--gold-500);
}

.ticker-separator {
    color: var(--gold-500);
    font-size: 0.5rem;
    opacity: 0.6;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Adjust page content for ticker bar */
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
}

/* When ticker is present, adjust hero padding */
body:has(.news-ticker) .hero,
body:has(.news-ticker) .hero-slider {
    padding-top: 115px;
}

body:has(.news-ticker) .page-hero {
    padding-top: 160px;
}

@media (max-width: 768px) {
    .news-ticker {
        top: 75px;
        height: 34px;
    }

    .ticker-label {
        padding: 0 12px;
        font-size: 0.75rem;
    }

    .ticker-item {
        font-size: 0.8rem;
    }

    body:has(.news-ticker) .hero,
    body:has(.news-ticker) .hero-slider {
        padding-top: 109px;
    }

    body:has(.news-ticker) .page-hero {
        padding-top: 150px;
    }
}

/* ============================================
   BLOG HIGHLIGHT SECTION (Homepage)
   ============================================ */

.blog-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-section-badge i {
    font-size: 0.9rem;
}

.blog-highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.blog-featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 160, 23, 0.2);
    transition: var(--transition);
}

.blog-featured-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
    transform: translateY(-4px);
}

.blog-featured-image {
    height: 300px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    position: relative;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-featured-placeholder i {
    font-size: 4rem;
    color: var(--gold-400);
    opacity: 0.3;
}

.blog-featured-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.blog-featured-badge {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-featured-body {
    padding: 28px;
}

.blog-featured-body h3 {
    font-size: 1.3rem;
    color: var(--navy-800);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-featured-body .blog-summary {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-side-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-side-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.blog-side-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateX(4px);
}

.blog-side-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-side-icon i {
    color: var(--gold-400);
    font-size: 1rem;
}

.blog-side-body {
    flex: 1;
    min-width: 0;
}

.blog-side-body h4 {
    font-size: 0.98rem;
    color: var(--navy-800);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-side-body .blog-summary {
    color: var(--gray-500);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-side-body .blog-link {
    font-size: 0.82rem;
}

.blog-highlight-section .blog-date {
    color: var(--gold-600);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-highlight-section .blog-date i {
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .blog-highlight-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-featured-image {
        height: 200px;
    }

    .blog-featured-body {
        padding: 20px;
    }

    .blog-featured-body h3 {
        font-size: 1.1rem;
    }
}
