/* ==========================================
   VERPA INTERNATIONAL REDESIGN CSS
   Design Theme: Premium Agro Export
   Primary: Forest Green | Accent: Lemon Gold
============================================ */

/* CSS VARIABLES / DESIGN SYSTEM */
:root {
    --primary-color: #0f2f1d;
    --primary-light: #1b4d32;
    --primary-dark: #07170e;
    
    --accent-color: #e5a93b;
    --accent-hover: #f2b73f;
    --accent-light: #fff2cc;
    
    --bg-light: #f4f6f5;
    --bg-white: #ffffff;
    --bg-dark: #121e17;
    
    --text-main: #2b3a32;
    --text-muted: #6b7a70;
    --text-white: #ffffff;
    
    --border-color: #e2e8e4;
    --border-radius-sm: 4px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-medium: 0 15px 45px rgba(15, 47, 29, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* RESET & CORE GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 40px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 169, 59, 0.3);
}

.btn-gold-outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-gold-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-solid-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* STICKY HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 47, 29, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    padding: 20px 0;
}

.main-header.scrolled {
    padding: 12px 0;
    background-color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li > a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

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

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

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

/* DROPDOWN MENU */
.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 10px;
    margin-left: 2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    border-top: 3px solid var(--accent-color);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-normal);
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    padding-left: 25px;
}

.cta-nav-btn {
    background-color: var(--accent-color);
    color: var(--primary-dark) !important;
    padding: 10px 20px !important;
    border-radius: 20px;
    font-weight: 600 !important;
}

.cta-nav-btn::after {
    display: none !important;
}

.cta-nav-btn:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 5px 15px rgba(229, 169, 59, 0.3);
}

/* HERO SLIDER SECTION */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

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

.slide-content {
    color: var(--text-white);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    background-color: rgba(229, 169, 59, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(229, 169, 59, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

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

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 650px;
}

/* Slider Controls */
.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 80px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}

/* SECTION HEADER GENERAL CLASS */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

.section-title {
    font-size: 40px;
    color: var(--primary-dark);
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto;
}

.section-line.small {
    margin: 10px 0 20px;
}

.section-description {
    color: var(--text-muted);
    font-size: 16px;
}

/* PRODUCT SECTION & CARDS */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.product-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 47, 29, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-card-details {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.product-meta i {
    color: var(--accent-color);
    margin-right: 4px;
}

/* INTERACTIVE SPECIFICATIONS MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(7, 23, 14, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
}

.modal-img-col {
    background-color: var(--primary-dark);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
}

.modal-img-col img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.modal-commercial-info {
    padding: 25px;
    flex-grow: 1;
    background-color: var(--primary-color);
}

.modal-commercial-info h4 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-commercial-info ul {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-commercial-info ul li strong {
    color: var(--accent-color);
}

.modal-data-col {
    padding: 40px;
    overflow-y: auto;
    max-height: 550px;
}

.sub-specs-header {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 10px 0;
    font-size: 14px;
}

.prop-label {
    font-weight: 500;
    color: var(--text-muted);
    width: 45%;
}

.prop-value {
    font-weight: 600;
    color: var(--primary-dark);
}

.modal-cta-wrap {
    margin-top: 30px;
}

.btn-whatsapp-direct {
    background-color: #25d366;
    color: white;
    width: 100%;
    justify-content: center;
    border-radius: var(--border-radius-sm);
}

.btn-whatsapp-direct:hover {
    background-color: #128c7e;
    transform: scale(1.02);
}

/* SERVICES & STATS SECTION */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 5.5fr 4.5fr;
    gap: 60px;
    align-items: center;
}

.services-intro-text {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.service-item-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.service-icon-box {
    background-color: var(--primary-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(15, 47, 29, 0.15);
}

.service-item-text h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.service-item-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* STATS COUNTER BLOCKS */
.stats-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-card {
    background-color: var(--bg-white);
    padding: 30px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-normal);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number-box {
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
}

.percent-sign {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.stats-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stats-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    min-height: 36px;
}

.progress-bar-wrap {
    width: 100%;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* WHY CHOOSE US - PROCESS STEPPER */
.why-choose-us-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

/* Line connecting steps */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-badge {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.timeline-panel h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.timeline-panel p {
    font-size: 13px;
    color: var(--text-muted);
    padding: 0 10px;
}

/* ABOUT US SECTION */
.about-us-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.about-img-frame {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-main-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 240px;
    border-bottom: 4px solid var(--accent-color);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.badge-txt {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.about-content-col p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.strengths-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.strength-box {
    display: flex;
    gap: 12px;
}

.strength-box i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.strength-box h5 {
    font-size: 14px;
    margin-bottom: 4px;
}

.strength-box p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.team-cred-logos {
    display: flex;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.cred-tag {
    font-size: 12px;
    font-weight: 600;
    background-color: var(--accent-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* CONNECT TODAY / CTA SECTION */
.cta-section {
    padding-bottom: 100px;
    background-color: var(--bg-light);
}

.cta-card {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Graphic Overlay */
.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229,169,59,0.06) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-text-side {
    color: var(--text-white);
    max-width: 600px;
}

.cta-text-side h2 {
    color: var(--text-white);
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-text-side p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 25px;
}

.office-locations {
    display: flex;
    gap: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-color);
}

.office-locations i {
    margin-right: 4px;
}

.cta-action-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 250px;
    flex-shrink: 0;
}

.cta-action-side .btn {
    width: 100%;
    justify-content: center;
}

/* FOOTER */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer h3, .footer h4 {
    color: var(--text-white);
    margin-bottom: 25px;
}

.footer-info p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.footer-links ul, .footer-products ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover, .footer-products a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 12px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
}

/* FLOATING WHATSAPP CHAT WIDGET */
.whatsapp-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1500;
    transition: var(--transition-fast);
}

.whatsapp-trigger:hover {
    transform: scale(1.08) rotate(5deg);
}

.chat-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: red;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    z-index: 1500;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.whatsapp-chat-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.widget-header {
    background-color: #128c7e;
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.status-info h5 {
    color: white;
    font-size: 13px;
}

.status-info span {
    font-size: 10px;
    opacity: 0.8;
    display: block;
}

.close-widget {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.widget-body {
    padding: 20px;
    background-color: #e5ddd5;
    flex-grow: 1;
    height: 180px;
    overflow-y: auto;
}

.bubble-msg {
    background-color: white;
    padding: 12px 16px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) var(--border-radius-md);
    font-size: 12px;
    color: #4a4a4a;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.widget-footer {
    padding: 12px;
    background-color: var(--bg-white);
}

.btn-send-whatsapp {
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.btn-send-whatsapp:hover {
    background-color: #128c7e;
}


/* MOBILE RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    /* Mobile Nav Burger Menu Toggle */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--text-white);
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        border-top: 1px solid rgba(255,255,255,0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-normal);
        padding: 20px;
    }

    .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(255,255,255,0.02);
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--accent-color);
        margin-top: 5px;
    }

    /* Mobile Menu Burger Open State */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero section font sizing */
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 15px;
    }

    /* Process Stepper in Mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline::before {
        display: none; /* Hide horizontal connecting line */
    }

    /* Modal Mobile Grid */
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-img-col img {
        height: 180px;
    }

    .cta-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .office-locations {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-action-side {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-col {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
