/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* CSS Variables - BVK-inspired with Ocean Blue theme */
:root {
    /* Primary Ocean Blue Colors */
    --primary: #0066CC;
    --primary-light: #0EA5E9;
    --primary-dark: #075985;

    /* Secondary Colors */
    --secondary: #1e293b;
    --secondary-light: #334155;
    --secondary-dark: #0f172a;

    /* Text Colors */
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;

    /* Background Colors */
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-alt: #f1f5f9;

    /* Border Colors */
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Simplified Accent Colors - Ocean Blue Theme */
    --accent: #0066CC;
    --accent-light: #0EA5E9;
    --accent-dark: #075985;

    /* Typography */
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    --font-6xl: 4rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius - BVK style */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Shadows - BVK style */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: var(--font-5xl); }
h2 { font-size: var(--font-3xl); }
h3 { font-size: var(--font-2xl); }
h4 { font-size: var(--font-xl); }

p {
    line-height: 1.7;
    color: var(--text-light);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

.section {
    padding: var(--space-20) 0;
}

.section-alt {
    background-color: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-4);
    font-weight: 700;
    font-size: var(--font-4xl);
}

/* Home page specific title sizes */
.about-preview h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.products-overview .section-header h2 {
    font-size: var(--font-5xl);
    font-weight: 700;
}

.section-header p {
    font-size: var(--font-lg);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* Navigation - BVK style with backdrop blur */
.navbar {
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0 var(--space-4);
    max-width: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-grow: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 959px) {
    .logo-img {
        height: 60px;
        max-width: 160px;
    }
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--space-8);
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
}

@media (min-width: 960px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* Mega Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > .nav-link::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    min-width: 1100px;
    max-width: 1200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    z-index: 1000;
}

.nav-item-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-top: 10px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
}

.mega-menu-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: none;
}

.mega-menu-image {
    width: 100%;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: var(--space-4);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-menu-item:hover .mega-menu-image img {
    transform: scale(1.1);
}

.mega-menu-text {
    text-align: center;
}

.mega-menu-text h4 {
    font-size: var(--font-base);
    font-weight: 600;
    margin: 0 0 var(--space-1) 0;
    color: var(--text);
}

.mega-menu-text p {
    font-size: var(--font-sm);
    margin: 0;
    color: var(--text-muted);
}

/* Mobile Mega Menu Styles */
@media (max-width: 959px) {
    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        margin-top: 0;
        padding: var(--space-4);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: var(--bg);
    }

    .nav-item-dropdown.active .mega-menu {
        max-height: 2000px;
        padding: var(--space-4);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .mega-menu-item {
        flex-direction: row;
        align-items: center;
        padding: var(--space-3);
    }

    .mega-menu-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: var(--space-3);
        flex-shrink: 0;
    }

    .mega-menu-text {
        text-align: left;
        flex: 1;
    }

    .nav-item-dropdown > .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-grow: 0;
}

@media (max-width: 959px) {
    .nav-actions .nav-btn {
        display: none;
    }
}

.lang-select {
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.lang-select:focus {
    outline: none;
    border-color: var(--primary);
}

.nav-btn {
    font-size: var(--font-base);
    padding: var(--space-2) var(--space-6);
    white-space: nowrap;
    border-radius: var(--radius-lg);
    text-transform: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 959px) {
    .nav-content {
        padding: 0 var(--space-4);
        min-height: 64px;
    }

    .logo {
        flex-grow: 1;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(255, 255, 255, 1);
        padding: var(--space-8) var(--space-6);
        gap: var(--space-6);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
    }
}

@media (min-width: 960px) {
    .nav-toggle {
        display: none;
    }
}

/* Buttons - BVK style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: var(--font-base);
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* White About Us Button Style */
.hero .btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    font-weight: 600;
}

.hero .btn-secondary:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Hero Section - BVK inspired */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: var(--space-8) var(--space-4) var(--space-8) var(--space-4);
}

