@import "social-icons.css";

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #9E1A1A;
    --red-light: #C62828;
    --red-dark: #7A0E0E;
    --red-accent: #D32F2F;
    --dark-grey: #2C2C2C;
    --medium-grey: #757575;
    --light-grey: #E0E0E0;
    --bg-grey: #F5F5F5;
    --whatsapp-green: #25D366;
    --white: #FFFFFF;
    --footer-dark: #1A1A1A;
    --shadow: 0 4px 12px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
    --icon-size: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-grey);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.grey-underline {
    width: 80px;
    height: 3px;
    background: var(--light-grey);
    margin: 15px auto 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 22px;
    font-size: 14px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--dark-grey);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--dark-grey);
    font-weight: 400;
    font-size: 15px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-ctas {
    display: flex;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        gap: 25px;
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
}
@media (max-width: 768px) {
    .contact-dual-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
}
/* ===== FIXED WIDGETS ===== */
/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}
.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    animation: pulse-green 2s infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
}
.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}
.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark-grey);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--white);
}
.whatsapp-btn:hover + .whatsapp-tooltip,
.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* Video Widget & Back to Top */
.right-widgets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.video-widget {
    width: 200px;
    height: 112px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: default;
    position: relative;
    background: var(--dark-grey);
    transition: var(--transition);
}
.video-widget:hover {
    transform: scale(1.05);
}
.video-widget.expanded {
    width: 420px;
    height: 236px;
}
.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
}
.play-overlay {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}
.video-widget.show-overlay .play-overlay { display: flex; }
.play-btn { width: 45px; height: 45px; border-radius: 50%; background: var(--primary-red); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.video-widget:hover .play-btn {
    transform: scale(1.1);
    background: var(--red-light);
}
.play-btn svg {
    width: var(--icon-size);
    height: var(--icon-size);
    fill: var(--white);
    margin-left: 3px;
}
.video-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.video-minimize {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}
.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}
/* ===== MODALS & FORMS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: var(--transition);
    position: relative;
}
.modal-overlay.active .modal {
    transform: translateY(0);
}
.modal-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    position: relative;
}
.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
}
.modal-header p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
    margin-top: 5px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover {
    background: rgba(255,255,255,0.2);
}
.modal-body {
    padding: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    color: var(--medium-grey);
    font-weight: 700;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-grey);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--dark-grey);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(158, 26, 26, 0.1);
    outline: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group input.error,
.form-group textarea.error {
    border-color: var(--red-accent);
    background: #fff5f5;
}
.error-message {
    color: var(--red-accent);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}
.error-message.show {
    display: block;
}
.form-submit, .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-submit:hover, .submit-btn:hover {
    background: var(--red-dark);
                    transform: translateY(-2px);
                    box-shadow: var(--shadow);
}
.form-submit:disabled, .submit-btn:disabled {
    background: var(--medium-grey);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.form-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
}
.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.form-status.show {
    display: block;
}
/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/chemical-lab.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}
.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-hero p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.contact-content {
    padding: 80px 0;
    background: var(--bg-grey);
}
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form-section,
.contact-info-section {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.contact-info h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-info-item svg {
    width: var(--icon-size);
    height: var(--icon-size);
    fill: var(--primary-red);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-item div h4 {
    color: var(--dark-grey);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}
.contact-info-item div p {
    color: var(--medium-grey);
    font-size: 14px;
    line-height: 1.5;
}
.business-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-grey);
}
.business-hours h4 {
    color: var(--primary-red);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: var(--medium-grey);
    font-size: 14px;
}
/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    .contact-hero h1 {
        font-size: 36px;
    }
    .contact-hero p {
        font-size: 18px;
    }
    .contact-content {
        padding: 60px 0;
    }
    .contact-form-section,
    .contact-info-section {
        padding: 30px;
    }
}
@media (max-width: 576px) {
    .contact-form-section,
    .contact-info-section {
        padding: 20px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
/* ===== ADDITIONAL UTILITIES ===== */
.required-asterisk {
    color: var(--red-accent);
}
.contact-form-section h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
    font-size: 28px;
}
.btn-outline-primary {
    border-color: var(--primary-red);
    color: var(--primary-red);
}
.btn-outline-primary:hover {
    background-color: var(--primary-red);
    color: var(--white);
}
.footer-logo-link {
    display: block; 
    margin-bottom: 20px;
}
.footer-logo {
    height: 40px;
    width: auto;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    z-index: 999;
    padding: 30px 20px;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--light-grey);
    font-size: 18px;
    color: var(--dark-grey);
    display: block;
}

