/* ============================================
   Zinble Media - Custom Styles
   ============================================ */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #268ad2;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --secondary-color: #1F2937;
    --text-color: #374151;
    --text-light: #6B7280;
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}


.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    /* border: 2px solid transparent; */
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(37, 99, 235, 0.8) 0%, rgba(147, 51, 234, 0.8) 100%); */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    overflow-wrap: break-word;
}

.hero-cta {
    margin-top: 2rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 3;
    margin-top: 0;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   GLOBAL SECTION
   ============================================ */
.global-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.global-stats {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-row:last-child {
    border-bottom: none;
}

.country {
    font-weight: 600;
    color: var(--secondary-color);
}

.dau {
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   PLATFORM SECTION
   ============================================ */
.platform-section {
    padding: 6rem 0;
    background: var(--white);
}

.platform-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.platform-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 15px;
}

.platform-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.platform-card h5 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.platform-dau {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */
.case-studies-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.case-study-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.case-study-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.case-study-header h4 {
    margin: 0;
    color: var(--secondary-color);
}

.case-study-stats {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary-gradient);
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    z-index: 3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
}


.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-light);
}

/* Email link styles - maintain original color */
.footer-contact a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Email links in other contexts */
.contact-info a,
.method-chip a,
.contact-method a {
    color: inherit !important;
    text-decoration: none;
}

.contact-info a:hover,
.method-chip a:hover,
.contact-method a:hover {
    opacity: 0.8;
}

/* Email links in body text */
p a[href^="mailto:"] {
    color: inherit !important;
    text-decoration: none;
}