@media (max-width: 768px) {
    .hero {
        margin: var(--space-6) var(--space-4) var(--space-8) var(--space-4);
        border-radius: var(--radius-lg);
        height: 70vh;
        min-height: 500px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: var(--font-6xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.brand-prefix {
    color: white;
}

.brand-accent {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-4);
}

.hero-description {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.content-text h2 {
    margin-bottom: var(--space-6);
    font-weight: 700;
}

.content-text p {
    margin-bottom: var(--space-8);
    font-size: var(--font-lg);
    line-height: 1.7;
}

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

.image-card {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

/* Products Grid - BVK card style */
/* Home Page Product List */
.products-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.product-item {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media (min-width: 768px) {
    .product-item {
        flex-direction: row;
        align-items: center;
    }

    .product-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .product-image {
        width: 50%;
        height: 500px;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: var(--space-8);
    flex: 1;
}

@media (min-width: 768px) {
    .product-details {
        padding: var(--space-20);
        flex: 1;
    }
}

.product-details h3 {
    color: #000;
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.product-tagline {
    color: #000;
    font-size: var(--font-lg);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.product-description {
    color: #000;
    font-size: var(--font-base);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.product-details .btn {
    display: inline-block;
}

/* Products Page Detailed Cards */
.products-detailed-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
}

.product-detailed-item {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detailed-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .product-detailed-item {
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        margin: 0 auto;
    }

    .product-detailed-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.product-detailed-item .product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

@media (min-width: 768px) {
    .product-detailed-item .product-image {
        width: 50%;
        height: auto;
        min-height: 600px;
    }
}

.product-detailed-item .product-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-detailed-item .product-details {
    padding: var(--space-10);
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .product-detailed-item .product-details {
        padding: var(--space-16);
    }
}

.product-detailed-item .product-details h2 {
    color: #000;
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.product-detailed-item .product-tagline {
    color: #000;
    font-size: var(--font-xl);
    font-weight: 500;
    font-style: normal;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--primary);
}

.product-detailed-item .product-section {
    margin-bottom: var(--space-6);
}

.product-detailed-item .product-section h3 {
    color: var(--primary);
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.product-detailed-item .product-section p {
    color: #000;
    font-size: var(--font-base);
    line-height: 1.6;
    margin-bottom: var(--space-2);
}

.product-detailed-item .benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.product-detailed-item .benefits-list li {
    color: var(--text);
    font-size: var(--font-base);
    line-height: 1.6;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detailed-item .benefits-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-detailed-item .benefits-list li .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-detailed-item .benefits-list li .benefit-icon svg {
    width: 28px;
    height: 28px;
}

/* Products Grid - For other sections */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    border-radius: var(--radius);
    color: var(--primary);
}

.product-icon svg {
    width: 32px;
    height: 32px;
}

.product-content h3 {
    margin-bottom: var(--space-3);
    color: var(--text);
    font-weight: 600;
}

.product-content p {
    color: var(--text-light);
    font-size: var(--font-sm);
    margin-bottom: var(--space-4);
}

.product-color {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transition: width 0.3s ease;
}

.product-card:hover .product-color {
    width: 6px;
}

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: var(--space-8) var(--space-4) var(--space-8) var(--space-4);
    border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
    .page-header {
        margin: var(--space-6) var(--space-4) var(--space-8) var(--space-4);
        border-radius: var(--radius-lg);
        height: 250px;
    }
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,102,204,0.8) 0%, rgba(0,102,204,0.6) 100%);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    margin-bottom: var(--space-4);
    color: white;
    font-size: var(--font-4xl);
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: var(--font-2xl);
    }

    .page-header-content p {
        font-size: var(--font-base);
    }
}

.page-header-content p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--surface);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-light);
    margin: 0 var(--space-4);
    border-radius: var(--radius) var(--radius) 0 0;
}

@media (max-width: 768px) {
    .breadcrumb {
        margin: 0;
        border-radius: 0;
    }
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    align-items: center;
    justify-content: center;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

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

.breadcrumb .separator {
    color: var(--text-muted);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-bottom: var(--space-6);
    text-align: center;
}

.content-wrapper p {
    margin-bottom: var(--space-6);
    font-size: var(--font-lg);
}

.content-wrapper p:last-child {
    margin-bottom: 0;
}

/* Product Detail */
.product-detail {
    background: var(--surface);
    margin: 0 var(--space-4) var(--space-8) var(--space-4);
    border-radius: var(--radius-lg);
    padding: var(--space-16) 0;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .product-detail {
        margin: 0 0 var(--space-8) 0;
        border-radius: 0;
    }
}

.product-detail:last-child {
    margin-bottom: 0;
}

.product-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.product-header h2 {
    color: var(--primary);
    margin-bottom: var(--space-2);
    font-weight: 700;
}

.product-tagline {
    font-size: var(--font-lg);
    color: var(--text-light);
    font-weight: 500;
}

.product-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-content h3 {
    margin-bottom: var(--space-4);
    margin-top: var(--space-8);
    color: var(--text);
    font-weight: 600;
}

.product-content h3:first-child {
    margin-top: 0;
}

.product-content p {
    margin-bottom: var(--space-6);
    font-size: var(--font-lg);
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
    margin-bottom: var(--space-6);
}

.benefits-list li {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefits-list li .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefits-list li .benefit-icon svg {
    width: 28px;
    height: 28px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.contact-form {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form h3 {
    margin-bottom: var(--space-6);
    color: var(--primary);
    font-weight: 600;
}

.form-row {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--font-base);
    transition: all 0.3s ease;
    background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    margin-bottom: var(--space-8);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info h3 {
    margin-bottom: var(--space-6);
    color: var(--primary);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: var(--space-8);
    font-size: var(--font-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item h4 {
    margin-bottom: var(--space-2);
    color: var(--text);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: var(--font-base);
}

/* CTA Section */
.cta-section {
    padding: var(--space-16) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-16);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    margin: 0 var(--space-4);
}

@media (max-width: 768px) {
    .cta-card {
        margin: 0;
        border-radius: var(--radius-xl);
        padding: var(--space-12);
    }
}

.cta-content h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: white;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: var(--font-3xl);
    }
}

.cta-content p {
    font-size: var(--font-lg);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .cta-actions {
        gap: var(--space-3);
    }

    .cta-actions .btn {
        min-width: 160px;
        font-size: var(--font-sm);
    }
}

.cta-actions .btn {
    min-width: 180px;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.cta-actions .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: var(--space-16) 0 var(--space-8) 0;
    margin: var(--space-16) var(--space-4) 0 var(--space-4);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

@media (max-width: 768px) {
    .footer {
        margin: var(--space-16) 0 0 0;
        border-radius: 0;
    }
}

.footer-content {
    display: grid;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-16);
    }
}

.footer-contact {
    margin-top: var(--space-4);
}

.footer-contact p {
    margin-bottom: var(--space-2);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-sm);
}

.footer-solutions h4 {
    margin-bottom: var(--space-4);
    color: white;
    font-weight: 600;
}

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

.footer-solutions li {
    margin-bottom: var(--space-3);
}

.footer-solutions a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-solutions a:hover {
    color: var(--primary);
}

.footer-logo {
    margin-bottom: var(--space-4);
    color: white;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: var(--font-lg);
}

.footer-links h4 {
    margin-bottom: var(--space-4);
    color: white;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: var(--space-2);
}

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-light);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: var(--font-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-xl);
    }

    .hero-description {
        font-size: var(--font-base);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        min-width: 200px;
    }

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

    .content-grid {
        gap: var(--space-8);
    }
}

/* Products Page Specific Styles */
.product-card.detailed {
    padding: var(--space-8);
    margin-bottom: var(--space-8);
}

.product-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-6);
    gap: var(--space-4);
}