.mobile-nav a:hover {
    color: var(--primary-red);
}

.mobile-nav .nav-ctas {
    margin-top: 20px;
    flex-direction: column;
}

.mobile-nav .btn {
    text-align: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/services-hero.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}

/* Animated hexagon molecules */
.hero-molecules {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.molecule {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.molecule:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -80px;
    animation-delay: 0s;
}

.molecule:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

.molecule:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
    animation-delay: -10s;
}

.molecule:nth-child(4) {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 20%;
    animation-delay: -15s;
}

.molecule:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 30%;
    animation-delay: -8s;
    border-style: dashed;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(15px, -10px) rotate(270deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    padding: 35px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(158, 26, 26, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--primary-red);
}

.product-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-red);
    transition: var(--transition);
}

.product-card:hover .product-icon svg {
    fill: var(--white);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-grey);
}

.product-card p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.learn-more:hover {
    text-decoration: underline;
}

.learn-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.learn-more:hover svg {
    transform: translateX(4px);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 100px 0;
    background: var(--bg-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(158, 26, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--primary-red);
}

.feature-icon-wrap svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-red);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap svg {
    fill: var(--white);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--medium-grey);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
    padding: 100px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
    text-align: center;
}

.cert-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(158, 26, 26, 0.1);
    transform: translateY(-3px);
}

.cert-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cert-badge svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-red);
}

.cert-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    padding: 100px 0;
    background: var(--bg-grey);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.industry-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-grey), var(--primary-red));
    transition: var(--transition);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.industry-card:hover .industry-bg {
    transform: scale(1.05);
}

.industry-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.industry-overlay p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-hero.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--bg-grey);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px 30px;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-red);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.testimonial-card blockquote {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(158, 26, 26, 0.1);
    background: var(--bg-grey);
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--dark-grey);
}

.author-info span {
    font-size: 13px;
    color: var(--medium-grey);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-grey);
    color: var(--light-grey);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #AAAAAA;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

.footer-logo span {
    color: var(--primary-red);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #AAAAAA;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary-red);
    font-size: 18px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #AAAAAA;
}

.contact-info li svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-red);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    background: var(--footer-dark);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ===== FIXED WIDGETS ===== */
/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.whatsapp-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark-grey);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--white);
}

.whatsapp-btn:hover + .whatsapp-tooltip,
.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Video Widget & Back to Top */
.right-widgets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.video-widget {
    width: 200px;
    height: 112px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: default;
    position: relative;
    background: var(--dark-grey);
    transition: var(--transition);
}

.video-widget:hover {
    transform: scale(1.05);
}

.video-widget.expanded {
    width: 420px;
    height: 236px;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.video-widget.show-overlay .play-overlay { display: flex; }

.play-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-red); display: flex; align-items: center; justify-content: center; transition: var(--transition); }

.video-widget:hover .play-btn {
    transform: scale(1.1);
    background: var(--red-light);
}

.nav-home-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    vertical-align: middle;
}

.video-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-minimize {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: none;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: var(--transition);
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.modal-header p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
    margin-top: 5px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--medium-grey);
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-grey);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--dark-grey);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(158, 26, 26, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    color: var(--dark-grey);
    font-weight: 400;
}

.radio-option input[type="radio"]:checked + label {
    border-color: var(--primary-red);
    background: rgba(158, 26, 26, 0.05);
    color: var(--primary-red);
    font-weight: 700;
}

.radio-option label svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-method-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-method-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--light-grey);
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}

.contact-method-group input[type="radio"] {
    display: none;
}

.contact-method-group input[type="radio"]:checked + label {
    border-color: var(--primary-red);
    background: rgba(158, 26, 26, 0.05);
    color: var(--primary-red);
}