p a[href^="mailto:"]:hover {
    opacity: 0.8;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        padding: 1.5rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-section,
    .global-section,
    .platform-section,
    .case-studies-section {
        padding: 4rem 0;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .service-card,
    .platform-card {
        padding: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .global-stats {
        margin-top: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 8rem 0 8rem;
        text-align: center;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats .stat-value {
        font-size: 1.8rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    /* Network page stats responsive */
    .stats-bar {
        padding: 20px;
        margin-top: 30px;
    }
    
    .stats-bar .stat-value {
        font-size: 2rem;
    }
    
    .stats-bar .stat-label {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .platform-logo {
        width: 60px;
        height: 60px;
    }
    
    .platform-logo img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .case-study-stats {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-section,
    .global-section,
    .platform-section,
    .case-studies-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .hero-stats .row > div {
        margin-bottom: 1rem;
    }
    
    .hero-stats .row > div:last-child {
        margin-bottom: 0;
    }
    
    /* Network page stats responsive for extra small devices */
    .stats-bar {
        padding: 15px;
        margin-top: 20px;
    }
    
    .stats-bar .row > div {
        margin-bottom: 1rem;
    }
    
    .stats-bar .row > div:last-child {
        margin-bottom: 0;
    }
    
    .stats-bar .stat-value {
        font-size: 1.75rem;
    }
    
    .stats-bar .stat-label {
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .global-stats {
        padding: 1.5rem;
    }
    
    .stat-row {
        padding: 0.75rem 0;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .case-study-header {
        padding: 1.5rem;
    }
    
    .product-image {
        width: 80px;
        height: 80px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .footer .row > div:last-child {
        margin-bottom: 0;
    }
}

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

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

.loading {
    opacity: 0.7;
    pointer-events: none;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        background: none !important;
        color: var(--text-color) !important;
    }
}


/* ============================================
   UTILITY CLASSES & SECTION SPACING
   ============================================ */

/* Ensure proper section spacing and prevent overlaps */
section {
    position: relative;
    z-index: 1;
}

.hero-section {
    z-index: 2;
}

.services-section,
.global-section,
.platform-section,
.case-studies-section,
.cta-section {
    z-index: 3;
}

/* Prevent transform inheritance issues */
.no-transform {
    transform: none !important;
}

/* Ensure proper viewport height handling */
.min-vh-75 {
    min-height: 75vh;
}

.min-vh-100 {
    min-height: 100vh;
}

/* Fix any potential overflow issues */
body {
    position: relative;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   SOLUTIONS PAGE SPECIFIC STYLES
   ============================================ */

.solutions-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 76px;
}

.hero-features {
    margin: 2rem 0;
}

.feature-item {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 1.5rem;
    color: white;
}

.service-title-area h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.service-tagline {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

/* ============================================
   PRICING SECTION STYLES
   ============================================ */

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: white;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #6B7280;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
}

.period {
    font-size: 1rem;
    color: #6B7280;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.pricing-features i {
    color: #10B981;
    margin-right: 0.5rem;
}

.pricing-note {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    color: #1F2937;
}

/* ============================================
   QC SECTION STYLES
   ============================================ */

.qc-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.qc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.qc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.qc-icon i {
    font-size: 1.5rem;
    color: white;
}

/* ============================================
   BENEFITS SECTION STYLES
   ============================================ */

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-content h5 {
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.benefit-content p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SOLUTIONS PAGE RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .solutions-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-detail-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 767px) {
    .solutions-hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 2rem;
    }
}

/* ============================================
   NETWORK PAGE SPECIFIC STYLES
   ============================================ */

/* Network Header Section */
.network-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.network-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s linear infinite;
}

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

.network-header-content {
        padding-top: 40px;
    position: relative;
    z-index: 1;
}

.network-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.network-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Navigation */
.tab-navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
    padding: 20px 0;
}

.nav-tabs {
    border: none;
    justify-content: center;
    gap: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    background: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Form Styles */
.signup-form-section {
    background: var(--background-light);
    padding: 80px 0;
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    opacity: 0.9;
    margin: 0;
}

.form-body {
    padding: 40px;
}

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

.network-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.network-section-title i {
    color: var(--primary-color);
}

.form-label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(38, 138, 210, 0.1);
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    border: 2px solid #e0e0e0;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    margin-left: 8px;
    font-weight: 400;
}

.required-field {
    color: #dc3545;
}

.btn-submit {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Alert Styles */
.alert-custom {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    font-weight: 500;
}

.alert-success-custom {
    background: #d4edda;
    color: #155724;
}

.alert-error-custom {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning-custom {
    background: #fff3cd;
    color: #856404;
}

/* Loading Spinner */
.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
}

/* Validation Errors */
.invalid-feedback {
    display: none;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
    display: block;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #28a745;
}

/* Network Page Responsive Design */
@media (max-width: 768px) {
    .network-header h1 {
        font-size: 2rem;
    }

    .form-body {
        padding: 20px;
    }

    .nav-tabs {
        gap: 0.5rem;
    }

    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.stats-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Network page specific stat styling */
.stats-bar .stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stats-bar .stat-item:last-child {
    border-right: none;
}

.stats-bar .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-bar .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 500;
}

/* Network page specific overrides */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

/* ============================================
   SOLUTIONS PAGE SPECIFIC STYLES
   ============================================ */

/* Solutions Hero Section */
.solutions-hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 40px;
    min-height: 100vh;
}

/* Background Elements */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    opacity: 0.4;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: float-particle 20s infinite ease-in-out 2s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation: float-particle 18s infinite ease-in-out 4s;
}

.particle:nth-child(4) {
    bottom: 20%;
    left: 30%;
    animation: float-particle 22s infinite ease-in-out 1s;
}

.particle:nth-child(5) {
    top: 80%;
    right: 10%;
    animation: float-particle 16s infinite ease-in-out 3s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(20px) translateX(-20px);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-20px) translateX(30px);
        opacity: 0.4;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-breadcrumb {
    margin-bottom: 20px;
}

.hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.hero-badge-container {
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pulse-badge {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
    }
}

.hero-badge i {
    margin-right: 8px;
    color: #ffd700;
}

.solutions-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight-text {
    color: #ffd700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.solutions-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Service Pills */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service-pill i {
    margin-right: 6px;
    color: #ffd700;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

/* Service Cards Stack */
.service-cards-stack {
    position: relative;
    margin-top: 50px;
}

.stack-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: absolute;
    transition: all 0.3s ease;
}

.card-1 {
    position: relative;
    z-index: 3;
    width: 320px;
}

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

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-info h5 {
    margin: 0;
    color: #1a202c;
    font-size: 1rem;
    font-weight: 700;
}

.card-info p {
    margin: 0;
    color: #718096;
    font-size: 0.875rem;
}

.card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: #718096;
    margin-left: 5px;
}

.card-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.card-stats .stat {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #4a5568;
}

.card-stats .stat i {
    margin-right: 6px;
    color: var(--primary-color);
}

.card-2 {
    top: 0px;
    right: -100px;
    z-index: 2;
    width: 250px;
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #f7fafc 100%);
}

.card-3 {
    top: 100px;
    right: -60px;
    z-index: 1;
    width: 220px;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.card-mini {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-mini i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    animation: float-stat 3s ease-in-out infinite;
}

.stat-1 {
    top: -100px;
    left: -30px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: -100px;
    left: -50px;
    animation-delay: 1.5s;
}

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

.floating-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.floating-stat .stat-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.floating-stat .stat-content h6 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.floating-stat .stat-content p {
    margin: 0;
    font-size: 0.75rem;
    color: #718096;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
    opacity: 0.8;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Update the Services Grid section padding */
#services.services-grid {
    padding-top: 5rem !important;
}

/* Responsive Design for Solutions */
@media (max-width: 992px) {
    .hero-visual {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .service-cards-stack {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .stack-card {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    
    .floating-stat {
        display: none;
    }
}

@media (max-width: 768px) {
    .solutions-hero-section {
        padding-top: 70px;
    }
    
    .solutions-hero-title {
        font-size: 2rem;
    }
    
    .solutions-hero-description {
        font-size: 1rem;
    }
    
    .service-pills {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* ============================================
   CONNECT PAGE SPECIFIC STYLES
   ============================================ */

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
    color: #ffd700;
}

.contact-method h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.form-floating > label {
    color: #6B7280;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.office-location {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

.location-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.location-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.detail-icon i {
    color: white;
    font-size: 1.25rem;
}

.detail-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.working-hours h6 {
    color: #fff;
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hour-item:last-child {
    border-bottom: none;
}

.success-message {
    background: #10B981;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.error-message {
    background: #EF4444;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

/* Contact Form Stats Styling */
.contact-form .stat-item {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.contact-form .stat-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.contact-form .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.contact-form .stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.connect-hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 40px;
    min-height: 100vh;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.15);
    animation: floatIcon 15s infinite ease-in-out;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 15%; animation-delay: 3s; }
.icon-3 { bottom: 30%; left: 20%; animation-delay: 6s; }
.icon-4 { top: 50%; right: 10%; animation-delay: 9s; }
.icon-5 { bottom: 20%; right: 25%; animation-delay: 12s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.2; }
}

.hero-badge-wrapper {
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

.connect-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    to { background-position: 200% center; }
}

.connect-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Quick Contact Grid */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.quick-contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.quick-contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.qc-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.qc-icon i {
    color: #ffd700;
    font-size: 1.25rem;
}

.qc-content {
    flex: 1;
}

.qc-content h6 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.qc-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

.qc-arrow {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    margin-left: 15px;
    font-size: 1rem;
}

.quick-contact-card:hover .qc-arrow {
    color: #ffd700;
    transform: translateX(3px);
}

/* Response Promise */
.response-promise {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
}

.promise-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.promise-icon i {
    color: #10b981;
    font-size: 1.25rem;
}

.promise-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.promise-highlight {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.promise-bar {
    margin-top: 8px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.promise-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #10b981, #34d399);
    animation: progressFill 3s ease-out forwards;
}

@keyframes progressFill {
    to { width: 100%; }
}

/* Live Stats Card */
.live-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats-header {
    margin-bottom: 25px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 1);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.stat-icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 215, 0, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon-wrapper i {
    color: #ffd700;
    font-size: 1.25rem;
}

.stat-info .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.stat-info .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Preview */
.contact-preview {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.preview-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.method-chip {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.method-chip i {
    color: #ffd700;
    margin-right: 10px;
    width: 20px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-badge i {
    margin-right: 6px;
    color: #10b981;
}

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

/* Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Responsive Design for Connect */
@media (max-width: 992px) {
    .hero-visual {
        margin-top: 40px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .connect-hero-section {
        padding-top: 70px;
    }
    
    .connect-hero-title {
        font-size: 2rem;
    }
    
    .connect-hero-description {
        font-size: 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .live-stats-card {
        padding: 20px;
    }
    
    .contact-form .stat-item {
        min-height: 80px;
        padding: 1rem 0.5rem;
    }
    
    .contact-form .stat-value {
        font-size: 1.5rem;
    }
    
    .contact-form .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    /* Navbar mobile fixes */
    .navbar-nav .btn {
        margin: 0.5rem 0;
        width: auto;
        text-align: center;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Map responsive styles */
    .map-container iframe {
        height: 300px;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        padding: 1rem;
    }
    
    .location-info {
        padding: 1.5rem;
        margin-top: 1rem;
    }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 80px;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
    animation-delay: 10s;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.badge-wrapper {
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.about-hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #fff);
    border-radius: 2px;
    animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
    from { width: 0; }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Scroll Indicator */
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-text {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive for About */
@media (max-width: 768px) {
    .about-hero-section {
        padding-top: 70px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}

/* ============================================
   LEGAL PAGES SPECIFIC STYLES
   ============================================ */

.privacy-summary {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.contact-info p {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.privacy-commitment {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.legal-page {
    padding: 8rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #6b7280;
    line-height: 1.7;
    margin-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* ============================================
   INLINE STYLE CLASSES FOR ELEMENTS
   ============================================ */

.hero-title-white {
    color: white;
}

.hero-subtitle-white {
    color: white;
}

.hero-description-white {
    color: white;
}

.hero-image-style {
    max-width: 75%;
    float: right;
}

.global-map-rounded {
    border-radius: 20px;
}

.footer-email-icon {
    margin-right: 4px;
}

.get-started-btn {
    width: -webkit-fill-available !important;
}

.white-heading {
    color: white;
}

.company-values-spacing {
    margin-bottom: 40px;
}

.benefits-image-spacing {
    margin-bottom: 40px;
}

.about-hero-padding {
    padding-bottom: 7rem !important;
}

.form-message-height {
    height: 120px;
}

.progress-width-85 {
    width: 85%;
}

.progress-width-92 {
    width: 92%;
}

.progress-width-78 {
    width: 78%;
}

.progress-width-95 {
    width: 95%;
}

.hide-element {
    display: none;
}

/* ========================================================================
   CONNECT PAGE STYLES
   ======================================================================== */

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
    color: #ffd700;
}

.contact-method h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.form-floating > label {
    color: #6B7280;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.office-location {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

.location-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.location-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.detail-icon i {
    color: white;
    font-size: 1.25rem;
}

.detail-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.working-hours h6 {
    color: #fff;
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hour-item:last-child {
    border-bottom: none;
}

.success-message {
    background: #10B981;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.error-message {
    background: #EF4444;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

/* Contact Form Stats Styling */
.contact-form .stat-item {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.contact-form .stat-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.contact-form .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.contact-form .stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.connect-hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 40px;
    min-height: 100vh;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.15);
    animation: floatIcon 15s infinite ease-in-out;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 15%; animation-delay: 3s; }
.icon-3 { bottom: 30%; left: 20%; animation-delay: 6s; }
.icon-4 { top: 50%; right: 10%; animation-delay: 9s; }
.icon-5 { bottom: 20%; right: 25%; animation-delay: 12s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.2; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge-wrapper {
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

.connect-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    to { background-position: 200% center; }
}

.connect-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Quick Contact Grid */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.quick-contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.quick-contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.qc-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.qc-icon i {
    color: #ffd700;
    font-size: 1.25rem;
}

.qc-content {
    flex: 1;
}

.qc-content h6 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.qc-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

.qc-arrow {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    margin-left: 15px;
    font-size: 1rem;
}

.quick-contact-card:hover .qc-arrow {
    color: #ffd700;
    transform: translateX(3px);
}

/* Response Promise */
.response-promise {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
}

.promise-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.promise-icon i {
    color: #10b981;
    font-size: 1.25rem;
}

.promise-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.promise-highlight {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.promise-bar {
    margin-top: 8px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.promise-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #10b981, #34d399);
    animation: progressFill 3s ease-out forwards;
}

@keyframes progressFill {
    to { width: 100%; }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

/* Live Stats Card */
.live-stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats-header {
    margin-bottom: 25px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 1);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    display: block;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    width: -webkit-fill-available;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.stat-icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 215, 0, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon-wrapper i {
    color: #ffd700;
    font-size: 1.25rem;
}

.stat-info .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.stat-info .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Preview */
.contact-preview {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.preview-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.method-chip {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.method-chip i {
    color: #ffd700;
    margin-right: 10px;
    width: 20px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-badge i {
    margin-right: 6px;
    color: #10b981;
}

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

/* Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-visual {
        margin-top: 40px;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .connect-hero-section {
        padding-top: 70px;
    }
    
    .connect-hero-title {
        font-size: 2rem;
    }
    
    .connect-hero-description {
        font-size: 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .live-stats-card {
        padding: 20px;
    }
    
    .contact-form .stat-item {
        min-height: 80px;
        padding: 1rem 0.5rem;
    }
    
    .contact-form .stat-value {
        font-size: 1.5rem;
    }
    
    .contact-form .stat-label {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    /* Navbar mobile fixes */
    .navbar-nav .btn {
        margin: 0.5rem 0;
        width: auto;
        text-align: center;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Map responsive styles */
    .map-container iframe {
        height: 300px;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        padding: 1rem;
    }
    
    .location-info {
        padding: 1.5rem;
        margin-top: 1rem;
    }
}
/* ========================================================================
   ABOUT PAGE STYLES
   ======================================================================== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 80px;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(10px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.badge-wrapper {
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    margin-right: 8px;
    color: #ffd700;
}

.about-hero-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.about-hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #fff);
    border-radius: 2px;
    animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
    from { width: 0; }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-text {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        padding-top: 70px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}

/* Additional Privacy Policy Styles */
.contact-info p {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.privacy-commitment {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.privacy-commitment h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Enhanced Legal page styles */
.legal-page {
    padding: 8rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #6b7280;
    line-height: 1.7;
    margin-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-footer {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
}

.legal-actions .btn {
    margin: 0.25rem;
}

.legal-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .privacy-summary {
        padding: 1rem;
    }
}

/* ============================================
   MOBILE OVERFLOW FIX FOR CONNECT PAGE
   ============================================ */
@media (max-width: 480px) {
    /* Aggressive fix for horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Fix all containers and rows */
    .container, .container-fluid {
        max-width: 100vw !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
        max-width: 100% !important;
    }
    
    /* Fix sections */
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Fix hero section specifically */
    .connect-hero-section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Fix navigation */
    .navbar {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .navbar .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Fix hero content */
    .hero-content {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden;
    }
    
    /* Fix quick contact grid more aggressively */
    .quick-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    .quick-contact-card {
        min-width: 0 !important;
        padding: 12px 8px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    .qc-content {
        min-width: 0 !important;
        flex: 1;
        max-width: calc(100% - 60px) !important;
    }
    
    .qc-content h6 {
        font-size: 0.85rem !important;
        word-wrap: break-word;
    }
    
    .qc-content p {
        font-size: 0.75rem !important;
        word-wrap: break-word;
    }
    
    .qc-icon {
        flex-shrink: 0;
        width: 35px !important;
        height: 35px !important;
        margin-right: 10px !important;
    }
    
    .qc-arrow {
        flex-shrink: 0;
        margin-left: 8px !important;
    }
    
    /* Fix hero visual and stats */
    .hero-visual {
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    .live-stats-card {
        max-width: 100% !important;
        padding: 15px 10px !important;
        overflow-x: hidden;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    
    .stat-item {
        padding: 8px 4px !important;
        min-width: 0 !important;
    }
    
    /* Fix contact form section */
    .contact-form {
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
        overflow-x: hidden;
    }
    
    .contact-info-card {
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
        overflow-x: hidden;
    }
    
    /* Fix form elements */
    .form-floating,
    .form-control,
    .form-select {
        max-width: 100% !important;
    }
    
    /* Fix any remaining text that might overflow */
    .connect-hero-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
    }
    
    .connect-hero-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 0.95rem !important;
    }
    
    /* Hide or fix floating elements */
    .floating-badge,
    .float-icon,
    .floating-icons {
        display: none !important;
    }
    
    /* Fix any absolute positioned elements */
    .hero-background,
    .grid-overlay {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix contact preview methods */
    .method-chip {
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    
    .method-chip a {
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        font-size: 0.75rem !important;
    }
    
    /* Global override for any element that might cause overflow */
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    *:before,
    *:after {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
