/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Cookie Notice - Google Consent Mode v2 */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--white);
    color: var(--text-color);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cookie-notice-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.cookie-close-btn:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.cookie-notice-body {
    margin-bottom: 25px;
}

.cookie-notice-body p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cookie-notice-body p:last-of-type {
    margin-bottom: 25px;
}

.cookie-notice-body a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-notice-body a:hover {
    color: #c0392b;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.cookie-category {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background: var(--light-bg);
}

.cookie-category-header {
    margin-bottom: 10px;
}

.cookie-category-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.cookie-category-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    flex-shrink: 0;
}

.cookie-category-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-category-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    flex: 1;
}

.cookie-category-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-category-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    margin-top: 8px;
}

.cookie-notice-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cookie-btn {
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 120px;
}

.cookie-btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cookie-btn-primary:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cookie-btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section - New Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e27;
    margin-top: 0;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: opacity;
    overflow: hidden;
    /* Prevent background from moving out of bounds */
    min-width: 100%;
    min-height: 100%;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(44, 62, 80, 0.75) 50%, rgba(231, 76, 60, 0.65) 100%);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(231, 76, 60, 0.2) 0%, transparent 50%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    z-index: 3;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(20px, 2vw, 40px);
    padding-top: 100px;
    padding-bottom: clamp(20px, 3vh, 40px);
    pointer-events: none;
    min-height: auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    box-sizing: border-box;
}

@media (min-height: 800px) {
    .hero-content-wrapper {
        padding-top: 120px;
    }
}

@media (min-height: 1000px) {
    .hero-content-wrapper {
        padding-top: 140px;
    }
}

.hero-main-content {
    pointer-events: auto;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 20;
}


.hero-badge {
    display: inline-block;
    margin-bottom: clamp(15px, 2vh, 25px);
    margin-top: 0;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.badge-text {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff6b5a;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(15px, 2vh, 25px);
    letter-spacing: clamp(-2px, -0.1vw, -1px);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease forwards;
}

.title-line-1 {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #ffffff 0%, #ffd4d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    animation-delay: 0.6s;
    color: var(--white);
}

.title-line-3 {
    animation-delay: 0.8s;
    color: var(--white);
    position: relative;
}

.title-line-3::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    opacity: 0.6;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.2rem);
    line-height: 1.6;
    margin-bottom: clamp(25px, 3vh, 40px);
    max-width: min(700px, 90vw);
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 1s both;
}

