/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* ========== HOME — HERO ========== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 110, 232, 0.3), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.2), transparent 50%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, #93c5fd, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number::after { content: '+'; color: #93c5fd; }
.stat-number.no-plus::after, .presence-number.no-plus::after { content: ''; }

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(59, 110, 232, 0.4), transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-globe i {
    width: 200px;
    height: 200px;
    color: rgba(255,255,255,0.9);
    stroke-width: 0.8;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    animation: float 4s ease-in-out infinite;
}

.hero-card i { width: 24px; height: 24px; color: #93c5fd; }
.hero-card-1 { top: 30px; right: 0; animation-delay: 0s; }
.hero-card-2 { top: 50%; left: -20px; animation-delay: 1.5s; }
.hero-card-3 { bottom: 60px; right: 40px; animation-delay: 3s; }

/* ========== ABOUT SECTION (Home) ========== */
.about-home { background: var(--bg-light); }

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

.about-visual { 
    position: relative; 
    padding: 0 50px;
}

.about-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a8a 50%, #1e4fd6 100%);
    overflow: visible;
    box-shadow: var(--shadow-lg);
}

.about-image > * { position: relative; }

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.4), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.2), transparent 50%);
    pointer-events: none;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background-image: 
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.about-image-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-inner i {
    width: 180px;
    height: 180px;
    color: rgba(255,255,255,0.25);
    stroke-width: 0.8;
}

.about-logo-image {
    max-width: 90%;
    max-height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
}

.badge-1 { top: 24px; right: -10px; }
.badge-2 { bottom: 24px; left: -10px; animation-delay: 2s; }

.floating-badge i { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.floating-badge strong { display: block; color: var(--navy); font-size: 13px; line-height: 1.2; }
.floating-badge span { font-size: 11px; color: var(--text-muted); line-height: 1.2; }

.about-content .section-title,
.about-content .section-text { text-align: left; }

.about-content .section-text { margin-bottom: 16px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.about-feature i { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

/* ========== PRODUCT CATEGORIES ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.product-card:hover::before { transform: scaleX(1); }

.product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--sky), var(--bg-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

.product-icon i { width: 32px; height: 32px; }

.product-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.product-card-meta {
    display: inline-block;
    padding: 4px 10px;
    background: var(--sky);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 12px;
}

.product-link {
    color: var(--blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.product-link i { width: 16px; height: 16px; transition: var(--transition); }
.product-link:hover i { transform: translate(2px, -2px); }

/* ========== WHY US ========== */
.why-us { background: linear-gradient(180deg, var(--white), var(--bg-light)); }

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

.feature-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.feature-icon i { width: 26px; height: 26px; }

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ========== PRESENCE / STATS ========== */
.presence {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--blue));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.presence::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

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

.presence-stat {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.presence-stat:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }

.presence-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.presence-number::after { content: '+'; color: #93c5fd; }

.presence-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-light); }

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

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* ========== ABOUT PAGE ========== */
.about-content-page {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.founder-section {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius-lg);
    padding: 60px;
    color: var(--white);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 40px;
    font-size: 300px;
    font-family: var(--font-display);
    color: rgba(255,255,255,0.08);
    line-height: 1;
}

.founder-section h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 24px;
}

.founder-quote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.founder-name { font-size: 16px; font-weight: 600; }
.founder-title { font-size: 14px; opacity: 0.8; }

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

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.value-icon i { width: 28px; height: 28px; }

.value-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p { color: var(--text-muted); line-height: 1.7; }

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.office-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.office-header {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    padding: 24px 28px;
}

.office-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.office-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.office-body { padding: 28px; }

