@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #F9F8F4;
    --text-color: #1A1A1A;
    --text-muted: #555555;
    --primary-color: #0F2540; /* Navy Blue */
    --accent-color: #F47920;  /* Orange Accent */
    --footer-bg: #081626;     /* Darker Navy */
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: #081626; /* Dark background to match header/footer and prevent white flicker on overscroll */
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--text-color);
    color: var(--white);
}

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

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

/* Header */
header {
    padding: 20px 0;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform; /* Hint for browser optimization */
    -webkit-backface-visibility: hidden; /* Fix flickering */
    backface-visibility: hidden;
    transform: translateZ(0);
}

header .btn {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Removed .logo-icon and .logo-icon::after */

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.lang-switch::after {
    display: none; /* Remove underline from lang switcher */
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Bouncy transition */
    margin-left: 20px !important; /* Override inline style eventually */
}

.lang-switch:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-slider {
    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.2s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1);
    transition: transform 6s ease;
}

.hero-slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.95) 0%, rgba(15, 37, 64, 0.7) 100%);
}

.slide-content {
    width: 100%;
    padding-top: 60px; /* Offset for sticky header */
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    --text-color: #1A1A1A;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-slide.active .hero-text h1,
.hero-slide.active .hero-text p {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.hero-nav {
    position: absolute;
    bottom: 50px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    --text-muted: #666666;
    transition: all 0.3s;
}

.nav-dot:hover {
    border-color: var(--white);
}

.nav-dot.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    z-index: 10;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--text-color);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-top: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Product Slider Section */
.showcase {
    display: block; /* Reset grid */
    padding: 100px 0;
    background-color: #2D3A3F; /* Keep dark background or match body? Let's go Dark for contrast */
    color: var(--white);
    overflow: hidden;
}

.products-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--white);
    color: #2D3A3F;
    border-color: var(--white);
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.product-card {
    min-width: calc(33.333% - 20px); /* 3 items visible */
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.08);
}

.p-img {
    height: 250px;
    width: 100%;
    background-color: #eee;
    position: relative;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-content {
    padding: 25px;
}

.p-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 10px;
    display: block;
}

.p-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.p-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .product-card {
        min-width: calc(50% - 15px); /* 2 items */
    }
    .product-card {
        min-width: 100%; /* 1 item */
    }
}

/* About Section (Redesigned) */
.commitment {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Add a subtle background accent */
.commitment::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, rgba(244, 121, 32, 0.03), transparent);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.exp-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(15, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border-left: 4px solid var(--accent-color);
}

.exp-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid rgba(244, 121, 32, 0.3);
    padding-bottom: 5px;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.25rem !important;
    color: var(--text-color) !important;
    font-weight: 500;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 30px !important;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.a-stat {
    display: flex;
    flex-direction: column;
}

.as-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.as-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: -1; /* Image on top */
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background-color: var(--white);
}

.adv-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.adv-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.adv-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-color);
}

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

.adv-card {
    background-color: #F9F8F4; /* Light beige/grey */
    padding: 40px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.adv-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.adv-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #A33B3B; /* Muted Red accent based on common designs, or keep Green */
    margin-bottom: 20px;
}

/* Overriding red with green if preferred, but let's try a distinct accent for advantages */
.adv-card h3.green-accent {
    color: var(--primary-color);
}

.adv-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

/* Network Section */
.network {
    padding: 120px 0;
}

.network .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.network-info h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

.network-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.net-card {
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.net-card:first-child {
    grid-column: 1 / 2;
}

.net-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3; /* Tall image */
    height: 100%;
}

.net-card:nth-child(3) {
    grid-column: 1 / 2;
}

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

.net-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.6);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
}

.net-overlay h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.net-overlay span {
    font-size: 0.8rem;
}



/* Contact Section */
.contact-section {
    background-color: var(--bg-color);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-left h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.1;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form-wrapper {
    background-color: #F2F0EB;
    padding: 40px;
    border-radius: 4px;
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 1fr for brand, 1.5fr for links to keep them closer */
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    max-width: 350px;
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

.f-col h4 {
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.f-col ul li {
    margin-bottom: 15px;
}

.f-col ul li a {
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-decoration: none;
}

.f-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    display: block;
}
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .network .container, .contact-layout, .showcase, .commitment {
        grid-template-columns: 1fr;
    }
    
    .showcase-images, .network-grid {
        display: none; /* Simplify for tablet/mobile to avoid complex grid issues */
    }
    
    .hero-text h1 {
        font-size: 3rem;
    padding: 0 0px;
    
    .nav-menu {
        display: none; /* Mobile menu hidden for simplicity */
    }
}


/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.centered {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #d6661a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 121, 32, 0.3);
}

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

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-text .accent {
    color: var(--accent-color);
}

#menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    position: relative;
    text-decoration: none;
}

#menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

#menu a:hover::after, #menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 37, 64, 0.95) 0%, rgba(15, 37, 64, 0.6) 100%);
    z-index: -1;
}