.highlight-text {
    color: #ffd4d0;
    font-weight: 600;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: clamp(12px, 1.5vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: clamp(25px, 3vh, 45px);
    animation: fadeInUp 1s ease 1.2s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(12px, 1.5vh, 16px) clamp(28px, 3vw, 36px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1vw, 1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-hero:hover .btn-icon {
    transform: translateX(5px);
}

.btn-hero-secondary:hover .btn-icon {
    transform: translateY(5px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 2vw, 30px);
    max-width: min(800px, 90vw);
    margin: 0 auto;
    padding: clamp(20px, 2.5vh, 30px) clamp(15px, 2vw, 25px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease 1.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 3rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: clamp(5px, 0.5vh, 10px);
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.7rem, 0.8vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(20px, 2.5vh, 35px) 0;
    margin-top: 0;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
    /* Ensure card stays in viewport */
    position: relative;
    z-index: 1;
}

.feature-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    will-change: transform;
    max-width: 100%;
    display: block;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
    transform-origin: center center;
}

/* Prevent images from going out of bounds */
.feature-image {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Global image safety */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent images from being positioned outside viewport */
    position: relative;
}

/* Ensure all transform animations stay within bounds */
.service-card,
.feature-card,
.product-item,
.step-item,
.feature-item {
    /* Prevent elements from moving outside viewport during animations */
    contain: layout style paint;
}

/* Ensure all containers with images have proper overflow */
.service-icon,
.feature-image,
.about-image,
.product-item {
    position: relative;
    overflow: hidden;
}

.feature-content {
    padding: 20px 15px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Hero Accordion Section */
.hero-accordion-section {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(30px, 4vh, 50px) 0;
    margin-top: auto;
    flex-shrink: 0;
}

.accordion-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item-hero {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-hero:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(231, 76, 60, 0.3);
}

.accordion-item-hero.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(231, 76, 60, 0.5);
}

.accordion-header-hero {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    transition: all 0.3s;
}

.accordion-header-hero:hover {
    color: #ffd4d0;
}

.accordion-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 40px;
}

.accordion-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-icon-hero {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.accordion-item-hero.active .accordion-icon-hero {
    transform: rotate(45deg);
}

.accordion-content-hero {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-item-hero.active .accordion-content-hero {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.accordion-inner {
    padding-top: 10px;
}

.accordion-inner p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 10px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    max-width: calc(100vw - 60px);
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--secondary-color);
    height: 30px;
    border-radius: 5px;
}


/* Animations */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Section Styles */
.section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light-bg);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    transform-origin: center center;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card {
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    /* Ensure card stays in viewport */
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    overflow: hidden;
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
    transform-origin: center center;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Products Section */
.products-section {
    background: var(--light-bg);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    /* Ensure item stays in viewport */
    position: relative;
    z-index: 1;
}

.product-item {
    overflow: hidden;
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
    transform-origin: center center;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-info p {
    color: var(--gray);
    line-height: 1.7;
}

/* Manufacturing Section */
.manufacturing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button[type="submit"],
.contact-form .btn,
.contact-form .btn-primary {
    width: 100%;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
}

.contact-form button[type="submit"]:hover,
.contact-form .btn:hover,
.contact-form .btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.contact-form button[type="submit"]:active,
.contact-form .btn:active,
.contact-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Responsive - Large Screens */
@media (min-width: 1920px) {
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: clamp(80px, 6vh, 120px) 0 clamp(20px, 2vh, 40px);
        max-height: calc(100vh - 180px);
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 4vw, 5rem);
        margin-bottom: clamp(20px, 2.5vh, 30px);
    }
    
    .hero-stats {
        padding: clamp(30px, 3vh, 40px) clamp(20px, 2vw, 30px);
    }
}

/* Desktop Responsive - Medium Screens */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-content-wrapper {
        padding: clamp(70px, 7vh, 100px) 0 clamp(18px, 2vh, 35px);
        max-height: calc(100vh - 170px);
    }
    
    .hero-title {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }
}

/* Desktop Responsive - Standard Screens (Full HD) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-content-wrapper {
        padding: clamp(65px, 7vh, 90px) 0 clamp(15px, 2vh, 30px);
        max-height: calc(100vh - 160px);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .hero-stats {
        gap: clamp(20px, 2vw, 28px);
        padding: clamp(25px, 2.5vh, 35px) clamp(18px, 2vw, 25px);
    }
}

/* Desktop Responsive - Small Desktop */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-content-wrapper {
        padding: clamp(60px, 6vh, 80px) 0 clamp(15px, 2vh, 25px);
        max-height: calc(100vh - 150px);
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    }
    
    .hero-stats {
        gap: clamp(18px, 2vw, 25px);
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: clamp(55px, 6vh, 75px) 0 clamp(15px, 2vh, 25px);
        max-height: calc(100vh - 140px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: clamp(15px, 2vh, 22px);
    }
    
    .hero-stats {
        gap: clamp(15px, 2vw, 22px);
        padding: clamp(22px, 2.5vh, 30px) clamp(15px, 2vw, 22px);
    }
    
    .hero-features {
        padding: clamp(25px, 3vh, 35px) 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
    }

    .hero-content-wrapper {
        padding: 0 clamp(20px, 2vw, 40px);
        padding-top: clamp(80px, 10vh, 120px);
        padding-bottom: clamp(12px, 2vh, 20px);
        align-items: flex-start;
        max-height: calc(100vh - 120px);
    }
    

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: clamp(12px, 1.5vh, 18px);
    }

    .title-line {
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-bottom: clamp(20px, 2.5vh, 28px);
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: clamp(20px, 2.5vh, 30px);
        gap: clamp(10px, 1.5vw, 15px);
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(12px, 2vw, 18px);
        padding: clamp(18px, 2.5vh, 25px) clamp(12px, 2vw, 18px);
        margin-bottom: 0;
    }

    .stat-number {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: clamp(4px, 0.5vh, 8px);
    }

    .stat-label {
        font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    }

    .hero-features {
        padding: clamp(18px, 2.5vh, 25px) 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 0;
    }

    .feature-image {
        height: 120px;
    }

    .feature-content {
        padding: 15px 12px;
    }

    .feature-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .feature-desc {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .hero-accordion-section {
        padding: clamp(15px, 2.5vh, 25px) 0;
    }
    
    /* Optimize hero slide for mobile */
    .hero-slide {
        background-attachment: scroll;
    }

    .accordion-header-hero {
        padding: 12px 15px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .accordion-number {
        font-size: 0.9rem;
        min-width: 25px;
    }

    .accordion-title {
        font-size: 0.9rem;
    }

    .accordion-icon-hero {
        font-size: 1.2rem;
    }

    .accordion-content-hero {
        padding: 0 15px;
    }

    .accordion-item-hero.active .accordion-content-hero {
        padding: 0 15px 12px 15px;
        max-height: 250px;
    }

    .accordion-inner p {
        font-size: 0.85rem;
    }

    .hero-slider-controls {
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        padding: 10px 8px;
        gap: 12px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-notice-content {
        padding: 20px;
        max-height: 85vh;
    }
    
    .cookie-notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-notice-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .cookie-notice-body p {
        font-size: 0.9rem;
    }
    
    .cookie-categories {
        gap: 15px;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-category-name {
        font-size: 1rem;
    }
    
    .cookie-category-desc {
        font-size: 0.85rem;
    }
    
    .cookie-notice-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Why Choose Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }

    .hero-accordion-section {
        padding: clamp(20px, 3vh, 35px) 0;
    }
    
    /* Optimize hero slide for mobile */
    .hero-slide {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .accordion-header-hero {
        padding: 15px 20px;
        gap: 15px;
    }

    .accordion-number {
        font-size: 1rem;
        min-width: 30px;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-content-hero {
        padding: 0 20px;
    }

    .accordion-item-hero.active .accordion-content-hero {
        padding: 0 20px 15px 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-content-wrapper {
        padding: clamp(35px, 6vh, 50px) 0 clamp(8px, 1.5vh, 15px);
        max-height: calc(100vh - 90px);
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
        margin-bottom: clamp(8px, 1.5vh, 12px);
    }
    
    .hero-badge {
        margin-bottom: clamp(10px, 1.5vh, 15px);
    }
    
    .badge-text {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: clamp(15px, 2vh, 20px);
    }
    
    .hero-buttons {
        margin-bottom: clamp(15px, 2vh, 20px);
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        padding: clamp(12px, 2vh, 18px) clamp(8px, 2vw, 12px);
        gap: clamp(6px, 1.5vw, 10px);
    }
    
    .stat-number {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-features {
        padding: clamp(12px, 2vh, 18px) 0;
    }
    
    .feature-card {
        padding: 12px 6px;
    }
    
    .feature-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon {
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 0.7rem;
    }
    
    .feature-desc {
        font-size: 0.6rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: clamp(30px, 5vh, 50px) 0 clamp(10px, 1.5vh, 20px);
        max-height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: clamp(10px, 1.5vh, 15px);
    }
    
    .hero-stats {
        padding: clamp(15px, 2vh, 20px) clamp(10px, 2vw, 15px);
        gap: clamp(10px, 1.5vw, 15px);
    }
    
    .hero-features {
        padding: clamp(15px, 2vh, 20px) 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
    }

    .hero-content-wrapper {
        padding: 0 clamp(20px, 2vw, 40px);
        padding-top: clamp(70px, 9vh, 110px);
        padding-bottom: clamp(10px, 1.5vh, 18px);
        align-items: flex-start;
        max-height: calc(100vh - 100px);
    }
    

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        margin-bottom: clamp(10px, 1.5vh, 15px);
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .badge-text {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        margin-bottom: 20px;
    }

    .btn-hero {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .hero-stats {
        padding: clamp(15px, 2vh, 20px) clamp(10px, 2vw, 15px);
        gap: clamp(8px, 1.5vw, 12px);
    }

    .stat-number {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .stat-label {
        font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    }

    .hero-features {
        padding: clamp(15px, 2vh, 22px) 0;
    }

    .feature-card {
        padding: 12px 8px;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .feature-icon {
        font-size: 1.3rem;
    }

    .feature-title {
        font-size: 0.75rem;
    }

    .feature-desc {
        font-size: 0.65rem;
    }

    .hero-accordion-section {
        padding: clamp(12px, 2vh, 20px) 0;
    }

    .accordion-header-hero {
        padding: 10px 12px;
        gap: 10px;
    }

    .accordion-number {
        font-size: 0.85rem;
        min-width: 20px;
    }

    .accordion-title {
        font-size: 0.85rem;
    }

    .accordion-icon-hero {
        font-size: 1rem;
    }

    .accordion-content-hero {
        padding: 0 12px;
    }

    .accordion-item-hero.active .accordion-content-hero {
        padding: 0 12px 10px 12px;
        max-height: 200px;
    }

    .accordion-inner p {
        font-size: 0.8rem;
    }
    
    /* Cookie Notice Mobile */
    .cookie-notice-content {
        padding: 15px;
        border-radius: 0;
    }
    
    .cookie-notice-header h3 {
        font-size: 1.2rem;
        padding-right: 30px;
    }
    
    .cookie-close-btn {
        top: 15px;
        right: 15px;
    }
    
    .cookie-notice-body p {
        font-size: 0.85rem;
    }
    
    .cookie-category {
        padding: 12px;
    }
    
    .cookie-category-name {
        font-size: 0.95rem;
    }
    
    .cookie-category-desc {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Why Choose Section */
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        line-height: 50px;
    }

    .hero-slider-controls {
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        padding: 8px 6px;
        gap: 8px;
    }

    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        height: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}