.product-info {
    flex: 1;
}

.product-info h2 {
    margin-bottom: var(--space-2);
    color: var(--text);
    font-size: var(--font-3xl);
    font-weight: 700;
}

.product-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.product-section {
    margin-bottom: var(--space-6);
}

.product-section h3 {
    color: var(--text);
    margin-bottom: var(--space-3);
    font-size: var(--font-xl);
    font-weight: 600;
}

.product-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

/* Duplicate removed - using main benefits-list above */

/* About Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.value-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-content h3 {
    margin-bottom: var(--space-3);
    color: var(--text);
    font-weight: 600;
}

.value-content p {
    color: var(--text-light);
    font-size: var(--font-sm);
}

/* Heritage Icon Styles */
.heritage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    margin: 0 auto;
}

.heritage-icon svg {
    width: 60px;
    height: 60px;
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

.contact-form-card,
.contact-info-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow);
}

.contact-form-card h3,
.contact-info-card h3 {
    margin-bottom: var(--space-6);
    color: var(--text);
    font-weight: 600;
    font-size: var(--font-2xl);
}

.contact-details {
    margin-top: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-content h4 {
    margin-bottom: var(--space-2);
    color: var(--text);
    font-weight: 600;
}

.contact-content p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Cards Styles */
.contact-cards-section {
    padding-top: 3rem;
    padding-bottom: 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.contact-info-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto var(--space-4) auto;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-content h3 {
    margin-bottom: var(--space-3);
    color: var(--text);
    font-weight: 600;
    font-size: var(--font-lg);
}

.contact-card-content p {
    color: var(--text-light);
    margin-bottom: var(--space-2);
    font-size: var(--font-sm);
}

.contact-card-content p:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--font-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    margin-bottom: var(--space-6);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    color: var(--text-light);
    font-size: var(--font-sm);
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

/* Background Sections */
.bg-light {
    background: var(--surface-alt);
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

/* CTA Section Card */
.cta-section {
    background: var(--surface-alt);
}

.cta-section .section-header {
    background: var(--surface);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
}

/* Loading states and micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

.section-contacts {
    padding-top: 2rem;
    padding-bottom: 0;
}

/* Products Page Styles */
.products-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

/* Home Page Products Mobile Fix */
@media (max-width: 768px) {
    .products-list .product-item .product-image {
        height: 200px;
        width: 100%;
        overflow: hidden;
        border-radius: var(--radius);
        background: var(--surface-alt);
    }

    .products-list .product-item .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Removed duplicate - using flex layout above */

.product-detailed-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

/* Removed duplicate - using flex layout above */

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

.product-details h2,
.product-details h3 {
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.product-tagline {
    color: var(--text-light);
    font-style: normal;
    margin-bottom: var(--space-4);
    font-size: var(--font-lg);
}

.product-section {
    margin-bottom: var(--space-6);
}

.product-section h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Duplicate removed - using main benefits-list above */

/* Mobile responsiveness for Products */
@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .product-detailed-item .benefits-list {
        grid-template-columns: 1fr;
    }

    .product-detailed-item {
        margin: 0 var(--space-2);
    }

    .product-detailed-item .product-details {
        padding: var(--space-6) !important;
    }

    .product-detailed-item .product-details h2 {
        font-size: var(--font-2xl) !important;
        margin-bottom: var(--space-4);
    }

    .product-detailed-item .product-tagline {
        font-size: var(--font-lg) !important;
        margin-bottom: var(--space-6);
        padding-bottom: var(--space-3);
    }

    .product-detailed-item .product-section {
        margin-bottom: var(--space-5);
    }

    .product-detailed-item .product-section h3 {
        font-size: var(--font-lg) !important;
        margin-bottom: var(--space-3);
    }

    .product-detailed-item .product-section p {
        font-size: var(--font-base) !important;
        line-height: 1.6;
        margin-bottom: var(--space-3);
    }

    .product-detailed-item .benefits-list {
        margin-bottom: var(--space-4);
    }

    .product-detailed-item .benefits-list li {
        font-size: var(--font-base) !important;
        margin-bottom: var(--space-3);
        padding-left: var(--space-6);
    }
}

@media (max-width: 480px) {
    .product-detailed-list {
        gap: var(--space-8);
    }

    .product-detailed-item {
        padding: var(--space-3);
    }

    .product-details h2 {
        font-size: var(--font-lg);
    }

    .product-section {
        margin-bottom: var(--space-4);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.lang-select:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Form Message Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message {
    animation: slideDown 0.3s ease-out;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .nav-toggle {
        display: none;
    }
}