/*
Theme Name: RAMU QTH E-TECH PROCESS
Description: Professional and user-friendly theme for canvas painting and art export business
Version: 3.0
Author: RAMU QTH E-TECH PROCESS
*/

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.cta-button, .plan-button, .submit-button, .category-link, .subscribe-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before, .plan-button::before, .submit-button::before, .category-link::before, .subscribe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before, .plan-button:hover::before, .submit-button:hover::before, .category-link:hover::before, .subscribe-button:hover::before {
    left: 100%;
}

.cta-button:hover, .plan-button:hover, .submit-button:hover, .category-link:hover, .subscribe-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 25%, #ec4899 50%, #ef4444 75%, #3b82f6 100%);
    color: white;
    text-decoration: none;
}

/* ===== HEADER ===== */
.site-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

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

.site-branding .site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.company-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.employee-corner {
    margin-left: auto;
}

.employee-login-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.employee-login-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.employee-icon {
    margin-right: 8px;
}

/* ===== NAVIGATION ===== */
.main-navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: translateY(-2px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.site-logo {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tagline {
    color: #fff;
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Employee Corner Button */
.employee-corner {
    position: relative;
}

.employee-login-btn {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.employee-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
}

.employee-icon {
    font-size: 1.2rem;
}

/* ===== HERO SECTIONS ===== */
.hero-section, .pricing-hero, .about-hero, .contact-hero, .blog-hero, .page-hero {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 20%, #fde68a 40%, #fed7aa 60%, #fecaca 80%, #f3e8ff 100%);
    color: #1f2937;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before, .pricing-hero::before, .about-hero::before, .contact-hero::before, .blog-hero::before, .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(254, 202, 202, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(243, 232, 255, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #374151;
    font-weight: 500;
}

/* ===== STATS SECTION - ENHANCED ===== */
.stats-hero-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 20%, #81d4fa 40%, #4fc3f7 60%, #29b6f6 80%, #03a9f4 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stats-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(129, 212, 250, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.gokul-empire-slogan {
    color: #1e293b;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.gokul-empire-slogan h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #92400e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gokul-empire-slogan p {
    font-size: 1.2rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    color: #475569;
    font-weight: 500;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== SECTION STYLES ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRICING PAGE STYLES ===== */
.pricing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.pricing-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e5e7eb;
    height: fit-content;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.05);
    border: 2px solid #fbbf24;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.pricing-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-button.featured {
    background: white;
    color: #3b82f6;
}

.plan-button.featured:hover {
    background: #f8f9fa;
    color: #1d4ed8;
}

.custom-quote-section {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1px;
    background: #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
}

.table-header,
.table-row {
    display: contents;
}

.feature-col,
.plan-col,
.feature,
.plan-feature {
    background: white;
    padding: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.table-header .feature-col,
.table-header .plan-col {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-weight: 600;
}

.plan-col.featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-weight: 600;
}

/* ===== ABOUT PAGE STYLES ===== */
.company-story {
    padding: 80px 0;
    background: white;
}

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

.story-content h2 {
    color: #3b82f6;
    margin-bottom: 30px;
}

.story-image .image-placeholder {
    background: linear-gradient(135deg, #ddd6fe 0%, #c084fc 100%);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    color: #1f2937;
}

.story-image .image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #3b82f6;
}

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

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.global-presence-about {
    padding: 80px 0;
    background: white;
}

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

.presence-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.presence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.our-brands {
    padding: 80px 0;
    background: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.brand-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.about-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

/* ===== BLOG PAGE STYLES ===== */
.featured-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image .image-placeholder {
    background: linear-gradient(135deg, #ddd6fe 0%, #c084fc 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #1f2937;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-date {
    color: #3b82f6;
    font-weight: 600;
}

.post-category {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
}

.post-title a:hover {
    color: #3b82f6;
}

.post-excerpt {
    margin: 15px 0;
    line-height: 1.6;
    color: #666;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.blog-categories {
    padding: 80px 0;
    background: white;
}

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

.category-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
    background: white;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.recent-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-post .post-image {
    height: 150px;
}

.blog-post .post-content {
    padding: 25px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-number,
.page-next {
    padding: 10px 15px;
    background: white;
    color: #3b82f6;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.page-number:hover,
.page-next:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.page-number.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.page-dots {
    color: #3b82f6;
    font-weight: 600;
}

.blog-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

/* ===== HOME PAGE SPECIFIC STYLES ===== */
.global-presence {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f72d4 0%, #e2e8f0 100%);
}

/* Professional World Map Styles - Colorful & Clean Design */
.world-map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #53a6fa 0%, #3bf178 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.5);
}

.world-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.map-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af, #059669, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.map-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

.world-map {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
}

.world-svg-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #164e63 100%);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.1),
        0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.world-svg-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 13px;
    transition: transform 0.3s ease;
    filter: 
        drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1))
        contrast(1.05)
        saturate(1.1);
}

.world-svg-container:hover svg {
    transform: scale(1.01);
}

.map-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    font-size: 18px;
    background: linear-gradient(135deg, #22ce13 0%, #334155 100%);
    border-radius: 18px;
    font-weight: 500;
}

/* Professional Map Pin Styles */
.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
    0%, 100% { transform: translate(-50%, -100%) translateY(0px); }
    50% { transform: translate(-50%, -100%) translateY(-3px); }
}

