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

/* Official Partners Banner */
.official-partners-banner {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
}

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

.partner-logo img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.3) opacity(0.8);
    transition: all 0.3s ease;
}

/* Special styling for logos with small text to make them more readable */
.partner-logo img[alt="Gov.ro"] {
    max-height: 80px;
    max-width: 230px;
    filter: grayscale(0.1) opacity(0.95) contrast(1.6) brightness(1.4);
}

.partner-logo img[alt="EU Funds"],
.partner-logo img[alt="Fonduri UE"] {
    max-height: 75px;
    max-width: 220px;
    filter: grayscale(0.2) opacity(0.9) contrast(1.4) brightness(1.3);
}

.partner-logo img[alt="Europa.eu"] {
    max-height: 70px;
    max-width: 210px;
    filter: grayscale(0.2) opacity(0.9) contrast(1.3) brightness(1.2);
}

.partner-logo:hover img[alt="Gov.ro"] {
    filter: grayscale(0) opacity(1) contrast(1.8) brightness(1.5);
}

.partner-logo:hover img[alt="EU Funds"],
.partner-logo:hover img[alt="Fonduri UE"] {
    filter: grayscale(0) opacity(1) contrast(1.6) brightness(1.4);
}

.partner-logo:hover img[alt="Europa.eu"] {
    filter: grayscale(0) opacity(1) contrast(1.5) brightness(1.3);
}

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
}

/* Official Partners Responsive */
@media (max-width: 768px) {
    .official-partners-banner {
        padding: 10px 0;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo {
        padding: 6px;
    }
    
    .partner-logo img {
        max-height: 35px;
        max-width: 100px;
    }
    
    .partner-logo img[alt="Gov.ro"] {
        max-height: 68px;
        max-width: 190px;
    }
    
    .partner-logo img[alt="EU Funds"],
    .partner-logo img[alt="Fonduri UE"] {
        max-height: 63px;
        max-width: 180px;
    }
    
    .partner-logo img[alt="Europa.eu"] {
        max-height: 58px;
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    .official-partners-banner {
        padding: 8px 0;
    }
    
    .partners-logos {
        gap: 12px;
    }
    
    .partner-logo {
        padding: 4px;
    }
    
    .partner-logo img {
        max-height: 30px;
        max-width: 80px;
    }
    
    .partner-logo img[alt="Gov.ro"] {
        max-height: 55px;
        max-width: 155px;
    }
    
    .partner-logo img[alt="EU Funds"],
    .partner-logo img[alt="Fonduri UE"] {
        max-height: 50px;
        max-width: 145px;
    }
    
    .partner-logo img[alt="Europa.eu"] {
        max-height: 47px;
        max-width: 135px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 800;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive pentru Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Advanced Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: #ffffff;
    padding: 25px 0;
    border-top: 3px solid #dc2626;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.cookie-consent-icon {
    font-size: 24px;
    color: #dc2626;
    min-width: 24px;
}

.cookie-consent-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.cookie-consent-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.cookie-consent-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.cookie-consent-text strong {
    color: #ffffff;
    font-weight: 600;
}

.cookie-consent-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 140px;
    justify-content: center;
    font-family: inherit;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: #94a3b8;
    border: 2px solid #475569;
}

.cookie-btn-decline:hover {
    background: #475569;
    color: #ffffff;
    border-color: #64748b;
}

.cookie-btn-settings {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #64748b;
}

.cookie-btn-settings:hover {
    background: #64748b;
    color: #ffffff;
    border-color: #94a3b8;
}

.cookie-settings-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.cookie-settings-link:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    color: #ffffff;
    border: 2px solid #dc2626;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #475569;
}

.cookie-settings-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-close-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-close-btn:hover {
    color: #ffffff;
    background: #475569;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-category-description {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #475569;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: #dc2626;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background: #64748b;
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #475569;
}

/* Responsive pentru Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 0;
    }
    
    .cookie-consent-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-consent-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cookie-settings-content {
        padding: 20px;
        margin: 10px;
    }
    
    .cookie-settings-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-consent-title {
        font-size: 18px;
    }
    
    .cookie-consent-text {
        font-size: 14px;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .cookie-settings-content {
        padding: 15px;
    }
    
    .cookie-category {
        padding: 15px;
    }
}

/* Cookie Settings Icon (Persistent) */
.cookie-settings-icon {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    z-index: 900;
    opacity: 0.8;
}

.cookie-settings-icon:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px) scale(1.05);
    opacity: 1;
}

