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

:root {
    /* Modern Professional Mining Theme */
    --primary: #D4AF37;
    /* Rich Gold - Premium & Luxury */
    --secondary: #0F172A;
    /* Deep Slate - Professional & Trust */
    --accent: #F59E0B;
    /* Amber - Energy & Warmth */
    --gold: #C9A961;
    /* Refined Gold - Elegance */
    --light: #F8FAFC;
    /* Clean White - Modern */
    --dark: #1E293B;
    /* Dark Slate - Depth */
    --gray: #64748B;
    /* Modern Gray - Readability */
    --success: #10B981;
    /* Emerald - Growth */
    --warning: #F59E0B;
    /* Amber - Attention */
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(26, 15, 10, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.nav-logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.15);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header with Mining Imagery */
.header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.85) 100%),
        url('/img/mining.jpg') center/cover;
    color: white;
    padding: 4rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 0 L50 50 L100 0 L100 100 L0 100 Z" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
    background-size: 300px;
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 300px 300px;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeSlideDown 0.8s ease;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5.5rem;
    letter-spacing: 4px;
    line-height: 0.9;
    margin-bottom: 1rem;
    animation: fadeSlideUp 0.8s ease 0.2s both;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 300;
    animation: fadeSlideUp 0.8s ease 0.4s both;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-text {
    max-width: 900px;
    font-size: 1.3rem;
    margin-top: 2.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeSlideUp 0.8s ease 0.6s both;
    font-weight: 300;
}

.operations-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.8s both;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.badge:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    color: var(--secondary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin-top: 2rem;
    line-height: 1.8;
}

/* Contact Bar */
.contact-bar {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-details h3 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-details p {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border-left: 8px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.mission-vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-left-width: 15px;
}

.mission-vision h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.mission-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Products Grid */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
}

.about-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.highlight-box strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Mining Gallery */
.mining-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    padding: 2rem;
    color: white;
    transform: translateY(0);
    transition: background 0.4s;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
}

.gallery-overlay h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Goals Timeline */
.goals-timeline {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 4rem;
    border-radius: 25px;
    color: white;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.goals-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.goal-category {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.goal-category h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
}

.goal-items {
    display: grid;
    gap: 1.5rem;
}

.goal-item {
    padding: 1.8rem;
    border-left: 5px solid var(--primary);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s;
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.goal-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-left-width: 10px;
    transform: translateX(15px);
}

.goal-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 40px;
}

.goal-content {
    color: rgba(255, 255, 255, 0.95);
}

.goal-content strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Differentiators */
.differentiators {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--secondary);
    padding: 5rem 3rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.differentiators::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.differentiators::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 50%;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.diff-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    min-width: 0;
    /* Prevents overflow */
    box-sizing: border-box;
}

.diff-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: white;
}

.diff-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.diff-item h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    color: white;
}

.diff-item p {
    line-height: 1.7;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

/* Business Structure */
.structure-visual {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.ceo-box {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.ceo-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.department-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--primary);
    transition: all 0.3s;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.department-card h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.department-card ul {
    list-style: none;
    color: var(--gray);
}

.department-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.department-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Risk Management */
.risk-management {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.risk-section h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.risk-section ul {
    list-style: none;
}

.risk-section li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 2rem;
    position: relative;
}

.risk-section li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.mitigation-section li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background: transparent;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.footer h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.footer-tagline {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.btn {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(26, 15, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-bar {
        grid-template-columns: 1fr;
        margin-top: -3rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Differentiators - Why Choose SWN */
    .differentiators {
        padding: 3rem 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diff-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .diff-icon {
        font-size: 2.5rem;
        margin: 0 auto;
    }

    .diff-item h4 {
        font-size: 1.3rem;
    }

    .diff-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s;
}

.blog-card:hover::before {
    transform: scaleY(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary);
}

.blog-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--secondary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--secondary);
    opacity: 0.7;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.15)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

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

    .blog-card {
        padding: 2rem 1.5rem;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

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

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* Differentiators - Extra Small Screens */
    .differentiators {
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .diff-grid {
        gap: 1rem;
    }

    .diff-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .diff-icon {
        font-size: 2rem;
    }

    .diff-item h4 {
        font-size: 1.1rem;
    }

    .diff-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-year {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    min-width: 100px;
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 5px solid var(--primary);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.application-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.application-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.application-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.process-step p {
    color: var(--gray);
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.benefit-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.benefit-card p {
    line-height: 1.8;
    opacity: 0.95;
}

/* Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hours-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hours-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.hours-item .day {
    font-weight: 600;
    color: var(--secondary);
}

.hours-item .time {
    color: var(--gray);
    font-weight: 500;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Responsive for new sections */
@media (max-width: 768px) {

    .values-grid,
    .features-grid,
    .applications-grid,
    .process-timeline,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1.5rem;
        padding-left: 0;
    }

    .timeline-year {
        min-width: auto;
        width: 100px;
    }

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

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

/* Operations Details */
.operations-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.operation-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 5px solid var(--primary);
}

.operation-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.operation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.operation-header h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    letter-spacing: 1px;
}

.operation-status {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.operation-detail-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.operation-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light);
}

.spec-item {
    display: flex;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.spec-item strong {
    color: var(--secondary);
    min-width: 120px;
}

@media (max-width: 768px) {
    .operations-details {
        grid-template-columns: 1fr;
    }

    .operation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--secondary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}