.office-body p {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.office-body i {
    width: 18px;
    height: 18px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.office-body a {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.office-body a i { color: var(--blue); margin-top: 0; }

/* ========== PRODUCTS PAGE ========== */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.products-sidebar {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.products-sidebar h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.category-list { list-style: none; }

.category-list li { margin-bottom: 6px; }

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    color: var(--text);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.category-list a:hover, .category-list a.active {
    background: var(--white);
    color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.category-list a span {
    background: var(--sky);
    color: var(--blue);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.category-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.category-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.category-header-icon i { width: 24px; height: 24px; }

.category-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--navy);
    font-weight: 700;
}

.subcategory-section { margin-bottom: 36px; }

.subcategory-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid var(--blue);
}

.product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.product-item h4 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
}

.contact-form-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-card h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-form-card .form-subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label .required { color: #ef4444; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(30, 79, 214, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.checkbox-grid label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 500 !important;
    font-size: 14px !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    color: var(--text) !important;
}

.checkbox-grid input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
    cursor: pointer;
}

.info-card {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i { width: 20px; height: 20px; }

.info-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.info-item p, .info-item a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}
.info-item a:hover { color: var(--white); }

.form-success {
    background: #10b981;
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-top: 20px;
    display: none;
    font-weight: 500;
}

.form-success.show { display: block; }

/* ========== WHY US PAGE ========== */
.why-us-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.why-card-icon i { width: 32px; height: 32px; }

.why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p { color: var(--text-muted); line-height: 1.7; }

/* ========== GLOBAL PRESENCE PAGE ========== */
.world-map-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1f44 50%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.world-map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(147, 197, 253, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 197, 253, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

/* New World Map Styles */
.world-map-container {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.6), rgba(30, 79, 214, 0.15));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(96, 165, 250, 0.25);
    position: relative;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3), 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.world-map-svg {
    width: 100%;
    height: auto;
    max-height: 580px;
    display: block;
}

.map-marker text {
    font-family: var(--font-body);
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hq-marker text {
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.map-marker circle {
    transition: all 0.3s;
    cursor: pointer;
}

.map-marker:hover circle:last-child {
    r: 8;
    fill: #93c5fd;
}

.hq-marker:hover circle:last-child {
    r: 10;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #60a5fa;
    border: 2px solid white;
    flex-shrink: 0;
}

.legend-dot.hq {
    background: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
    width: 16px;
    height: 16px;
}

/* New Professional Country Cards with Real Flags */
.countries-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.country-card-pro {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.country-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.country-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.country-card-pro:hover::before {
    transform: scaleX(1);
}

.country-card-pro.hq {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    border: none;
}

.country-card-pro.hq h4 { color: var(--white); }
.country-card-pro.hq p { color: rgba(255,255,255,0.85); }

.country-flag-img {
    width: 80px;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 16px;
}

.country-card-pro h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 700;
}

.country-card-pro p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.country-badge {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1.5px;
}

/* Export Range Cards */
.export-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.export-range-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.export-range-card.full-width {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    border: none;
}

.export-range-card.full-width h3 { color: var(--white); }
.export-range-card.full-width p { color: rgba(255,255,255,0.9); }
.export-range-card.full-width .export-num { color: rgba(255,255,255,0.3); }

.export-range-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.export-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition);
}

.export-range-card:hover .export-num {
    color: var(--blue);
}

.export-range-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.export-range-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* Keep old countries-grid for backward compat */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.country-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.country-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.country-flag {
    font-size: 40px;
    margin-bottom: 12px;
}

.country-card h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.country-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.export-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.process-step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-blue);
}

.process-step h4 {
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 4px;
}

.process-arrow {
    color: var(--blue);
    display: flex;
    align-items: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-visual { height: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .presence-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .why-us-page-grid { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .products-sidebar { position: static; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 0 80px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .stat-number { font-size: 32px; }
    .products-grid, .features-grid { grid-template-columns: 1fr; }
    .presence-grid { grid-template-columns: 1fr 1fr; }
    .presence-number { font-size: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
    .product-items { grid-template-columns: 1fr; }
    .founder-section { padding: 40px 24px; }
    .founder-quote { font-size: 18px; }
    .contact-form-card, .info-card { padding: 28px 20px; }
    .floating-badge.badge-1 { right: 10px; }
    .floating-badge.badge-2 { left: 10px; }
}