.cookie-settings-icon:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive pentru Cookie Settings Icon */
@media (max-width: 768px) {
    .cookie-settings-icon {
        bottom: 80px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cookie-settings-icon {
        bottom: 70px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc3c7;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-link {
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c62828;
    text-decoration: none;
}

.contact-item i {
    color: #c62828;
    font-size: 0.85rem;
    width: 14px;
    text-align: center;
}

.language-switch {
    margin-left: auto;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #bdc3c7;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.lang-link:hover {
    color: #ffffff;
    border-color: #c62828;
    background: rgba(198, 40, 40, 0.1);
    text-decoration: none;
}

.lang-link i {
    font-size: 0.8rem;
}

/* ===== MENIU COMPLET NOU - CREAT DE LA ZERO ===== */

/* Main Navigation */
.main-navigation {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 700;
    transition: all 0.3s ease;
}

.main-navigation.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo - Forțează pe o singură linie */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap; /* Forțează pe o linie */
    flex-shrink: 0; /* Nu se micșorează */
}

.nav-logo:hover {
    color: #c62828;
    text-decoration: none;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Menu Principal */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #c62828;
    text-decoration: none;
}

.nav-link.active {
    color: #c62828;
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 750;
    padding: 10px 0;
    list-style: none;
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    color: #c62828;
    background: #f8f9fa;
    text-decoration: none;
}

/* Steaguri în dropdown - Aliniază perfect */
.dropdown-link i {
    margin-right: 10px;
    width: 20px;
    font-size: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Săgeată dropdown */
.nav-link.has-dropdown::after {
    content: '▼';
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #c62828;
    background: rgba(198, 40, 40, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-link {
        padding: 20px 12px;
        font-size: 14px;
    }
}

/* Tablet mic */
@media (max-width: 900px) {
    .nav-logo {
        font-size: 16px;
        gap: 8px;
    }
    
    .nav-logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-link {
        padding: 20px 10px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f2f6;
    }
    
    .nav-link {
        padding: 18px 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .nav-item.dropdown-open .nav-dropdown {
        max-height: 400px;
        padding: 10px 0;
    }
    
    .dropdown-link {
        padding: 15px 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-link:hover {
        background: #ffffff;
    }
    
    .nav-item.dropdown-open .nav-link.has-dropdown::after {
        transform: rotate(180deg);
    }
}

/* Mobile mic */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 60px;
    }
    
    .nav-logo {
        font-size: 14px;
        gap: 6px;
    }
    
    .nav-logo-icon {
        width: 20px;
        height: 20px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* Contact Banner Responsive */
@media (max-width: 768px) {
    .contact-banner {
        padding: 10px 0;
    }
    
    .contact-banner .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        gap: 20px;
        justify-content: center;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .language-switch {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Contact Banner Styles */
.contact-banner {
    background: #2c3e50;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-link {
    text-decoration: none;
    cursor: pointer;
}

.contact-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-link:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 12px;
    width: 14px;
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item span {
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Language Switch */
.language-switch {
    display: flex;
    align-items: center;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 12px;
}

.lang-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lang-link i {
    font-size: 12px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-banner .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 13px;
    }
    
    .contact-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        padding: 8px 0;
    }
    
    .contact-item {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .contact-item span {
        font-size: 11px;
    }
    
    .contact-item i {
        font-size: 11px;
    }
}

/* Modern glassmorphism effects */
@supports (backdrop-filter: blur(10px)) {
    .contact-item,
    .lang-link {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Animation for contact items */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: slideInFromTop 0.6s ease-out;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.lang-link {
    animation: slideInFromTop 0.6s ease-out 0.4s both;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.slide-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease-out 0.3s;
}

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

.slide-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
}

.slide-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-text strong {
    color: #ffffff;
    font-weight: 600;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #2c3e50;
    color: #ffffff;
    border: 2px solid #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #34495e;
    border-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 30;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-dot:hover::before,
.nav-dot.active::before {
    width: 30px;
    height: 30px;
}

.nav-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 30;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Responsive Design for Slider - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .slider-nav {
        bottom: 60px;
        gap: 14px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 520px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-text {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .slide-content {
        padding-bottom: 70px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        bottom: 50px;
        gap: 12px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 75vh;
        min-height: 550px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .slide-content {
        padding: 0 15px;
        padding-bottom: 80px;
    }
    
    .slider-nav {
        bottom: 60px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .nav-dot::before {
        width: 16px;
        height: 16px;
    }
}

/* Main Content Section */
.main-content {
    padding: 120px 0 80px 0;
    background: #ffffff;
    position: relative;
    margin-top: 0;
}

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

.main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-proposition {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 1.3rem;
    color: #34495e;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 62, 80, 0.05), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #2c3e50;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: #34495e;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    border-radius: 15px;
    padding: 50px 40px;
    margin: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

.urgency-content {
    position: relative;
    z-index: 2;
}

.urgency-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: #ffffff;
    color: #c62828;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #c62828;
    transform: translateY(-3px);
}

/* Main Content Stats Section */
.main-content .stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.main-content .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="mainStats" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%232c3e50" opacity="0.05"/></pattern></defs><rect width="60" height="60" fill="url(%23mainStats)"/></svg>');
    pointer-events: none;
    z-index: 5;
}

.main-content .stat-item {
    text-align: center;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 15;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
    pointer-events: auto;
}

.main-content .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: none;
    pointer-events: none;
}

.main-content .stat-item:hover::before {
    left: -100%;
}

.main-content .stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    border-color: rgba(44, 62, 80, 0.2);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.12);
}

.main-content .stat-item:hover .stat-number {
    transform: scale(1.05);
}

.main-content .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
}

.main-content .stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    pointer-events: none;
}

/* Responsive Design for Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-content .stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 80px 0 60px 0;
        margin-top: 0;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .urgency-section {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .urgency-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .main-content .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 50px 25px;
        margin-top: 60px;
    }
    
    .main-content .stat-item {
        padding: 30px 20px;
    }
    
    .main-content .stat-number {
        font-size: 3rem;
    }
    
    .main-content .stat-label {
        font-size: 1rem;
    }
}

/* Premium Section Dividers - Enterprise Level */
.hero-slider {
    position: relative;
    margin-bottom: 0;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
    pointer-events: none;
}

/* Main Content with Premium Elevation */
.main-content {
    position: relative;
    margin: 0;
    box-shadow: none;
    z-index: 2;
}

.main-content::before {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 25;
    border: 4px solid white;
}

.main-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(248, 249, 250, 0.3) 50%, rgba(233, 236, 239, 0.5) 100%);
    pointer-events: none;
}

/* Countries Section with Floating Effect */
.countries-section {
    position: relative;
    margin: 0;
    background: #ffffff;
    box-shadow: none;
    z-index: 3;
}

.countries-section::before {
    content: '\f57d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 35;
    border: 4px solid white;
}

.countries-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.04) 100%);
    pointer-events: none;
}

/* Industries Section with Modern Layering */
.industries-section {
    position: relative;
    margin: 0;
    transform: translateZ(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.industries-section::before {
    content: '\f013';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 45;
    border: 4px solid white;
}

.industries-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.02) 30%, rgba(26, 26, 26, 0.05) 70%, rgba(26, 26, 26, 0.08) 100%);
    pointer-events: none;
}

/* CTA Dual Section with Luxury Glow */
.cta-dual-section {
    position: relative;
    margin: 0;
    box-shadow: none;
    z-index: 4;
}

.cta-dual-section::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 55;
    border: 4px solid white;
}