/* ===== MOBILE NAV OVERLAY ===== */
/* Replaced by .nav-links styles in media query */

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        gap: 25px;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-ctas {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .stat-number {
        font-size: 32px;
    }

    .products-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .video-widget {
        width: 140px;
        height: 95px;
    }

    .video-widget.expanded {
        width: 300px;
        height: 170px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
    }

    .modal {
        max-width: 100%;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }

    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* ===== HOW IT WORKS - PROCESS TIMELINE ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-grey);
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Step Connector Line */
.step-connector {
    position: absolute;
    left: 60px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), var(--light-grey));
}

.step-connector.last {
    display: none;
}

/* Step Icon Wrapper */
.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-number-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(158, 26, 26, 0.3);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 4px solid var(--bg-grey);
}

.process-step:hover .step-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-red);
    transition: var(--transition);
}

.process-step:hover .step-icon svg {
    fill: var(--white);
}

/* Step Content */
.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 35px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white);
}

.process-step:hover .step-content {
    box-shadow: 0 5px 20px rgba(158, 26, 26, 0.15);
    transform: translateY(-3px);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Feature Tags */
.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(158, 26, 26, 0.08);
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.process-step:hover .feature-tag {
    background: var(--primary-red);
    color: var(--white);
}

/* Process Stats */
.process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(158, 26, 26, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(158, 26, 26, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-box:hover .stat-icon {
    background: var(--primary-red);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-red);
    transition: var(--transition);
}

.stat-box:hover .stat-icon svg {
    fill: var(--white);
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-text strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-grey);
}

.stat-text span {
    font-size: 13px;
    color: var(--medium-grey);
    font-weight: 400;
}

/* Responsive Design for Process Flow */
@media (max-width: 1024px) {
    .process-timeline {
        max-width: 700px;
    }
    
    .process-step {
        gap: 30px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
    }
    
    .step-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .process-timeline {
        max-width: 100%;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .step-connector {
        left: 35px;
        top: 90px;
    }
    
    .step-icon-wrapper {
        margin-left: 0;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-number-badge {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: -10px;
        left: -10px;
    }
    
    .step-content {
        padding: 25px 20px;
        margin-left: 0;
    }
    
    .step-content::before {
        display: none;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
    
    .stat-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .process-step {
        margin-bottom: 40px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .step-number-badge {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .step-content {
        padding: 20px 16px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .stat-text strong {
        font-size: 18px;
    }
    
    .stat-text span {
        font-size: 12px;
    }
}

/* ===== FAQ SECTION - ACCORDION STYLE ===== */
.faqs {
    padding: 100px 0;
    background: var(--white);
}

/* Search Bar */
.faq-search-wrapper {
    max-width: 700px;
    margin: 50px auto 40px;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    fill: var(--medium-grey);
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    padding: 18px 60px 18px 56px;
    font-size: 16px;
    border: 2px solid var(--light-grey);
    border-radius: 50px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.faq-search-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(158, 26, 26, 0.1);
}

.search-clear {
    position: absolute;
    right: 15px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-clear:hover {
    background: rgba(158, 26, 26, 0.1);
}

.search-clear svg {
    width: 20px;
    height: 20px;
    fill: var(--medium-grey);
}

.search-results-count {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: var(--medium-grey);
}

/* Category Filter Pills */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--light-grey);
    background: var(--white);
    color: var(--dark-grey);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}

.category-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.category-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* FAQ Accordion Container */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Individual FAQ Item */
.faq-accordion-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--light-grey);
    background: var(--white);
    transition: var(--transition);
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(158, 26, 26, 0.3);
}

.faq-accordion-item.hidden {
    display: none;
}

/* FAQ Question (Button) */
.faq-question {
    width: 100%;
    padding: 24px 60px 24px 28px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-grey);
}

.faq-question:focus {
    outline: 3px solid rgba(158, 26, 26, 0.3);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-grey);
    display: block;
    line-height: 1.5;
    padding-right: 10px;
}

/* FAQ Icon (Chevron) */
.faq-icon {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* FAQ Answer Container */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 28px 28px;
    border-top: 1px solid var(--light-grey);
}

.faq-answer-content p {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0 0 0;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.no-results-message svg {
    width: 80px;
    height: 80px;
    fill: var(--light-grey);
    margin-bottom: 20px;
}

.no-results-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.no-results-message p {
    color: var(--medium-grey);
    font-size: 16px;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faqs {
        padding: 60px 0;
    }

    .faq-search-wrapper {
        margin: 40px auto 30px;
    }

    .faq-search-input {
        padding: 16px 50px 16px 50px;
        font-size: 15px;
    }

    .search-icon {
        left: 16px;
        width: 20px;
        height: 20px;
    }

    .search-clear {
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .faq-categories {
        gap: 10px;
        margin-bottom: 30px;
    }

    .category-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .faq-accordion-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 20px 50px 20px 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-icon {
        right: 20px;
        width: 22px;
        height: 22px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }

    .faq-answer-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-search-input {
        padding: 14px 45px 14px 45px;
        font-size: 14px;
    }

    .category-btn {
        padding: 7px 16px;
        font-size: 12px;
    }

    .faq-question {
        padding: 18px 45px 18px 16px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-icon {
        right: 16px;
        width: 20px;
        height: 20px;
    }

    .faq-answer-content {
        padding: 0 16px 18px 16px;
    }

    .no-results-message {
        padding: 40px 20px;
    }

    .no-results-message svg {
        width: 60px;
        height: 60px;
    }

    .no-results-message h3 {
        font-size: 20px;
    }

    .no-results-message p {
        font-size: 14px;
    }
}

/* ========================================= */
/*      MODERN CONTACT PAGE REDESIGN         */
/* ========================================= */

.contact-hero-modern {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-grey) 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    overflow: hidden;
}

.contact-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/world-map-dots.png') no-repeat center center; /* Optional texture */
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.contact-hero-modern h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-modern p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

/* Contact Section & Grid */
.contact-section-modern {
    padding: 80px 0;
    background: #f8f9fa; /* Very light grey bg */
    margin-top: -80px; /* Overlap hero */
    position: relative;
    z-index: 10;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Info Card (Left Column) */
.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.03);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.info-card .subtitle {
    color: var(--medium-grey);
    margin-bottom: 30px;
    font-size: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-grey);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(158, 26, 26, 0.1); /* Primary Red tint */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .icon-box {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.icon-box svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-red);
    transition: var(--transition);
}

.info-item:hover .icon-box svg {
    fill: var(--white);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--medium-grey);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-text .value, 
.info-text .value-link {
    font-size: 1.1rem;
    color: var(--dark-grey);
    font-weight: 500;
    line-height: 1.5;
}

.info-text .value-link {
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    width: fit-content;
}

.info-text .value-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.info-text .value-link:hover {
    color: var(--primary-red);
}

.info-text .value-link:hover::after {
    width: 100%;
}

/* Social Actions */
.social-actions {
    margin-top: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.action-btn.whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.action-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.action-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-right: 10px;
}

/* Form Card (Right Column) */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: 2px solid #eee;
    background: #fdfdfd;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--dark-grey);
    transition: var(--transition);
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(158, 26, 26, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn-modern {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn-modern:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(158, 26, 26, 0.2);
}

.submit-btn-modern svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 10px;
    transition: var(--transition);
}

.submit-btn-modern:hover svg {
    transform: translateX(5px);
}

/* Map Section */
.map-section-modern {
    position: relative;
    height: 450px;
    width: 100%;
    filter: grayscale(100%); /* Elegant grayscale map */
    transition: var(--transition);
}

.map-section-modern:hover {
    filter: grayscale(0%);
}

.map-section-modern .map-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
}

.map-section-modern .contact-overlay-card {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    transform: none;
    width: 25%;
    z-index: 2;
    margin-top: -30px;
    margin-right: 30px;
    pointer-events: none;
}

.map-section-modern .contact-overlay-card > .contact-info-column {
    pointer-events: auto;
}

/* Responsiveness */
@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-card {
        padding: 30px;
        position: static;
    }

    .form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-modern {
        padding: 120px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .contact-hero-modern h1 {
        font-size: 2.5rem;
    }
    
    .contact-section-modern {
        padding: 40px 0;
        margin-top: -40px;
    }

    .info-item {
        flex-direction: column;
    }

    .icon-box {
        margin-bottom: 15px;
    }

    .submit-btn-modern {
        padding: 16px;
    }
}