.hero-container {
    z-index: 1;
}

.hero-subtitle {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--white);
}

.text-accent {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-btns .btn {
    min-width: 180px;
}

/* Partners Section */
.partners-section {
    padding: 50px 0;
    background-color: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.partner-logo {
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(244, 121, 32, 0.4);
    z-index: 2;
}

.exp-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background-color: var(--white);
}

.categories-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.categories-info {
    flex: 0 0 300px;
}

.categories-info h2 {
    font-size: 2.8rem;
    margin: 15px 0 30px;
    line-height: 1.1;
}

.cat-count {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cat-count i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cat-count span {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.cat-count small {
    font-weight: 400;
    color: var(--text-muted);
}

.all-cats-link {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: var(--transition);
}

.all-cats-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.categories-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-card {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.cat-card:hover {
    background-color: #eee;
    transform: translateY(-5px);
}

.cat-img {
    height: 180px;
    margin-bottom: 20px;
}

.cat-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cat-title {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Promo Banners */
.promo-section {
    padding-bottom: 100px;
}

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

.promo-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px;
}

.promo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.promo-tag {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.promo-content h3 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1;
}

/* Products Section Redesign */
.products-section {
    padding: 80px 0;
}

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

.section-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-title-line .line {
    height: 2px;
    width: 60px;
    background-color: var(--primary-color);
}

.section-title-line h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.product-tabs-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.product-tabs-centered li {
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
}

.product-tabs-centered li.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-tabs-centered li:hover:not(.active) {
    background-color: #f0f4f8;
}

.products-container-bg {
    background-color: #f4f7fa;
    padding: 60px 40px;
    border-radius: 4px;
}

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

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

.product-card-v2 {
    background-color: var(--white);
    padding: 25px;
    border-radius: 4px;
    transition: var(--transition);
}

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

.p-img-area {
    background-color: #f9f9f9;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
    padding: 0;
    overflow: hidden;
}

.p-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-badge-v2 {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffeded;
    color: #ff4d4d;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.p-brand {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

.p-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.p-price-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-from {
    font-size: 0.9rem;
    color: #666;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e63946;
}

.p-rating-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-rating-v2 .stars {
    color: var(--primary-color);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.review-count {
    font-size: 0.85rem;
    color: #888;
}

/* Why Us Section - Integrated Design */
.why-us-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #0F2540 0%, #081626 70%, #040b13 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-us-header-content {
    margin-bottom: 80px;
}

.why-us-header-content .prefix {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.why-us-header-content h2 {
    font-size: 3.5rem; /* Slightly smaller to match other sections */
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

.why-us-header-content .suffix {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.7;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 400;
}

.why-us-header-content .suffix::before,
.why-us-header-content .suffix::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}

.why-us-services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-float-card {
    background: rgba(15, 37, 64, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 500px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-float-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 37, 64, 0.9);
    border-color: var(--accent-color);
}

.service-float-card.left { 
    align-self: flex-start;
    flex-direction: row-reverse;
    text-align: right;
}

.service-float-card.right { 
    align-self: flex-end;
}

.service-float-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.service-float-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 0 20px rgba(244, 121, 32, 0.3);
}

.why-us-tagline {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 60px;
    color: var(--accent-color);
    opacity: 0.9;
}

.why-us-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.bottom-web i {
    color: var(--accent-color);
}

.bottom-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

.bottom-socials a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Mobile Navigation Trigger */
.mmenu-trigger {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mmenu-trigger:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .mmenu-trigger {
        display: flex;
    }

    #menu {
        display: none;
    }

    /* mmenu-light overrides to fix "white screen" / invisible items */
    .mm-menu {
        --mm-color-primary: var(--primary-color) !important;
        --mm-color-background: var(--white) !important;
        --mm-color-text: var(--primary-color) !important;
        z-index: 9999 !important;
    }

    /* Force the cloned list items to be visible and correctly colored */
    .mm-spn, .mm-spn ul, .mm-spn li, .mm-spn a {
        display: block !important;
        color: var(--primary-color) !important;
        background-color: var(--white) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mm-spn a {
        font-weight: 700 !important;
        font-size: 1.1rem !important;
        padding: 20px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .mm-spn--navbar::after {
        color: var(--primary-color) !important;
        font-weight: 800 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-section {
        padding: 80px 0;
    }

    .why-us-header-content h2 { font-size: 3rem; }
    .service-float-card { width: 100%; max-width: 500px; }
    .service-float-card.left, .service-float-card.right { margin: 0; align-self: center; }
    .why-us-header-content .suffix::before, .why-us-header-content .suffix::after { display: none; }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-map-card {
        min-height: 300px;
    }

    .why-us-header-content h2 { font-size: 2.2rem; }
    .service-float-card { 
        padding: 15px 25px; 
        width: 100%;
        flex-direction: row !important;
        text-align: left !important;
    }
    .service-float-card h4 { font-size: 1.1rem; }
}

/* Contact Section Redesign */
.contact-section {
    padding: 120px 0;
    background-color: var(--secondary-bg);
    position: relative;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

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

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(15, 37, 64, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 37, 64, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-muted);
    margin: 0;
}

.contact-map-card {
    height: 100%;
    min-height: 450px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-card {
        min-height: 400px;
    }
}

/* Footer Redesign */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-info p {
    margin: 25px 0 35px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-nav-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-nav h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-nav ul li {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-nav i {
    color: var(--accent-color);
    width: 15px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .footer-nav-group {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Explicitly hide hamburger on desktop */
.hamburger {
    display: none !important;
}

@media (max-width: 1100px) {
    .about-grid, .contact-layout {
        gap: 50px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .categories-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .categories-info {
        flex: 0 0 auto;
    }
    .cat-count {
        justify-content: center;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-banner {
        height: 350px;
        padding: 40px;
    }
    .promo-content h3 {
        font-size: 2.2rem;
    }
    .products-container-bg {
        padding: 40px 20px;
    }
    .product-grid-v2 {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid, .contact-layout {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-width: 600px;
        margin: 0 auto 50px;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        border-right: none;
    }
    .values-card {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 40px 20px;
    }
    .vision-mission-card {
        padding: 100px 40px 40px;
    }
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vm-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none;
    }
    /* .nav-menu handled in hamburger section below */
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .product-grid-v2, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .values-card {
        grid-template-columns: 1fr;
    }
    .vm-item h3 {
        font-size: 1.6rem;
    }
    .about-content h2, .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Hamburger Menu Mobile Styles */
.hamburger {
    display: none !important; /* Default hidden */
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
}

/* Explicitly hide on desktop to prevent any visibility issues */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block !important;
    }

    .nav-menu {
        display: flex; /* Vital fix: ensure it's not hidden */
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        align-items: center; /* Center items to fix underline width */
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 25px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: var(--white);
        font-size: 1.1rem;
        display: block;
        width: fit-content; /* Ensure width matches text for underline */
    }

    .lang-switch {
        margin-left: 0 !important;
        display: inline-block;
    }
    
    .container {
        padding: 0 20px;
    }

    .about-content {
        padding-right: 15px; /* Ensure right padding on mobile for text */
    }

    .about-image {
        padding-right: 15px; /* Consistent padding for image */
    }

    

    /* Ensure word break for long words in Swedish */
    .about-content p {
        word-break: break-word;
        hyphens: auto;
    }

    header .container {
        padding: 0 20px;
    }
    
    header .btn {
        display: none; /* Hide CTA button on mobile to prevent crowding */
    }

    /* Fix text colors on mobile */
    .hero-text h1, 
    .hero-text p,
    .products-header h2,
    .p-title,
    .p-desc,
    .p-cat,
    .p-meta span,
    .footer-links h4,
    .f-col h4 {
        color: #ffffff !important;
    }

    /* Fix hero section padding/layout on mobile */
    .hero {
        min-height: auto; /* Allow it to be smaller on mobile to avoid excessive scrolling/centering issues */
        height: 100vh;
    }

    .hero-text h1 {
        font-size: 2.5rem; /* Slightly reduced for better fit */
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-content {
        padding-top: 110px; /* Adjusted to balance header (80px) + spacing, centered visually */
        padding-bottom: 30px;
    }

    /* Reorder footer elements on mobile */
    .footer-grid {
        display: flex;
        flex-direction: column;
    }
    
    .footer-brand {
        display: contents; /* Allows children to be reordered within the parent grid/flex */
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-desc {
        order: 2;
    }
    
    .footer-links {
        order: 3;
    }
    
    .footer-reg {
        order: 4;
        margin-top: 20px !important; /* Reduced separation */
    }

    /* Add padding to footer columns */
    .f-col {
        padding-bottom: 5px;
        margin-top: 5px; /* Reduced spacing as requested */
    }
    
    /* Remove top margin for the first column to align with the logo section if needed, 
       but usually stacking them with space is good. */

    /* Ensure header is dark for logo visibility */
    header {
        background-color: #081626 !important;
    }
}

/* Hide header when footer is visible */
header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