/* Enterprise Level Depth Layering */
.hero-slider {
    z-index: 10;
}

.main-content {
    z-index: 20;
    transform: translateY(0);
}

.countries-section {
    z-index: 30;
    transform: translateY(0);
}

.industries-section {
    z-index: 40;
    transform: translateY(0);
}

.cta-dual-section {
    z-index: 50;
    transform: translateY(0);
}

/* Section Headers Enhancement */
.countries-title, .industries-title {
    position: relative;
    padding-bottom: 20px;
}

.countries-title::after, .industries-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    border-radius: 1px;
}

/* Breathing Space Between Sections */
section + section {
    margin-top: 0;
}

/* Section Background Alternation */
.main-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 0;
    padding: 80px 0;
    margin: 0;
}

.countries-section {
    background: #ffffff;
    padding: 80px 0;
    margin: 0;
}

.industries-section {
    padding: 100px 0;
    margin: 0;
}

.cta-dual-section {
    padding: 100px 0;
    margin: 0;
}

/* Premium Responsive Design */
@media (max-width: 768px) {
    .main-content::before {
        width: 50px;
        height: 50px;
        top: -25px;
        font-size: 20px;
        border: 2px solid white;
    }
    
    .countries-section::before {
        width: 50px;
        height: 50px;
        top: -25px;
        font-size: 20px;
        border: 2px solid white;
    }
    
    .industries-section::before {
        width: 50px;
        height: 50px;
        top: -25px;
        font-size: 20px;
        border: 2px solid white;
    }
    
    .cta-dual-section::before {
        width: 50px;
        height: 50px;
        top: -25px;
        font-size: 20px;
        border: 2px solid white;
    }
    
    .hero-slider::after,
    .main-content::after,
    .countries-section::after,
    .industries-section::after {
        height: 60px;
    }
    
    .main-content {
        transform: translateY(0);
    }
    
    .countries-section {
        transform: translateY(0);
    }
    
    .industries-section {
        transform: translateY(0);
    }
    
    .main-content {
        padding: 90px 0 60px 0;
        margin-top: 0;
    }
    
    .countries-section {
        padding: 60px 0;
    }
    
    .industries-section,
    .cta-dual-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .main-content::before {
        width: 45px;
        height: 45px;
        top: -22px;
        font-size: 18px;
        border: 2px solid white;
    }
    
    .countries-section::before {
        width: 45px;
        height: 45px;
        top: -22px;
        font-size: 18px;
        border: 2px solid white;
    }
    
    .industries-section::before {
        width: 45px;
        height: 45px;
        top: -22px;
        font-size: 18px;
        border: 2px solid white;
    }
    
    .cta-dual-section::before {
        width: 45px;
        height: 45px;
        top: -22px;
        font-size: 18px;
        border: 2px solid white;
    }
    
    .hero-slider::after,
    .main-content::after,
    .countries-section::after,
    .industries-section::after {
        height: 40px;
    }
    
    .main-content {
        transform: translateY(0);
    }
    
    .countries-section {
        transform: translateY(0);
    }
    
    .industries-section {
        transform: translateY(0);
    }
    
    .main-content,
    .countries-section,
    .industries-section,
    .cta-dual-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .urgency-section {
        padding: 30px 15px;
    }
    
    .main-content .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
        margin-top: 50px;
    }
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.countries-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.countries-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.countries-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.country-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 62, 80, 0.05), transparent);
    transition: left 0.6s ease;
}

