/* ═══════════════════════════════════════════════════════════════
   GLOBAL UNIFORMITY RULES - December 13, 2025
   Enforces consistent design patterns across ALL pages
   Load Order: After styles.css, before page-specific CSS
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   SECTION 1: UNIVERSAL SECTION BACKGROUNDS - NAVY & CYAN SYSTEM
   All pages must use navy/cyan design with backdrop effects
   ═══════════════════════════════════════════════════════════════ */

/* Default section - Navy gradient with cyan glow */
section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f2439 100%);
    background-attachment: fixed;
    color: var(--white, #ffffff);
    position: relative;
    overflow: hidden;
}

/* Cyan glow overlay for ALL sections */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 255, 240, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Section content wrapper for proper z-index */
section > * {
    position: relative;
    z-index: 1;
}

/* Dark navy sections - Deep corporate feel */
section.dark-section,
.hero,
.cta-section,
.testimonials-section,
.process-section {
    background: linear-gradient(135deg, #051221 0%, #0c1e34 50%, #081829 100%);
    background-attachment: fixed;
    color: var(--white, #ffffff);
}

/* Alternating navy sections - Visual variety */
section.navy-section,
.credentials-section,
.values-section,
.team-section {
    background: linear-gradient(135deg, #0f2439 0%, #1e3a8a 50%, #1a2942 100%);
    background-attachment: fixed;
    color: var(--white, #ffffff);
}

/* Light navy sections - Subtle contrast */
section.light-section,
.features-section,
.benefits-section,
.stats-section {
    background: linear-gradient(135deg, #1a2942 0%, #2a4a6a 50%, #1e3a8a 100%);
    background-attachment: fixed;
    color: var(--white, #ffffff);
}

/* Premium sections - Glass morphism effect */
section.premium-section,
.pricing-section,
.faq-section,
.contact-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f2439 100%);
    background-attachment: fixed;
    color: var(--white, #ffffff);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2: HEADER/NAVBAR UNIFORMITY
   Consistent header across all pages
   ═══════════════════════════════════════════════════════════════ */

/* Header background - Navy/Cyan with backdrop blur */
.header {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(30, 58, 138, 0.95) 50%, rgba(15, 36, 57, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

/* Logo sizing consistency - Premium transparent logo */
.logo-image {
    height: 50px; /* Mobile-first - increased for better visibility */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 255, 0.3)); /* Premium glow effect */
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.5));
    transform: scale(1.05);
}

@media (min-width: 769px) {
    .logo-image {
        height: 60px;
    }
}

@media (min-width: 1025px) {
    .logo-image {
        height: 70px; /* Larger for desktop premium feel */
    }
}

/* Logo tagline consistency */
.logo-tagline {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-weight: 400;
}

/* Navigation menu - uniform styling */
.nav-menu a {
    color: var(--white, #ffffff);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--electric-cyan, #00D9FF);
}

/* Navigation CTA button - always cyan */
.btn-nav-cta {
    background: rgba(0, 217, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.5) !important;
    color: var(--electric-cyan, #00D9FF) !important;
}

.btn-nav-cta:hover {
    background: rgba(0, 217, 255, 0.25) !important;
    border-color: rgba(0, 217, 255, 0.8) !important;
    color: var(--white, #ffffff) !important;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3: FOOTER UNIFORMITY
   Consistent footer across all pages
   ═══════════════════════════════════════════════════════════════ */

.footer {
    background: linear-gradient(135deg, #051221 0%, #0c1e34 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(0, 217, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer a:hover {
    color: var(--electric-cyan, #00D9FF);
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.6);
}

.footer-heading {
    color: var(--electric-cyan, #00D9FF);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4: CARD UNIFORMITY
   All cards use consistent styling
   ═══════════════════════════════════════════════════════════════ */

.card,
.pricing-card,
.feature-card,
.testimonial-card,
.team-card,
.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white, #ffffff);
}

.card:hover,
.pricing-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.team-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 12px 48px rgba(0, 217, 255, 0.2), 0 0 60px rgba(0, 217, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Premium glass cards - Enhanced depth */
.card-dark {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: var(--white, #ffffff);
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.8);
    box-shadow: 0 16px 64px rgba(0, 217, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5: BUTTON UNIFORMITY
   All buttons follow same design system
   ═══════════════════════════════════════════════════════════════ */

/* Primary button - Cyan gradient with backdrop */
.btn-primary {
    background: linear-gradient(135deg, var(--electric-cyan, #00D9FF) 0%, var(--ocean-blue, #1e3a8a) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white, #ffffff);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #00FFF0 0%, #00D9FF 100%);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6), 0 0 60px rgba(0, 217, 255, 0.4);
    border-color: rgba(0, 255, 240, 0.8);
}

/* Secondary button - Glass morphism with cyan border */
.btn-secondary {
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--electric-cyan, #00D9FF);
    border: 2px solid rgba(0, 217, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--electric-cyan, #00D9FF);
    color: var(--white, #ffffff);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.3);
}

/* WhatsApp button - always green */
.btn-whatsapp,
.btn-whatsapp-sticky {
    background: #25D366 !important;
    color: var(--white, #ffffff) !important;
    border: none;
}

.btn-whatsapp:hover,
.btn-whatsapp-sticky:hover {
    background: #20BA5A !important;
}

/* ROI Calculator button - always cyan */
.btn-roi-sticky,
[data-calculator-trigger] {
    background: var(--electric-cyan, #00D9FF) !important;
    color: var(--deep-navy, #0c1e34) !important;
}

.btn-roi-sticky:hover,
[data-calculator-trigger]:hover {
    background: #00BFFF !important;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6: TYPOGRAPHY UNIFORMITY
   Consistent heading and text styles
   ═══════════════════════════════════════════════════════════════ */

/* Section headers - High contrast for navy backgrounds */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-cyan, #00D9FF);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white, #ffffff);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

/* All section text - High contrast white */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    color: var(--white, #ffffff);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

section p,
section li,
section span {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 7: IMAGE UNIFORMITY
   Consistent image styling across site
   ═══════════════════════════════════════════════════════════════ */

/* Logo images - clients, partners */
.img-logo {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.img-logo:hover {
    filter: grayscale(0%) brightness(1);
}

/* Card images - features, services */
.img-card {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Team photos - consistent aspect ratio */
.img-team {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8: SPACING UNIFORMITY
   Consistent padding/margin across pages
   ═══════════════════════════════════════════════════════════════ */

/* Section padding - mobile-first */
section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

/* Grid gaps - consistent spacing */
.grid,
.pricing-grid,
.features-grid,
.team-grid,
.services-grid {
    gap: 24px;
}

@media (min-width: 768px) {
    .grid,
    .pricing-grid,
    .features-grid,
    .team-grid,
    .services-grid {
        gap: 32px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 9: ACCENT COLOR USAGE
   When to use cyan vs green
   ═══════════════════════════════════════════════════════════════ */

/* Cyan - primary CTAs, links, highlights */
.highlight-cyan,
.accent-cyan,
a.link-cyan {
    color: var(--electric-cyan, #00D9FF);
}

/* Green - success states, ROI, money indicators */
.highlight-green,
.accent-green,
.success-indicator {
    color: var(--neon-green, #10FFB0);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 10: MOBILE STICKY BARS
   Consistent across all pages
   ═══════════════════════════════════════════════════════════════ */

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white, #ffffff);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
    padding: 12px 16px;
}

@media (min-width: 768px) {
    .mobile-sticky-bar {
        display: none; /* Hide on desktop */
    }
}

/* ═══════════════════════════════════════════════════════════════
   END OF UNIFORMITY RULES
   ═══════════════════════════════════════════════════════════════ */
