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

:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --secondary: #1abc9c;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    width: 100%;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* ==================== HEADER ==================== */
/* =========================
   HEADER BASE
========================= */
#header-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
}

header,
.header {
    background: #f8f9fa; /* Off-white */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

/* Fixed header for pages with embedded header (not using #header-container) */
body > header,
body > .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

/* Remove padding if no header container (prevent double padding) */
body:has(#header-container:empty) {
    padding-top: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 150px;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   LOGO
========================= */
.logo {
    margin-left: -10px;
}

.logo img {
    height: 50px;
    filter: none; /* keep logo crisp */
}

/* =========================
   NAVIGATION
========================= */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

/* Nav Links */
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: #14532D; /* Deep green */
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #FFFFFF;
    color: #22C55E;
}

/* Nav Icons */
.nav-link svg {
    width: 16px;
    height: 16px;
    stroke: #14532D;
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.nav-link:hover svg,
.nav-link.active svg {
    stroke: #22C55E;
}

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

/* =========================
   DROPDOWN
========================= */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    padding: 8px;
}

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

.dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #000000;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: #FFFFFF;
    color: #22c55e;
}

/* =========================
   NESTED DROPDOWN
========================= */
.dropdown-item {
    position: relative;
}

.dropdown-item .dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nested-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 6px;
    min-width: 200px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: all 0.25s ease;
    padding: 8px;
    z-index: 1001;
}

.dropdown-item:hover > .nested-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-dropdown li a {
    display: block;
    padding: 10px 14px;
    color: #000000;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nested-dropdown li a:hover {
    background: #FFFFFF;
    color: #22c55e;
}

/* =========================
   HEADER CTA
========================= */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 10px 20px;
    color: #14532D;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: rgba(34, 197, 94, 0.15);
}

.header-cta .btn-contact {
    padding: 10px 24px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.header-cta .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

/* =========================
   MOBILE TOGGLE
========================= */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #14532D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO CONTACT SECTION ==================== */
.hero-contact {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    padding: 30px 0;
    overflow: hidden;
}

.hero-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Content */
.hero-left h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
}

.hero-left h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--dark);
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark);
}

.benefits-list li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-discount {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 25px;
}

/* Right Contact Form */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-right img,
.hero-image img {
    mix-blend-mode: multiply;
}

