/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #05223A;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 150px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

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

.logo:hover {
    color: #667eea;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.nav-menu a:hover {
    color: #05223A;
    background: #f0f0f0;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 0.75rem 1.8rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6d4096 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #05223A;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: #f0f0f0;
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #e0e0e0;
    color: #05223A;
}

.lang-btn.active {
    background: #05223A;
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(5, 34, 58, 0.2);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .language-switcher {
        order: -1;
        margin-right: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-top: 2px solid #f0f0f0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
        padding: 0.5rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-cta {
        width: auto;
        text-align: center;
        margin-top: 0;
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #05223A 0%, #0A3D62 50%, #0D5F9E 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 190, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 25px 60px rgba(5, 34, 58, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.hero-visual-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-visual-icon {
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

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

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

/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #fff;
    color: #05223A;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #05223A;
}

/* Sections */
section {
    padding: 6rem 0;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #05223A;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

/* About Preview */
.about-preview {
    background: #F7F9FC;
}

.about-preview h2 {
    color: #05223A;
}

.about-preview p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Business Areas */
.business-areas {
    background: #fff;
}

.business-areas h2 {
    color: #05223A;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: left;
    border: none;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card:nth-child(1) {
    background: linear-gradient(135deg, #e8e4f6 0%, #f0ebf8 100%);
    color: #05223A;
}

.card:nth-child(1) strong {
    color: #05223A;
}

.card:nth-child(1) .link {
    color: #667eea;
}

.card:nth-child(1)::before {
    display: none;
}

.card:nth-child(6) {
    background: linear-gradient(135deg, #e8eef8 0%, #f0f5ff 100%);
    color: #05223A;
}

.card:nth-child(6) strong {
    color: #05223A;
}

.card:nth-child(6) .link {
    color: #667eea;
}

.card:nth-child(6)::before {
    display: none;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.35);
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.card > div:first-child {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 1;
    flex-grow: 1;
    color: #fff;
}

.card:nth-child(1) p,
.card:nth-child(6) p {
    color: #555;
}

.link {
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    margin-top: auto;
    font-size: 0.95rem;
}

.link:hover {
    opacity: 1;
    gap: 0.75rem;
}

/* Global Operations */
.global-ops {
    background: #F7F9FC;
}

.global-ops h2 {
    color: #05223A;
}

.global-ops p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.8;
}

.countries {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.country-tag {
    padding: 0.75rem 1.8rem;
    background: #fff;
    color: #05223A;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.country-tag:hover {
    background: #05223A;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(5, 34, 58, 0.3);
}

/* Quality Section */
.quality {
    background: linear-gradient(135deg, #05223A 0%, #0A3D62 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quality::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quality::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 190, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quality h2 {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.quality p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.quality-badges {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 3rem;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f5ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta h2 {
    color: #05223A;
    position: relative;
    z-index: 1;
}

.contact-cta > .container > p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

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

.office {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.office:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.office-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.office h4 {
    color: #05223A;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.office p {
    color: #666;
    font-size: 0.95rem;
    margin: 0.8rem 0;
}

.office p strong {
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer p {
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.footer-links a {
    color: #2ECC71;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Page Header */
.page-header {
    background: #05223A;
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    margin-bottom: 3.5rem;
}

.content-section h3 {
    color: #05223A;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.content-section p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.98rem;
}

.content-section ul {
    list-style-position: inside;
    color: #555;
    margin: 1.5rem 0;
}

.content-section li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

/* Grid Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-visual {
        aspect-ratio: auto;
        min-height: 300px;
    }

    .hero-visual-icon {
        font-size: 2.5rem;
    }

    .hero-visual-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .quality-badges {
        gap: 1.5rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

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


/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: auto;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 0;
        margin-left: auto;
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fc;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-item a {
    color: #667eea;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #05223A;
}

.breadcrumb-item.active {
    color: #05223A;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #ccc;
}

/* Product Sidebar */
.product-sidebar {
    background: #f8f9fc;
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.product-sidebar h3 {
    font-size: 1.2rem;
    color: #05223A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-sidebar ul {
    list-style: none;
}

.product-sidebar li {
    margin-bottom: 0.8rem;
}

.product-sidebar a {
    color: #666;
    font-weight: 500;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.product-sidebar a:hover,
.product-sidebar a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

/* Product Layout */
.product-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Full Width CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #05223A 0%, #0A3D62 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* Enhanced Link Styling */
.link {
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.95;
    margin-top: auto;
    font-size: 0.95rem;
}

.link:hover {
    opacity: 1;
    gap: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99;
    border: none;
    font-size: 0.95rem;
    display: none;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.45);
}

.sticky-cta.active {
    display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Responsive Product Grid */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}
