/* ================================================
   ATLAS MESNICA - PREMIUM KURUMSAL KASAP TEMASI
   Full Responsive + Slider
   ================================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #b30027;
    --primary-dark: #8a001e;
    --primary-light: #d60033;
    --secondary: #1a1a1a;
    --accent: #c9a227;
    --gold: #d4af37;
    --green: #28a745;

    --bg-dark: #0b0b0b;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;

    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --text-dark: #333333;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Effects */
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(179, 0, 39, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-white);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(179, 0, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* ================================================
   HEADER / NAVIGATION
   ================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(179, 0, 39, 0.4));
}

.header.scrolled .logo-img {
    height: 55px;
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 15px rgba(179, 0, 39, 0.6));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-btn {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--text-white) !important;
}

.nav-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: 15px;
    flex-shrink: 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-current:hover {
    background: rgba(255,255,255,0.2);
}

.lang-current img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-current i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.lang-selector:hover .lang-current i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(179, 0, 39, 0.2);
    color: var(--text-white);
}

.lang-dropdown a.active {
    background: var(--primary);
}

.lang-dropdown img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&w=1920&q=90') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(11,11,11,1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(179, 0, 39, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 30px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll i {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    background: var(--bg-dark);
}

/* About Intro */
.about-intro {
    padding: var(--section-padding);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.image-frame img {
    width: 100%;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.image-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1;
}

.image-badge .text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
    background: var(--bg-card);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-glow);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 40px;
    padding-left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-marker {
    position: absolute;
    top: 25px;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -22px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -22px;
}

.timeline-marker i {
    color: var(--primary);
    font-size: 1rem;
}

.timeline-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--bg-dark);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(179,0,39,0.2), rgba(179,0,39,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: var(--text-white);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cert-card {
    background: var(--bg-card);
    padding: 35px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--bg-card-hover);
}

.cert-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cert-icon i {
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.cert-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.cert-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-image:hover img {
    transform: scale(1.05);
}

.team-info .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.team-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ================================================
   PRODUCTS SECTION - SLIDER
   ================================================ */

.products-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.products-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.products-swiper {
    padding-bottom: 60px;
}

.products-swiper .swiper-slide {
    height: auto;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.badge-gold {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--bg-dark);
}

.product-badge.badge-new {
    background: var(--green);
}

.product-badge.badge-fresh {
    background: #17a2b8;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transform: scale(0);
    transition: var(--transition);
}

.product-card:hover .product-btn {
    transform: scale(1);
}

.product-btn:hover {
    background: var(--primary-light);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Swiper Navigation */
.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.products-swiper .swiper-button-prev:hover,
.products-swiper .swiper-button-next:hover {
    background: var(--primary);
    color: var(--text-white);
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: bold;
}

.products-swiper .swiper-button-prev {
    left: 0;
}

.products-swiper .swiper-button-next {
    right: 0;
}

/* Swiper Pagination */
.products-swiper .swiper-pagination {
    bottom: 0;
}

.products-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.products-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--bg-darker);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand .logo-img {
    height: 80px;
    filter: drop-shadow(0 2px 10px rgba(179, 0, 39, 0.3));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.footer-links ul li,
.footer-contact ul li,
.footer-hours ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li,
.footer-hours li {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .image-badge {
        left: 20px;
        bottom: 20px;
    }

    .image-frame::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Header Mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .nav-btn {
        margin-top: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .lang-selector {
        margin-left: auto;
        margin-right: 15px;
    }

    .lang-current span {
        display: none;
    }

    .lang-current {
        padding: 8px 10px;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll {
        display: none;
    }

    /* About Mobile */
    .about-features {
        justify-content: center;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
    }

    .timeline-marker {
        left: 0 !important;
        right: auto !important;
        width: 40px;
        height: 40px;
    }

    .timeline-content {
        padding: 20px;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    /* Certifications Mobile */
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cert-card {
        padding: 25px 15px;
    }

    /* Products Slider Mobile */
    .products-slider-wrapper {
        padding: 0 10px;
    }

    .products-swiper .swiper-button-prev,
    .products-swiper .swiper-button-next {
        display: none;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li,
    .footer-hours li {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    /* Header Small */
    .logo-img {
        height: 55px;
    }

    .header.scrolled .logo-img {
        height: 45px;
    }

    /* Hero Small */
    .hero-content {
        padding: 0 15px;
    }

    /* Stats Small */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.2rem;
    }

    /* Certifications Small */
    .certifications-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cert-card {
        padding: 20px 10px;
    }

    .cert-icon {
        width: 50px;
        height: 50px;
    }

    .cert-card h4 {
        font-size: 1rem;
    }

    .cert-card p {
        font-size: 0.7rem;
    }

    /* Products Small */
    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px 15px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    /* Footer Small */
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-brand .logo-img {
        height: 60px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* ================================================
   B2B CATALOG SECTION
   ================================================ */

.catalog-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-embed-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.catalog-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-weight: 600;
}

.catalog-title i {
    color: var(--primary);
    font-size: 1.2rem;
}

.catalog-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.catalog-download {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
}

.catalog-page-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0 10px;
}

.catalog-page-info span {
    color: var(--text-white);
    font-weight: 600;
}

.catalog-divider {
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,0.15);
    margin: 0 8px;
}

/* Flipbook Container */
.catalog-flipbook-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    min-height: 500px;
}

#catalogFlipbook {
    width: 800px;
    height: 500px;
}

.catalog-page {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    overflow: hidden;
}

.catalog-page-content {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Cover Page */
.catalog-cover {
    background: linear-gradient(135deg, var(--primary-dark), #1a1a1a) !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.catalog-cover-logo {
    width: 120px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 20px rgba(179, 0, 39, 0.3));
}

.catalog-cover h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.catalog-cover h2 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.catalog-year {
    position: absolute;
    bottom: 30px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    font-family: var(--font-heading);
}

/* Page Header */
.catalog-page-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.catalog-page-header span {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.catalog-page-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
}

/* Table of Contents */
.catalog-toc {
    flex: 1;
}

.catalog-toc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.catalog-toc-item span:first-child {
    color: var(--text-light);
    font-size: 0.95rem;
}

.catalog-toc-page {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Products Grid */
.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
}

.catalog-product-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.catalog-product-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.catalog-product-info {
    padding: 10px;
}

.catalog-product-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 3px;
}

.catalog-product-info p {
    font-size: 0.7rem;
    color: var(--gold);
}

/* Page Number */
.catalog-page-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* B2B Info */
.catalog-b2b-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.catalog-b2b-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.catalog-b2b-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 30px;
    flex-shrink: 0;
}

.catalog-b2b-item h4 {
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 3px;
}

.catalog-b2b-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Back Cover */
.catalog-back {
    background: linear-gradient(135deg, #1a1a1a, var(--primary-dark)) !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.catalog-back h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.catalog-contact-info {
    margin-bottom: 20px;
}

.catalog-contact-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.catalog-contact-info i {
    color: var(--primary);
    margin-right: 10px;
    width: 18px;
}

.catalog-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.catalog-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.catalog-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.catalog-copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Hard covers */
.catalog-page.hard {
    background: linear-gradient(135deg, var(--primary-dark), #1a1a1a) !important;
}

/* B2B CTA */
.b2b-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(179, 0, 39, 0.15), rgba(179, 0, 39, 0.05));
    border: 1px solid rgba(179, 0, 39, 0.3);
    border-radius: 20px;
    margin-top: 50px;
}

.b2b-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.b2b-cta-content p {
    color: var(--text-muted);
}

/* Catalog Responsive */
@media (max-width: 900px) {
    #catalogFlipbook {
        width: 100%;
        max-width: 400px;
        height: 550px;
    }

    .catalog-products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .catalog-product-item img {
        height: 60px;
    }

    .catalog-toolbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .catalog-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .b2b-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }

    .catalog-flipbook-container {
        padding: 20px 10px;
        min-height: 400px;
    }

    .catalog-cover h1 {
        font-size: 1.5rem;
    }

    .catalog-cover-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    #catalogFlipbook {
        height: 450px;
    }

    .catalog-page-content {
        padding: 20px 15px;
    }

    .catalog-page-header h3 {
        font-size: 1.1rem;
    }

    .catalog-action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* ================================================
   ENHANCED RESPONSIVE OPTIMIZATIONS
   ================================================ */