.country-card:hover::before {
    left: 100%;
}

.country-card:hover {
    transform: translateY(-5px);
    border-color: #2c3e50;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}

.country-flag {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
    transition: all 0.3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.1) rotate(5deg);
}

.country-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.country-card:hover h3 {
    color: #c62828;
}

.country-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.country-stats {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}

.country-stats span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.countries-cta {
    background: #2c3e50;
    padding: 40px 30px;
    border-radius: 15px;
    color: #ffffff;
    margin-top: 40px;
}

.countries-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.countries-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.countries-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c62828;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countries-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
}

/* Responsive Countries Section */
@media (max-width: 768px) {
    .countries-section {
        padding: 60px 0;
    }
    
    .countries-title {
        font-size: 2rem;
    }
    
    .countries-subtitle {
        font-size: 1.1rem;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .country-card {
        padding: 25px 20px;
    }
    
    .country-flag {
        font-size: 3rem;
    }
    
    .countries-cta {
        padding: 30px 20px;
    }
    
    .countries-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countries-title {
        font-size: 1.8rem;
    }
    
    .country-flag {
        font-size: 2.5rem;
    }
    
    .countries-cta h3 {
        font-size: 1.3rem;
    }
    
    .countries-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Country Pages Styles */
.country-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.country-flag-large {
    font-size: 6rem;
    margin-bottom: 30px;
    display: block;
    line-height: 1;
    animation: flagFloat 3s ease-in-out infinite;
}

@keyframes flagFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.hero-stats .stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffeb3b;
    margin-bottom: 5px;
}

.hero-stats .stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Country About Section */
.country-about {
    padding: 80px 0;
    background: #ffffff;
}

.country-about h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefit-item {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #2c3e50;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
}

.benefit-item .benefit-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: #c62828;
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Country Services Section */
.country-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.country-services h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #2c3e50;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffeb3b;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Country CTA Section */
.country-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    color: #ffffff;
    text-align: center;
}