.map-pin:hover {
    transform: translate(-50%, -100%) scale(1.2) translateY(-3px);
    z-index: 20;
    animation: none;
}

.pin-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #10b981, #059669);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 
        0 4px 15px rgba(16, 185, 129, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.pin-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.pin-dot.headquarters {
    background: linear-gradient(145deg, #f97316, #ea580c);
    box-shadow: 
        0 6px 20px rgba(249, 115, 22, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.2);
    width: 24px;
    height: 24px;
    border: 4px solid #ffffff;
    animation: headquartersPulse 2s ease-in-out infinite;
}

@keyframes headquartersPulse {
    0%, 100% { 
        box-shadow: 
            0 6px 20px rgba(249, 115, 22, 0.5),
            0 0 0 0 rgba(249, 115, 22, 0.7),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% { 
        box-shadow: 
            0 6px 20px rgba(249, 115, 22, 0.5),
            0 0 0 12px rgba(249, 115, 22, 0),
            0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

.pin-flag {
    font-size: 16px;
    margin-top: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.pin-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pin-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #374151;
}

.map-pin:hover .pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.pin-dot.office {
    background: linear-gradient(145deg, #10b981, #059669);
    box-shadow: 
        0 6px 20px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pin-dot.headquarters::after {
    content: '👑';
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    animation: crownFloat 2s ease-in-out infinite;
}

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

.pin-flag {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.pin-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 
        0 4px 15px rgba(247, 21, 21, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-pin:hover .pin-label {
    opacity: 3;
    transform: translateX(-50%) translateY(-5px);
}

.map-pin:hover .pin-flag {
    transform: translateX(-50%) scale(1.1);
}

@keyframes pinPulse {
    0%, 100% {
        transform: translate(-50%, -100%) scale(1);
    }
    50% {
        transform: translate(-50%, -100%) scale(1.1);
    }
}

/* Country Info Cards */
.country-info-cards {
    position: relative;
}

.country-info-card {
    display: none;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3b82f6;
    animation: slideIn 0.3s ease-out;
}

.country-info-card.active {
    display: block;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.country-flag-large {
    font-size: 2.5rem;
    margin-right: 15px;
}

.info-header h3 {
    flex-grow: 1;
    color: #1e293b;
    margin: 0;
    font-size: 1.5rem;
}

.close-info {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-info:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-section,
.contact-section {
    color: #475569;
    line-height: 1.6;
}

.contact-section {
    padding-left: 20px;
    border-left: 2px solid #cbd5e1;
}

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

/* Legacy country cards - keeping for backward compatibility */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.country-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #3b82f6;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 15px;
}

.country-name {
    color: #3b82f6;
    margin-bottom: 15px;
}

.country-details,
.contact-info {
    color: #555;
    line-height: 1.6;
}

.contact-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.art-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.artwork-preview {
    height: 200px;
    overflow: hidden;
}

.art-placeholder {
    background: linear-gradient(135deg, #ddd6fe 0%, #c084fc 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    text-align: center;
}

.art-placeholder span {
    font-size: 3rem;
    margin-bottom: 10px;
}

.artwork-info {
    padding: 25px;
}

.artwork-info h4 {
    color: #3b82f6;
    margin-bottom: 10px;
}

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

.achievements {
    padding: 80px 0;
    background: white;
}

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

.achievement-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #3b82f6;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    background: rgba(55, 65, 81, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(55, 65, 81, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #93c5fd;
}

.footer-bottom {
    border-top: 1px solid rgba(75, 85, 99, 0.5);
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
    background: rgba(31, 41, 55, 0.5);
    margin: 0 -20px -30px -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 0 15px 15px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced presence grid for better visual balance */
.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.presence-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(75, 85, 99, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.presence-item:hover {
    background: rgba(75, 85, 99, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.presence-item .flag {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.presence-info strong {
    color: #f9fafb;
    font-size: 14px;
    font-weight: 600;
}

.presence-info small {
    color: #9ca3af;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Section Dividers and Spacing */
.hero-section + .stats-hero-section {
    margin-top: -20px;
}

.stats-hero-section + .global-presence {
    margin-top: -20px;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Pulse Animation for Stats */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 10px rgba(59, 130, 246, 0.1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Enhanced Focus States for Accessibility */
*:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Improved Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-button,
    .world-map-container {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 24pt;
        color: #000 !important;
    }
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .offices-grid,
    .hours-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        min-width: unset;
    }
    
    .gokul-empire-slogan h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Mobile Responsive Styles for World Map */
    .world-map-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .world-map {
        height: 300px;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #cbd5e1;
        padding-top: 15px;
    }
    
    .country-flag-large {
        font-size: 2rem;
        margin-right: 10px;
    }
    
    .info-header h3 {
        font-size: 1.25rem;
    }
    
    .pin-flag {
        font-size: 20px;
        top: -35px;
    }
    
    .pin-dot {
        width: 16px;
        height: 16px;
    }
    
    .pin-dot.headquarters {
        width: 20px;
        height: 20px;
    }
    
    .pin-dot.headquarters::after {
        font-size: 14px;
        top: -30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .gokul-empire-slogan h2 {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-card,
    .contact-card,
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .world-map {
        height: 250px;
    }
    
    .world-map-container {
        padding: 15px;
    }
    
    .country-info-card {
        padding: 20px;
    }
    
    .info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .close-info {
        align-self: flex-end;
        margin-top: -10px;
    }
}

/* Mobile responsive adjustments for map pins */
@media (max-width: 768px) {
    .world-map-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .world-map {
        height: 300px;
    }
    
    .map-pin {
        transform: translate(-50%, -100%) scale(0.8);
    }
    
    .map-pin:hover {
        transform: translate(-50%, -100%) scale(1);
    }
    
    .pin-dot {
        width: 16px;
        height: 16px;
    }
    
    .pin-dot.headquarters {
        width: 20px;
        height: 20px;
    }
    
    .pin-flag {
        font-size: 20px;
        top: -35px;
    }
    
    .pin-label {
        font-size: 11px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .world-map {
        height: 250px;
    }
    
    .map-pin {
        transform: translate(-50%, -100%) scale(0.7);
    }
    
    .pin-flag {
        font-size: 18px;
        top: -30px;
    }
    
    .pin-label {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* ===== HIDE QTH INSTALLER ELEMENTS ===== */
.qth-installer-notice,
.qth-extension-popup,
.qth-install-banner,
.qth-installer-widget,
.qth-extension-widget,
.qth-install-notification,
.qth-popup-overlay,
.qth-install-modal,
div[class*="qth-install"],
div[id*="qth-install"],
div[class*="qth-popup"],
div[id*="qth-popup"],
div[class*="qth-notice"],
div[id*="qth-notice"],
.notice[class*="qth"],
.update-nag[class*="qth"],
.admin-notice[class*="qth"],
#qth_installer_dashboard_widget,
#qth_extension_dashboard_widget,
.qth-admin-notice,
.qth-plugin-notice {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* Professional Map Legend Styles */
.map-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.95));
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-1px);
    color: #1e293b;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.legend-dot.headquarters {
    background: linear-gradient(145deg, #f97316, #ea580c);
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.4);
    animation: legendPulse 2s ease-in-out infinite;
}

@keyframes legendPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 2px 16px rgba(249, 115, 22, 0.6); }
}

.legend-dot.office {
    background: linear-gradient(145deg, #10b981, #059669);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.3);
}

.legend-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #3b82f6, #10b981, #f59e0b);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.legend-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: legendShimmer 2s ease-in-out infinite;
}

@keyframes legendShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@media (max-width: 768px) {
    .map-legend {
        flex-direction: column;
        gap: 20px;
        margin: 30px 15px 0;
        padding: 20px;
    }
    
    .legend-item {
        font-size: 14px;
    }
}

/* Pin Position Debug Helper (temporary) */
.map-pin::before {
    content: attr(data-country);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.map-pin:hover::before {
    opacity: 1;
}

/* Enhanced pin visibility for accuracy checking */
.map-pin {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Enhanced tooltip for country information */
#country-tooltip {
    max-width: 250px;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#country-tooltip strong {
    color: #ffeb3b;
}

/* ===== BRANDS HORIZONTAL LAYOUT ===== */
.brands-showcase-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.brands-showcase-horizontal .brand-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.brands-showcase-horizontal .brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.brands-showcase-horizontal .brand-card:hover::before {
    left: 100%;
}

.brands-showcase-horizontal .brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.brands-showcase-horizontal .brand-card.premium {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 10%, #ffffff 100%);
}

.brands-showcase-horizontal .brand-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #10b981 10%, #ffffff 100%);
    position: relative;
}

.brands-showcase-horizontal .brand-card.featured .featured-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.brands-showcase-horizontal .brand-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e40af;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-showcase-horizontal .brand-tagline {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.brands-showcase-horizontal .brand-card.premium .brand-logo {
    color: #b45309;
}

.brands-showcase-horizontal .brand-card.featured .brand-logo {
    color: #047857;
}

/* Responsive adjustments for brands */
@media (max-width: 768px) {
    .brands-showcase-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .brands-showcase-horizontal .brand-card {
        min-width: 200px;
        max-width: 300px;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.global-offices {
    padding: 80px 0;
    background: #f8fafc;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.office-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

.office-card h4 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.office-card ul {
    list-style: none;
    padding-left: 0;
}

.office-card ul li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.office-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.business-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.hours-card, .support-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hours-card:hover, .support-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hours-card h3, .support-card h3 {
    color: #fbbf24;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.hours-list p, .support-channels p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.support-channels a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-channels a:hover {
    color: #dbeafe;
}

.contact-faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: #10b981;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.1);
}

.faq-item h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .offices-grid,
    .hours-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-card,
    .hours-card,
    .support-card,
    .faq-item {
        padding: 20px;
    }
}