/* Mobile Menu Improvements */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Language Selector Responsive */
.lang-selector {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-current:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--primary);
}

.lang-current img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-current span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
}

.lang-current i {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.lang-selector:hover .lang-current i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1002;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(179, 0, 39, 0.2);
    color: var(--text-white);
}

.lang-dropdown a img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        padding: 14px 28px;
    }

    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .product-btn {
        min-width: 48px;
        min-height: 48px;
    }

    .lang-dropdown a {
        min-height: 44px;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-slider {
        padding: 0 40px;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 80px 20px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu a:hover {
        background: rgba(179, 0, 39, 0.1);
        color: var(--primary);
    }

    .nav-btn {
        margin-top: 20px;
        width: auto !important;
    }

    /* Language Selector Mobile */
    .lang-selector {
        position: fixed;
        top: 25px;
        right: 70px;
        z-index: 1002;
    }

    .lang-current {
        padding: 8px 12px;
    }

    .lang-current span {
        display: none;
    }

    .lang-dropdown {
        right: 0;
        min-width: 140px;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    /* Products Slider Mobile */
    .products-slider-wrapper {
        margin: 0 -10px;
        padding: 0 10px;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        max-width: 300px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    /* Header Mobile */
    .header-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 50px;
    }

    .header.scrolled .logo-img {
        height: 40px;
    }

    /* Hero Small */
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    /* About Features Mobile */
    .about-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .about-feature {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Timeline Mobile */
    .timeline-item {
        padding-left: 50px !important;
    }

    .timeline-marker {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Contact Form Mobile */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Buttons Mobile */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small - 400px */
@media (max-width: 400px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 15px;
    }

    .lang-selector {
        right: 60px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        display: none;
    }

    .hero-buttons {
        flex-direction: row;
        margin-top: 20px;
    }

    .nav-menu {
        padding: 60px 20px 20px;
        gap: 10px;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Safe Area for Notched Devices */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(20px, env(safe-area-inset-top));
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .nav-menu {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-menu,
    .mobile-toggle,
    .lang-selector,
    .hero-scroll,
    .footer,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 20px;
    }
}