.country-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.country-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.back-to-countries {
    margin-top: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

/* Responsive Country Pages */
@media (max-width: 768px) {
    .country-hero {
        padding: 80px 0 60px;
    }
    
    .country-flag-large {
        font-size: 4.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat {
        padding: 15px;
        min-width: 100px;
    }
    
    .hero-stats .stat strong {
        font-size: 2rem;
    }
    
    .country-about, .country-services, .country-cta {
        padding: 60px 0;
    }
    
    .country-about h2, .country-services h2, .country-cta h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .country-flag-large {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats .stat {
        width: 100%;
        max-width: 200px;
    }
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: visible;
}



.industries-wrapper {
    position: relative;
    z-index: 2;
}

.industries-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.industry-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}



.industry-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.12);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 20px;
}

.industry-card:hover .industry-icon {
    transform: scale(1.05);
}

.industry-icon i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}



.industry-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.industry-features span {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-features span {
    transform: translateY(-1px);
}

.industry-stats {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c62828;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(198, 40, 40, 0.2);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-stats {
    transform: scale(1.02);
}

.industries-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.industries-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,2 52,17 52,43 30,58 8,43 8,17" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagons)"/></svg>');
    animation: float 20s linear infinite;
}

.industries-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.industries-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.industries-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.industries-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.industries-btn:hover::before {
    left: 100%;
}

.industries-btn.primary {
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
    color: #ffffff;
    border: 2px solid #c62828;
}

.industries-btn.primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #c62828;
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

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

.industries-btn.secondary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.industries-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.industries-btn:hover i {
    transform: scale(1.2);
}

@keyframes float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

/* Industries Section Responsive */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .industry-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 80px 0;
    }
    
    .industries-title {
        font-size: 2.5rem;
    }
    
    .industries-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .industry-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
        border-radius: 15px;
    }
    
    .industry-icon i {
        font-size: 1.8rem;
    }
    
    .industry-card h3 {
        font-size: 1.3rem;
    }
    
    .industries-cta {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .industries-cta h3 {
        font-size: 1.8rem;
    }
    
    .industries-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .industries-btn {
        min-width: 250px;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .industries-title {
        font-size: 2rem;
    }
    
    .industry-card {
        padding: 25px 15px;
    }
    
    .industry-features {
        justify-content: center;
    }
    
    .industries-cta {
        padding: 40px 20px;
    }
    
    .industries-cta h3 {
        font-size: 1.5rem;
    }
    
    .industries-btn {
        min-width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* CTA Dual Banner Section */
.cta-dual-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: visible;
}



.dual-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.cta-banner {
    position: relative;
    min-height: 300px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-banner:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.left-banner {
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 80%, #f44336 100%);
}

.right-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 80%, #475a6b 100%);
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    animation: patternMove 30s linear infinite;
}

.left-banner .banner-pattern {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leftPattern" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,5 90,35 90,65 50,95 10,65 10,35" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23leftPattern)"/></svg>');
}

.right-banner .banner-pattern {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="rightPattern" width="80" height="80" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="60" height="60" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.08" rx="5"/></pattern></defs><rect width="80" height="80" fill="url(%23rightPattern)"/></svg>');
}

.banner-content {
    position: relative;
    z-index: 3;
    padding: 40px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    max-width: fit-content;
}

.banner-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.banner-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.banner-btn:hover i {
    transform: scale(1.2);
}

.banner-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-banner:hover .banner-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.15);
}

.banner-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