.contact-form-box {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.contact-form-box h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark);
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.phone-input .country-select {
    width: 120px;
    flex-shrink: 0;
    min-width: 0;
    padding: 12px 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input .country-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.phone-input .phone-number {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input .phone-number:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: var(--gradient);
    padding: 40px 0;
    text-align: center;
}

.promo-banner h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.promo-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* eKYC Notice Box */
.ekyc-notice-box {
    text-align: center;
    margin-top: 30px;
}

.ekyc-notice {
    color: #ff0000;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* ==================== WHATSAPP BANNER ==================== */
.wa-banner {
    padding: 0;
    background: var(--white);
    text-align: center;
}

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

.wa-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* ==================== OUR FEATURES ==================== */
.our-features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.feature-card-new {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.feature-img {
    margin-bottom: 20px;
}

.feature-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-card-new h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card-new p {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
    font-weight: 300;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
    padding: 60px 0;
    background: var(--light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.why-choose-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.why-choose-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.why-choose-content p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.why-choose-content p:last-child {
    margin-bottom: 0;
}

/* ==================== WHAT MAKES US DIFFERENT ==================== */
.what-makes-different {
    padding: 60px 0;
    background: var(--white);
}

.what-makes-different h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.what-makes-different p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.what-makes-different p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .what-makes-different {
        padding: 50px 0;
    }

    .what-makes-different h2 {
        font-size: 26px;
    }

    .what-makes-different p {
        font-size: 14px;
    }
}

/* ==================== PROXY MAP SECTION ==================== */
.proxy-map-section {
    padding: 60px 0;
    background: var(--light);
}

.map-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.map-explore-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.map-explore-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

#proxy-map {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
    max-width: 100%;
}

.leaflet-container {
    width: 100% !important;
    max-width: 100%;
}

/* Custom Marker Styles */
.custom-marker {
    position: relative;
}

.marker-pin {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.marker-pulse {
    width: 30px;
    height: 30px;
    background: rgba(46, 204, 113, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Map Popup Styles */
.map-popup h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.map-popup p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
}

.map-popup .popup-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.map-popup .popup-btn:hover {
    background: var(--primary-dark);
}

/* Location Stats */
.location-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-box {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.stat-box .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* Leaflet Popup Override */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 14px 16px;
}

@media (max-width: 1024px) {
    .location-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proxy-map-section {
        padding: 50px 0;
    }

    #proxy-map {
        height: 350px;
    }

    .map-explore-btn {
        padding: 12px 24px;
        font-size: 14px;
        bottom: 15px;
    }

    .location-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-box .stat-number {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    #proxy-map {
        height: 280px;
    }

    .map-explore-btn {
        padding: 10px 20px;
        font-size: 13px;
        bottom: 10px;
        white-space: nowrap;
    }

    .location-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 16px;
    }

    .stat-box .stat-number {
        font-size: 22px;
    }

    .stat-box .stat-label {
        font-size: 12px;
    }
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
    padding: 60px 0;
    background: var(--light);
}

.testimonial-title {
    font-family: 'Abril Fatface', serif;
    font-size: 35px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 16px;
}

.testimonial-subtitle {
    font-family: 'Abril Fatface', serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin: 0 0 50px 0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-image {
    display: flex;
    justify-content: center;
}

.testimonial-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slider-container {
    position: relative;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
}

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-image {
        display: block;
        text-align: center;
    }

    .testimonial-image img {
        max-width: 250px;
    }

    .testimonial-slider-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial-slider {
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .testimonial-slide {
        position: relative;
    }

    .testimonial-slide.active {
        position: relative;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 60px 0;
    background: var(--light);
}

.faq-title {
    font-size: 39px;
    font-weight: 650;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.faq-card h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303030;
    line-height: 30px;
    margin-bottom: 16px;
}

.faq-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-card p:last-child {
    margin-bottom: 0;
}

.faq-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 12px;
}

.faq-card ul li {
    font-size: 15px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 6px;
}

.faq-card strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 28px;
    }

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

    .faq-card {
        padding: 24px;
    }

    .faq-card h5 {
        font-size: 18px;
    }

    .faq-card p,
    .faq-card ul li {
        font-size: 14px;
    }
}

/* ==================== NEED HELP SECTION ==================== */
.need-help-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.need-help-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.need-help-section .container {
    position: relative;
    z-index: 1;
}

.need-help-title {
    font-family: 'Abril Fatface', serif;
    font-size: 35px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}

.need-help-subtitle {
    font-size: 16px;
    color: #000000;
    margin-bottom: 24px;
}

.need-help-btn {
    margin-top: 20px;
}

.btn-chat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-chat:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
}

.btn-chat svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .need-help-section {
        padding: 50px 0;
    }

    .need-help-title {
        font-size: 28px;
    }

    .need-help-subtitle {
        font-size: 14px;
    }

    .btn-chat {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==================== FAQ HEADING SECTION ==================== */
.faq-heading-section {
    padding: 60px 0 40px;
    background: var(--white);
}

.faq-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 39px;
    font-weight: 100;
    color: #000000;
    line-height: 30px;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-heading-section {
        padding: 50px 0 30px;
    }

    .faq-heading {
        font-size: 28px;
        line-height: 1.3;
    }
}

/* ==================== FAQ CARDS SECTION ==================== */
.faq-cards-section {
    padding: 0 0 60px;
    background: var(--white);
}

.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card-item {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.faq-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.faq-card-item h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303030;
    line-height: 30px;
    text-align: left;
    margin-bottom: 12px;
}

.faq-card-item p {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.faq-card-item p a {
    color: var(--primary);
    text-decoration: underline;
}

.faq-card-item p a:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .faq-cards-section {
        padding: 0 0 50px;
    }

    .faq-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-card-item {
        padding: 24px;
    }

    .faq-card-item h5 {
        font-size: 18px;
    }

    .faq-card-item p {
        font-size: 15px;
    }
}

/* ==================== BLOGS SECTION ==================== */
.blogs-section {
    padding: 40px 0;
    background: var(--light);
}

.blogs-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
}