@keyframes patternMove {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

/* CTA Dual Banner Responsive */
@media (max-width: 1200px) {
    .dual-banners {
        gap: 25px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-content {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .cta-dual-section {
        padding: 80px 0;
    }
    
    .dual-banners {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .cta-banner {
        min-height: 280px;
    }
    
    .banner-title {
        font-size: 2.2rem;
        line-height: 1;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .banner-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .banner-icon {
        width: 70px;
        height: 70px;
        top: 25px;
        right: 25px;
    }
    
    .banner-icon i {
        font-size: 2rem;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-content {
        padding: 30px 25px;
    }
    
    .banner-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    .banner-icon {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
    }
    
    .banner-icon i {
        font-size: 1.8rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
     }
 }

/* Gallery Section */
.gallery-section {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: visible;
}

.gallery-section::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 65;
    border: 4px solid white;
}

.gallery-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 70;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    filter: brightness(1.1) contrast(1.1);
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0 0 0;
    }
    
    .gallery-section::before {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -25px;
    }
    
    .gallery-title {
        font-size: 2rem;
        margin: 0 0 40px 0;
        letter-spacing: 1px;
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0 0 0;
    }
    
    .gallery-section::before {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: -22px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin: 0 0 35px 0;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.testimonials-section::before {
    content: '\f4ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 75;
    border: 4px solid white;
}

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

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.reviewer-position {
    font-size: 14px;
    color: #5f6368;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 1px;
}

.review-date {
    font-size: 12px;
    color: #5f6368;
}

.testimonial-content {
    margin: 16px 0;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #3c4043;
    margin: 0;
}

.testimonial-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f1f3f4;
}

.verified {
    font-size: 12px;
    color: #1e8e3e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section::before {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -25px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .testimonial-content p {
        font-size: 13px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-section::before {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: -22px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
    
    .testimonial-card {
        padding: 18px;
    }
    
    .testimonial-header {
        gap: 10px;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .reviewer-position {
        font-size: 13px;
    }
    
    .testimonial-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .stars {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: visible;
}

.faq-section::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.3);
    z-index: 85;
    border: 4px solid white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 90;
}

/* Floating FAQ Icons - Pure CSS */
.faq-section .container::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 45px;
    color: rgba(198, 40, 40, 0.45);
    pointer-events: none;
    z-index: 95;
    animation: float1 15s ease-in-out infinite;
}

.faq-section .container::after {
    content: '\f4ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25%;
    right: 12%;
    font-size: 38px;
    color: rgba(198, 40, 40, 0.40);
    pointer-events: none;
    z-index: 1;
    animation: float2 18s ease-in-out infinite reverse;
}

.faq-container::before {
    content: '\f0eb';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 25%;
    left: 6%;
    font-size: 42px;
    color: rgba(198, 40, 40, 0.50);
    pointer-events: none;
    z-index: 95;
    animation: float3 20s ease-in-out infinite;
}

.faq-container::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 35%;
    right: 5%;
    font-size: 35px;
    color: rgba(198, 40, 40, 0.38);
    pointer-events: none;
    z-index: 95;
    animation: float4 16s ease-in-out infinite reverse;
}

.faq-section .section-title::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 45%;
    left: 88%;
    font-size: 32px;
    color: rgba(198, 40, 40, 0.35);
    pointer-events: none;
    z-index: 95;
    animation: float5 22s ease-in-out infinite;
}

.faq-section .section-subtitle::after {
    content: '\f128';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 65%;
    left: 15%;
    font-size: 40px;
    color: rgba(198, 40, 40, 0.42);
    pointer-events: none;
    z-index: 95;
    animation: float6 19s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.45;
    }
    25% {
        transform: translateX(20px) translateY(-15px) rotate(15deg);
        opacity: 0.70;
    }
    50% {
        transform: translateX(-10px) translateY(-25px) rotate(-10deg);
        opacity: 0.55;
    }
    75% {
        transform: translateX(15px) translateY(-10px) rotate(20deg);
        opacity: 0.60;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.40;
    }
    33% {
        transform: translateX(-25px) translateY(20px) rotate(-20deg);
        opacity: 0.65;
    }
    66% {
        transform: translateX(15px) translateY(-30px) rotate(25deg);
        opacity: 0.50;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.50;
    }
    40% {
        transform: translateX(30px) translateY(-20px) rotate(30deg);
        opacity: 0.75;
    }
    80% {
        transform: translateX(-20px) translateY(10px) rotate(-15deg);
        opacity: 0.60;
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.38;
    }
    50% {
        transform: translateX(-35px) translateY(-35px) rotate(-25deg);
        opacity: 0.65;
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.35;
    }
    30% {
        transform: translateX(-15px) translateY(25px) rotate(18deg);
        opacity: 0.60;
    }
    70% {
        transform: translateX(25px) translateY(-15px) rotate(-22deg);
        opacity: 0.50;
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.42;
    }
    60% {
        transform: translateX(20px) translateY(-40px) rotate(35deg);
        opacity: 0.70;
    }
}

/* Test Floating Icons - More Visible */
.faq-section::after {
    content: '\f4d3';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 55px;
    color: rgba(198, 40, 40, 0.6);
    pointer-events: none;
    z-index: 95;
    animation: float1 12s ease-in-out infinite;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #c62828;
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 14px;
    color: #c62828;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    border-top: 1px solid #e9ecef;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section::before {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -25px;
    }
    
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
        gap: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Floating icons responsive */
    .faq-section .container::before {
        font-size: 22px;
        left: 5%;
    }
    
    .faq-section .container::after {
        font-size: 18px;
        right: 8%;
    }
    
    .faq-container::before {
        font-size: 20px;
        left: 3%;
    }
    
    .faq-container::after {
        font-size: 16px;
        right: 3%;
    }
    
    .faq-section .section-title::before {
        font-size: 14px;
        left: 85%;
    }
    
    .faq-section .section-subtitle::after {
        font-size: 18px;
        left: 10%;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section::before {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: -22px;
    }
    
    .faq-container {
        margin-top: 35px;
    }
    
    .faq-question {
        padding: 18px;
        font-size: 14px;
        gap: 12px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 250px;
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .faq-icon {
        font-size: 12px;
    }
    
    /* Floating icons mobile responsive */
    .faq-section .container::before {
        font-size: 18px;
        left: 3%;
        top: 12%;
    }
    
    .faq-section .container::after {
        font-size: 15px;
        right: 5%;
        top: 20%;
    }
    
    .faq-container::before {
        font-size: 16px;
        left: 2%;
        bottom: 20%;
    }
    
    .faq-container::after {
        font-size: 14px;
        right: 2%;
        bottom: 30%;
    }
    
    .faq-section .section-title::before {
        font-size: 12px;
        left: 82%;
        top: 40%;
    }
    
    .faq-section .section-subtitle::after {
        font-size: 15px;
        left: 8%;
        top: 60%;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #c62828 0%, #e53935 50%, #d32f2f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="finalCTA" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23finalCTA)"/></svg>');
    animation: float 25s linear infinite;
    pointer-events: none;
}

.final-cta-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-section .cta-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.final-cta-section .cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    font-size: 24px;
    color: #ffd700;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid #ffd700;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cta-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: scale(1.2);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.cta-guarantee i {
    font-size: 20px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-guarantee span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 0;
    }
    
    .final-cta-section .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .final-cta-section .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .cta-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .benefit-item {
        padding: 15px 20px;
    }
    
    .benefit-item span {
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .cta-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
        min-width: 220px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .final-cta-section .cta-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .final-cta-section .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .benefit-item {
        padding: 12px 18px;
        gap: 12px;
    }
    
    .benefit-item i {
        font-size: 20px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .cta-btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-guarantee {
        padding: 12px 25px;
        gap: 10px;
    }
    
    .cta-guarantee span {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Main Footer */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,5 90,35 90,65 50,95 10,65 10,35" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    animation: float 30s linear infinite;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #c62828, #e53935);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #c62828;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover::before {
    color: #e53935;
    transform: translateY(-50%) scale(1.2);
}

.legal-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}



.legal-badge-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-badge-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.legal-badge {
    width: 160px;
    height: auto;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
    border-radius: 0;
    background: none;
    padding: 0;
    backdrop-filter: none;
    border: none;
    display: block;
}

.legal-badge-link:hover .legal-badge {
    filter: brightness(1.1) contrast(1.1);
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        font-size: 1.8rem;
        margin-bottom: 15px;
        gap: 12px;
    }
    
    .footer-logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    

    
    .legal-badges {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .legal-badge {
        width: 140px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .main-footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        grid-column: 1;
        margin-bottom: 15px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .footer-logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding-left: 18px;
    }
    
    .footer-links a::before {
        font-size: 0.7rem;
    }
    

    
    .legal-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .legal-badge {
        width: 130px;
    }
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 50px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c62828;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e53935, #c62828);
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.legal-section h3::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #c62828;
    font-size: 1rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    list-style: none;
}

.legal-section li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.legal-section a {
    color: #c62828;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: #e53935;
    text-decoration: underline;
}

.back-to-site {
    margin-top: 50px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

.btn-back:hover {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.4);
}

.btn-back i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-3px);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 80px 0 40px;
    }
    
    .legal-content {
        margin: 0 20px;
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .last-updated {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .legal-section {
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }
    
    .legal-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .legal-section li {
        font-size: 0.95rem;
        padding-left: 25px;
    }
    
    .back-to-site {
        margin-top: 40px;
        padding-top: 25px;
    }
    
    .btn-back {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 60px 0 30px;
    }
    
    .legal-content {
        margin: 0 15px;
        padding: 30px 25px;
        border-radius: 12px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
        margin: 18px 0 10px 0;
    }
    
    .legal-section p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .legal-section li {
        font-size: 0.9rem;
        padding-left: 22px;
    }
    
    .btn-back {
        padding: 10px 20px;
        font-size: 0.95rem;
        gap: 10px;
    }
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.contact-info-item {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #c62828;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c62828, #e53935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 20px;
    color: #ffffff;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(198, 40, 40, 0.3);
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.contact-details a {
    color: #c62828;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e53935;
    text-decoration: none;
}

.map-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    filter: saturate(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: saturate(1) contrast(1.2);
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        gap: 35px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .contact-info-item {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 35px;
    }
    
    .contact-info-item {
        padding: 18px 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .contact-details h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Country Pages Benefits - Dedicated Styles */
.country-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.country-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.country-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #c62828;
}

.country-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c62828, #e53935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.country-benefit-icon i {
    font-size: 28px;
    color: #ffffff;
}

.country-benefit-item:hover .country-benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
}

.country-benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.country-benefit-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Country Benefits */
@media (max-width: 768px) {
    .country-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 30px 0;
    }
    
    .country-benefit-item {
        padding: 25px 15px;
    }
    
    .country-benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .country-benefit-icon i {
        font-size: 24px;
    }
    
    .country-benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .country-benefit-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .country-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }
    
    .country-benefit-item {
        padding: 20px 15px;
    }
    
    .country-benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .country-benefit-icon i {
        font-size: 22px;
    }
    
    .country-benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .country-benefit-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Partners Section - Minimalist */
.partners-section {
    background: #2c3e50;
    padding: 40px 0;
    text-align: center;
}

.partners-title {
    color: #bdc3c7;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-link {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.partner-link i {
    font-size: 1rem;
    opacity: 0.7;
}

/* Copyright Section - Minimalist */
.copyright-section {
    background: #1a252f;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #95a5a6;
    font-size: 0.85rem;
    margin: 0;
}

.site-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #95a5a6;
    font-size: 0.85rem;
}

.site-credits .code-icon {
    color: #c62828;
    font-size: 0.9rem;
}

.qos-link {
    color: #c62828;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.qos-link:hover {
    color: #e53935;
    text-decoration: none;
}

/* Partners & Copyright Responsive */
@media (max-width: 1200px) {
    .partners-list {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-list {
        gap: 20px;
        justify-content: center;
    }
    
    .partner-link {
        font-size: 0.85rem;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .copyright-text,
    .site-credits {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 30px 0;
    }
    
    .partners-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .partner-link {
        font-size: 0.8rem;
        max-width: 200px;
        text-align: center;
    }
    
    .copyright-section {
        padding: 20px 0;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1003;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-chat-container {
    position: relative;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

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

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.chat-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ff3e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
    z-index: 12;
    border: 2px solid white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 62, 62, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0);
    }
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    max-height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
}

.whatsapp-chat-box.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 15px 20px;
    color: white;
    position: relative;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.agent-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.agent-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.close-chat {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.welcome-message {
    background: #f0f0f0;
    padding: 12px 15px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-question {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #e1bee7;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #333;
    line-height: 1.3;
}

.quick-question:hover {
    background: linear-gradient(135deg, #bbdefb 0%, #e1bee7 100%);
    border-color: #9c27b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.2);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.typing-indicator.active {
    opacity: 1;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-chat-box {
        width: 300px;
        bottom: 75px;
    }
    
    .chat-header {
        padding: 12px 15px;
    }
    
    .agent-avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .agent-info h4 {
        font-size: 15px;
    }
    
    .chat-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button svg {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-chat-box {
        width: 280px;
        bottom: 65px;
        right: -10px;
    }
    
    .quick-question {
        padding: 10px 12px;
        font-size: 12px;
    }
}