.blogs-subtitle {
    font-size: 15px;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}

.blogs-slider-container {
    max-width: 600px;
    margin: 0 auto;
}

.blogs-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.blog-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.blog-slide.active {
    position: relative;
    opacity: 1;
}

.blog-image {
    display: block;
    width: 100%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-slide:hover .blog-image img {
    transform: scale(1.05);
}

.blog-caption {
    padding: 16px 20px;
}

.blog-caption h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-caption h2 a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.blog-caption h2 a:hover {
    color: var(--primary);
}

.blog-caption p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.blog-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 30px 0;
    }

    .blogs-title {
        font-size: 24px;
    }

    .blogs-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .blog-image img {
        width: 100%;
        height: auto;
    }

    .blog-caption {
        padding: 14px 16px;
    }

    .blog-caption h2 {
        font-size: 15px;
    }

    .blog-caption p {
        font-size: 12px;
    }
}

/* ==================== PRICING PLANS ==================== */
.pricing-plans {
    padding: 60px 0;
    background: var(--light);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 160, 49, 0.2);
}

.pricing-card.featured {
    border: 3px solid #49a031;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: #49a031;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: var(--white);
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.pricing-header {
    background: #49a031;
    padding: 15px 20px;
    margin-top: 15px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
}

.pricing-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    margin-top: 5px;
}

.price {
    background: #3d8a29;
    padding: 15px 20px;
    margin-bottom: 0;
}

.price .currency {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    vertical-align: top;
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.price .period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    padding: 20px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    color: #49a031;
    stroke: #49a031;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: #49a031;
    border-radius: 8px;
}

.pricing-card .btn:hover {
    background: #3d8a29;
}

/* ==================== FEATURES ==================== */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark);
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f0f4ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ==================== PROXY TYPES ==================== */
.proxy-types {
    padding: 100px 0;
    background: var(--light);
}

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

.proxy-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.proxy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.proxy-card.featured {
    border-color: var(--primary);
}

.proxy-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.proxy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.proxy-icon.private { background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%); }
.proxy-icon.residential { background: linear-gradient(135deg, #7209b7 0%, #f72585 100%); }
.proxy-icon.datacenter { background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%); }

.proxy-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.proxy-card > p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.proxy-features {
    text-align: left;
    margin-bottom: 30px;
}

.proxy-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray);
    border-bottom: 1px solid #eee;
}

.proxy-features li:last-child {
    border-bottom: none;
}

.proxy-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

/* ==================== STATS ==================== */
.stats {
    padding: 80px 0;
    background: var(--gradient);
}

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

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== CTA ==================== */
.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--light);
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* ==================== ANONYMOUS CTA SECTION ==================== */
.anonymous-cta-section {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%) !important;
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

.anonymous-cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.anonymous-cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.cta-buttons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-cta-white {
    background: #ffffff !important;
    color: #27ae60 !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    display: inline-block;
}

.btn-cta-white:hover {
    background: transparent !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .anonymous-cta-section h2 {
        font-size: 24px;
    }

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

    .btn-cta-white {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2ecc71;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.dmca-badge {
    margin-top: 20px;
}

.dmca-badge img {
    max-width: 100px;
}

/* Footer Contact */
.footer-contact .contact-details {
    margin-bottom: 20px;
}

.footer-contact .contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact .contact-details svg {
    flex-shrink: 0;
    margin-top: 2px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}

/* ==================== PAGE TEMPLATE ==================== */
.page-header {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .header-container {
        justify-content: space-between;
        padding: 0 15px;
        gap: 0;
    }

    .logo {
        flex: 1;
        margin-left: 0;
    }

    .logo img {
        height: 45px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    nav {
        position: static;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: #f8f9fa;
        padding: 24px;
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        justify-content: space-between;
        color: #000000;
        border-radius: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #ffffff;
        border-radius: 0;
    }

    .nav-link svg {
        stroke: #000000;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: transparent;
    }

    .dropdown-link {
        color: #000000;
    }

    .nav-item.open .dropdown {
        max-height: 1000px;
        padding: 8px 0 8px 16px;
    }

    .nested-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-left: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-submenu.open > .nested-dropdown {
        max-height: 500px;
        padding: 8px 0 8px 16px;
    }

    .has-submenu > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-submenu > a svg {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }

    .has-submenu.open > a svg {
        transform: rotate(-90deg);
    }

    .nested-dropdown li a {
        color: #000000;
    }

    .header-cta {
        display: none !important;
    }

    .header-cta.mobile {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 12px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-left h2 {
        font-size: 18px;
    }

    .benefits-list li {
        justify-content: center;
    }

    .hero-left .btn-discount {
        display: inline-block;
    }

    .contact-form-box {
        padding: 30px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-image {
        order: -1;
    }

    .why-choose-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .why-choose-content h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proxy-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-left h1 {
        font-size: 20px;
    }

    .hero-left h2 {
        font-size: 16px;
    }

    .promo-banner h2 {
        font-size: 22px;
    }

    .promo-banner p {
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .feature-card-new {
        padding: 24px 16px;
    }

    .price .amount {
        font-size: 36px;
    }

    .benefits-list li {
        font-size: 14px;
        text-align: left;
        justify-content: flex-start;
    }

    .contact-form-box {
        padding: 24px;
    }

    .contact-form-box h3 {
        font-size: 22px;
    }

    .phone-input {
        flex-direction: column;
    }

    .phone-input .country-select {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==================== QUESTIONS & ANSWERS SECTION ==================== */
.vc_row.vc_custom_1647950937522,
.vc_row.vc_custom_1598520503335 {
    position: relative !important;
    left: 0 !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

.vc_row.vc_custom_1647950937522 {
    padding: 50px 20px 30px;
    background: #fff;
}

.vc_row.vc_custom_1598520503335 {
    padding: 0 20px 60px;
    background: #f8f9fa;
}

.vc_row .wpb_wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.wpb_text_column .wpb_wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.vc_custom_1678960338169 .wpb_wrapper p {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
}

/* Q&A Cards Grid */
.vc_row-o-equal-height {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto 24px;
}

.vc_row-o-equal-height .vc_col-sm-6 {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
}

/* Q&A Card Styling */
.collum-shadow {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.collum-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #2ecc71;
}

.column-hoverv1 .vc_column-inner {
    padding: 30px;
}

.column-hoverv1 .vc_custom_heading {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #303030;
    line-height: 30px;
    text-align: left;
    margin-bottom: 15px;
}

.column-hoverv1 .wpb_text_column p {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
    color: #000;
    text-align: left;
    margin-bottom: 12px;
}

.column-hoverv1 .wpb_text_column p:last-child {
    margin-bottom: 0;
}

/* WhatsApp Banner Styles */
.vc_row.vc_custom_1647950925132 {
    position: relative !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    background: #fff;
    text-align: center;
}

.vc_row.vc_custom_1647950925132 .wpb_column,
.vc_row.vc_custom_1647950925132 .vc_column-inner,
.vc_row.vc_custom_1647950925132 .wpb_wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.wpb_single_image .vc_figure {
    display: block;
    width: 100%;
}

.wpb_single_image .vc_single_image-wrapper {
    display: block;
    width: 100%;
}

.wpb_single_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Mobile/Desktop visibility */
.mobilenone {
    display: block !important;
}

.desktopynone {
    display: none !important;
}

/* ==================== GLOBAL CARD BORDERS ==================== */
.role-grid > div,
.best-practices-grid > div,
.features-grid > div,
.proxy-card,
.contact-form-box,
.benefit-card,
.faq-item-card,
.benefits-grid > div,
.faq-row > div {
    border: 1px solid #e0e0e0 !important;
    transition: all 0.3s ease;
}

.role-grid > div:hover,
.best-practices-grid > div:hover,
.features-grid > div:hover,
.proxy-card:hover,
.contact-form-box:hover,
.benefit-card:hover,
.faq-item-card:hover,
.benefits-grid > div:hover,
.faq-row > div:hover {
    border-color: #2ecc71 !important;
}

@media (max-width: 768px) {
    .mobilenone {
        display: none !important;
    }

    .desktopynone {
        display: block !important;
    }

    .vc_row.vc_custom_1647950937522 {
        padding: 40px 15px 20px;
    }

    .vc_row.vc_custom_1598520503335 {
        padding: 0 15px 40px;
    }

    .wpb_text_column .wpb_wrapper h2 {
        font-size: 26px;
    }

    .vc_custom_1678960338169 .wpb_wrapper p {
        font-size: 16px;
    }

    .vc_row-o-equal-height {
        flex-direction: column;
        gap: 20px;
    }

    .vc_row-o-equal-height .vc_col-sm-6 {
        flex: 1 1 100%;
    }

    .column-hoverv1 .vc_column-inner {
        padding: 24px;
    }

    .column-hoverv1 .vc_custom_heading {
        font-size: 18px;
        line-height: 26px;
    }

    .column-hoverv1 .wpb_text_column p {
        font-size: 15px;
    }

    .vc_row.vc_custom_1647950925132 {
        padding: 30px 15px !important;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .features-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header-container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex !important;
    }

    /* Hero sections */
    .hero-contact-grid,
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .hero-left, .hero-right {
        text-align: center;
    }

    .hero-left h1 {
        font-size: 32px !important;
    }

    .hero-left h2 {
        font-size: 20px !important;
    }

    /* Pricing grids */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Feature grids */
    .features-grid-new,
    .features-grid,
    .why-choose-grid,
    .socks5-features-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* FAQ grids */
    .faq-grid,
    .faq-accordion-grid,
    .faq-cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* Location grids */
    .locations-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-bottom: 40px !important;
    }

    /* Map section */
    #proxy-map {
        height: 350px !important;
    }

    .location-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Two column layouts */
    .why-prefer-grid,
    .purchase-secure-content,
    .free-vs-paid-content,
    .why-useful-content {
        grid-template-columns: 1fr !important;
    }

    /* Section padding */
    section {
        padding: 40px 0 !important;
    }

    /* Headings */
    h1 {
        font-size: 32px !important;
    }

    h2, .section-title {
        font-size: 28px !important;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Hero sections */
    .hero-contact-grid,
    .hero-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-left, .hero-right {
        width: 100% !important;
    }

    .hero-right {
        display: block !important;
    }

    .contact-form-box {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-left h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .hero-left h2 {
        font-size: 18px !important;
    }

    .benefits-list li {
        font-size: 14px !important;
    }

    /* Pricing grids - single column on mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .pricing-card {
        padding: 25px 20px !important;
    }

    /* Feature grids */
    .features-grid-new,
    .features-grid,
    .why-choose-grid,
    .socks5-features-grid,
    .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
        margin-bottom: 60px !important;
    }

    .benefit-card {
        margin-top: 50px !important;
    }

    /* Location grids */
    .locations-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Map */
    #proxy-map {
        height: 300px !important;
    }

    .location-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .stat-box {
        padding: 15px !important;
    }

    /* CTA buttons */
    .cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .cta-buttons a,
    .cta-buttons button {
        width: 100% !important;
        text-align: center !important;
    }

    /* Section padding */
    section {
        padding: 30px 0 !important;
    }

    /* Headings */
    h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    h2, .section-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Paragraphs */
    p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Contact form */
    .contact-form-box,
    .contact-form-wrapper {
        padding: 20px !important;
    }

    /* WhatsApp banner */
    .wa-banner img {
        width: 100% !important;
    }

    /* Tables */
    table {
        display: block;
        overflow-x: auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Hero */
    .hero-left h1 {
        font-size: 22px !important;
    }

    .hero-left h2 {
        font-size: 16px !important;
    }

    /* Headings */
    h1 {
        font-size: 22px !important;
    }

    h2, .section-title {
        font-size: 20px !important;
    }

    /* Location grid - single column */
    .locations-row {
        grid-template-columns: 1fr !important;
    }

    /* Stats */
    .location-stats {
        grid-template-columns: 1fr !important;
    }

    /* Pricing card */
    .pricing-card {
        padding: 20px 15px !important;
    }

    .price .amount {
        font-size: 36px !important;
    }

    /* Buttons */
    .btn, button {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    /* FAQ cards */
    .faq-card,
    .faq-card-item {
        padding: 20px !important;
    }

    .faq-card h5,
    .faq-toggle-title h5 {
        font-size: 16px !important;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix overflow issues */
body {
    overflow-x: hidden;
}

.container {
    overflow: visible;
}

/* Responsive tables */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Responsive iframes/embeds */
iframe,
embed,
object,
video {
    max-width: 100%;
}

/* Fix grid gaps on mobile */
@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
    }

    [style*="gap: 30px"] {
        gap: 20px !important;
    }
}

/* ==================== CRITICAL MOBILE FIXES ==================== */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    *, *::before, *::after {
        max-width: 100%;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        overflow-x: hidden !important;
    }

    /* Header fixes */
    .header-container {
        padding: 0 15px !important;
    }

    /* Hero section */
    .hero-contact {
        padding: 20px 0 !important;
    }

    .hero-contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .hero-left {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-right {
        width: 100% !important;
        display: block !important;
    }

    .contact-form-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
    }

    /* Benefits list */
    .benefits-list {
        text-align: left !important;
        padding-left: 0 !important;
    }

    .benefits-list li {
        justify-content: flex-start !important;
    }

    /* Testimonial section */
    .testimonial-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .testimonial-image {
        display: block !important;
        text-align: center !important;
    }

    .testimonial-image img {
        max-width: 200px !important;
        margin: 0 auto !important;
    }

    .testimonial-slider {
        max-width: 100% !important;
        width: 100% !important;
    }

    .testimonial-slide img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Pricing cards */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Feature cards */
    .features-grid-new,
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .feature-card-new,
    .feature-card {
        width: 100% !important;
    }

    /* FAQ cards */
    .faq-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .faq-card {
        width: 100% !important;
    }

    /* Footer */
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .footer-links ul {
        text-align: center !important;
    }

    .footer-contact {
        text-align: center !important;
    }

    .contact-details p {
        justify-content: center !important;
    }

    .social-links {
        justify-content: center !important;
    }

    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Section padding */
    section {
        padding: 40px 0 !important;
    }

    /* Text sizes */
    h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Role/benefit grids */
    .role-grid,
    .benefits-grid,
    .best-practices-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Map section */
    .map-container {
        height: 300px !important;
    }

    #proxy-map {
        height: 250px !important;
    }
}

/* ==================== OVERRIDE INLINE STYLES ON MOBILE ==================== */
@media (max-width: 768px) {
    /* Override all inline grid styles */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .features-grid-new[style],
    .benefits-grid[style],
    .faq-row[style],
    .contact-grid[style],
    .role-grid[style],
    .best-practices-grid[style],
    div[style*="grid-template-columns: repeat(2"],
    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns: repeat(4"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Contact grid specific */
    .contact-grid[style] {
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-grid .contact-left,
    .contact-grid .contact-right {
        width: 100% !important;
        text-align: center !important;
    }

    .contact-grid img {
        max-width: 250px !important;
        margin: 0 auto !important;
    }

    /* Benefits grid cards */
    .benefit-card {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Feature cards with inline styles */
    .features-grid-new > div,
    .benefits-grid > div {
        width: 100% !important;
    }

    /* FAQ rows */
    .faq-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .faq-row .faq-card {
        width: 100% !important;
    }

    /* Phone input */
    .phone-input {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .phone-input .country-select {
        width: 100% !important;
    }

    /* Benefit icons */
    .benefit-icon {
        width: 60px !important;
        height: 60px !important;
    }

    /* Section titles */
    [style*="font-size: 39px"],
    [style*="font-size: 36px"],
    [style*="font-size: 32px"] {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .benefit-icon {
        width: 50px !important;
        height: 50px !important;
    }

    .benefit-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    h1, [style*="font-size: 39px"] {
        font-size: 20px !important;
    }

    h2 {
        font-size: 18px !important;
    }

    .pricing-card {
        padding: 20px 15px !important;
    }
}

/* ==================== FORM INPUT FIXES ==================== */
/* Prevent form inputs from overflowing */
input, select, textarea {
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    width: 100%;
    max-width: 100%;
}

.form-control {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .contact-form-box,
    .contact-form-wrapper,
    form {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .form-group {
        width: 100% !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .phone-input {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .phone-input .country-select {
        width: 100px !important;
        min-width: 100px !important;
        flex-shrink: 0 !important;
    }

    .phone-input .phone-number,
    .phone-input input[type="tel"] {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
    }

    /* Contact form in green section */
    .contact-section .contact-form-box,
    section[style*="background: linear-gradient"] .contact-form-box {
        padding: 20px !important;
    }
}

/* ==================== MOBILE CONTACT FORM FIXES ==================== */
@media (max-width: 768px) {
    /* Contact form box */
    .contact-form-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-form-box h3 {
        font-size: 22px !important;
        margin-bottom: 5px !important;
    }

    .contact-form-box p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    /* Form group */
    .form-group {
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .form-group label {
        font-size: 14px !important;
        margin-bottom: 5px !important;
        display: block !important;
    }

    /* Form controls */
    .form-control,
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 14px !important;
        font-size: 16px !important;
        border: 1px solid #ddd !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

    /* Phone input - keep side by side */
    .phone-input {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .phone-input .country-select {
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        flex-shrink: 0 !important;
        padding: 12px 8px !important;
        font-size: 14px !important;
    }

    .phone-input .phone-number,
    .phone-input input[type="tel"] {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
    }

    /* Submit button */
    .btn-block,
    .contact-form button[type="submit"],
    button[type="submit"] {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    /* Hero contact grid */
    .hero-contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .hero-left {
        text-align: center !important;
    }

    .hero-left h1 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .hero-left h2 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .benefits-list {
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 15px !important;
    }

    .benefits-list li {
        font-size: 14px !important;
        padding: 6px 0 !important;
        gap: 8px !important;
    }

    .benefits-list li svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }

    .btn-discount {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
    }

    /* Hero right - show form, hide images */
    .hero-right {
        display: block !important;
        width: 100% !important;
    }

    .hero-right > img {
        display: none !important;
    }

    /* Home page hero contact form */
    .hero-contact .hero-contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 !important;
    }

    .hero-contact .hero-left {
        width: 100% !important;
        text-align: center !important;
        order: 1 !important;
    }

    .hero-contact .hero-right {
        width: 100% !important;
        order: 2 !important;
    }

    .hero-contact .contact-form-box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    .hero-contact .contact-form-box h3 {
        font-size: 20px !important;
        text-align: center !important;
    }

    .hero-contact .contact-form-box .form-subtitle {
        font-size: 14px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .hero-contact .form-group {
        margin-bottom: 12px !important;
        text-align: left !important;
    }

    .hero-contact .form-group label {
        text-align: left !important;
        display: block !important;
        margin-bottom: 5px !important;
    }

    .hero-contact .form-control,
    .hero-contact input,
    .hero-contact select {
        width: 100% !important;
        padding: 12px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    .hero-contact .phone-input {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
    }

    .hero-contact .phone-input .country-select {
        width: 100px !important;
        min-width: 100px !important;
        flex-shrink: 0 !important;
        padding: 12px 6px !important;
        font-size: 13px !important;
    }

    .hero-contact .phone-input .phone-number {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .hero-contact .btn-block {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important;
    }

    /* Benefits list alignment */
    .hero-contact .benefits-list {
        text-align: left !important;
        display: inline-block !important;
        margin: 0 auto 15px auto !important;
    }

    .hero-contact .benefits-list li {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        font-size: 14px !important;
        padding: 5px 0 !important;
    }

    .hero-contact .benefits-list li img {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    /* Contact section forms */
    .contact-section .container,
    #callnowlink .container {
        padding: 0 15px !important;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .contact-left,
    .contact-right {
        width: 100% !important;
    }

    .contact-left img {
        max-width: 200px !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .contact-form-box {
        padding: 15px !important;
    }

    .contact-form-box h3 {
        font-size: 20px !important;
    }

    .form-control,
    .contact-form input,
    .contact-form select {
        padding: 10px 12px !important;
        font-size: 16px !important;
    }

    .phone-input .country-select {
        width: 95px !important;
        min-width: 95px !important;
        max-width: 95px !important;
        padding: 10px 6px !important;
        font-size: 13px !important;
    }

    .hero-left h1 {
        font-size: 20px !important;
    }

    .hero-left h2 {
        font-size: 14px !important;
    }

    .benefits-list li {
        font-size: 13px !important;
    }
}
