/* ===================================
   Ivoire Diaspora Invest Website Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* Fix for iOS Safari viewport */
@supports (-webkit-touch-callout: none) {
    html {
        height: -webkit-fill-available;
    }
}

:root {
    /* Professional Color Palette */
    --primary-color: #F04A00;        /* International Orange - Energy & Emphasis */
    --primary-dark: #D43F00;         /* Darker Orange for hover states */
    --primary-light: #FF6A1A;        /* Lighter Orange for accents */
    --secondary-color: #00004D;      /* Navy Blue - Stability & Authority */
    --secondary-light: #1A1A6D;      /* Lighter Navy for variations */
    --accent-color: #F04A00;         /* International Orange accent */
    --accent-light: #FF8547;         /* Light orange accent */
    
    /* Professional Text Color Hierarchy */
    --text-primary: #000000;         /* Black - Body text & explanations */
    --text-secondary: #333333;       /* Dark gray - Secondary text */
    --text-navy: #00004D;           /* Navy - Headings & important text */
    --text-orange: #F04A00;         /* Orange - Emphasis & highlights */
    --text-white: #FFFFFF;          /* White - Text on dark backgrounds */
    --text-muted: #666666;          /* Muted text for less important content */
    
    /* Professional Background Colors */
    --bg-white: #FFFFFF;             /* Pure white for clarity */
    --bg-light: #FAFBFC;            /* Very light gray for subtle sections */
    --bg-section: #F8F9FA;          /* Light background for alternating sections */
    --bg-navy: #00004D;             /* Navy background for authority */
    --bg-orange: #F04A00;           /* Orange background for energy */
    --bg-gradient-orange: linear-gradient(135deg, #F04A00, #FF6A1A);
    --bg-gradient-navy: linear-gradient(135deg, #00004D, #1A1A6D);
    
    /* Professional UI Elements */
    --border-light: #E9ECEF;
    --border-medium: #DEE2E6;
    --border-dark: #ADB5BD;
    --border-orange: #F04A00;
    --border-navy: #00004D;
    
    /* Professional Status Colors */
    --success-color: #28A745;
    --warning-color: #FFC107;
    --error-color: #DC3545;
    --info-color: #17A2B8;
    
    /* Enhanced Shadows */
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Font loading optimization */
    --font-fallback-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    --font-fallback-secondary: Georgia, 'Times New Roman', Times, serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    background-color: var(--bg-white);
    min-height: 100vh;
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent font scaling in landscape */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Critical loading state */
html.loading {
    visibility: hidden;
}

html.loaded {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Responsive Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    position: relative;
}

/* Ensure sections are visible */
section {
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    min-height: auto;
    display: block;
}

/* Critical layout fixes */
main {
    display: block;
    width: 100%;
    min-height: 50vh;
}

/* Force visibility for key elements */
.header,
.hero,
.about,
.services,
.projects,
.advantages,
.contact,
.footer {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 1240px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Professional Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--text-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
}

/* Professional text variations */
.text-navy {
    color: var(--text-navy);
}

.text-orange {
    color: var(--text-orange);
}

.text-muted {
    color: var(--text-muted);
}

.text-secondary {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--bg-orange);
    color: var(--text-white);
    border-color: var(--border-orange);
    box-shadow: var(--shadow-medium);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: var(--bg-white);
    color: var(--text-orange);
    border-color: var(--border-orange);
    box-shadow: var(--shadow-light);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--bg-orange);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

/* Text Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    background: var(--bg-orange);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-navy);
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
}

/* ===================================
   HEADER STYLES
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Enhanced Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-square {
    width: 45px;
    height: 45px;
    background: var(--bg-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(240, 74, 0, 0.2);
}

.logo-placeholder {
    color: var(--text-white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-navy);
    font-family: var(--font-secondary);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-navy);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(240, 74, 0, 0.1);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(240, 74, 0, 0.2);
    transform: scale(1.05);
}

.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .bar {
    background: var(--text-white);
}

.nav-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-dark);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 77, 0.9) 0%, 
        rgba(0, 0, 77, 0.7) 50%, 
        rgba(240, 74, 0, 0.1) 100%);
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Highlighted International Orange Section */
.hero-highlight-block {
    background: rgba(240, 74, 0, 0.85);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 6px 24px rgba(240, 74, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-highlighted {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    max-width: none;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-stats-highlighted {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item-highlighted {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.stat-number-highlighted {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-highlighted {
    color: var(--text-white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero confidence text */
.hero-confidence-text {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.hero-confidence-text p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 2s ease-out 1s both;
}

.scroll-mouse {
    width: 20px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-light) 100%);
}

.about-content {
    margin-top: 60px;
}

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

.about-subtitle {
    font-size: 1.4rem;
    color: var(--text-orange);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-description {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-navy);
    font-weight: 600;
}

.feature-content p {
    color: var(--text-primary);
    margin: 0;
    font-size: 14px;
}

.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--bg-white);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-white);
    padding: 30px;
}

.visual-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.visual-content p {
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: var(--section-padding);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-orange);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-navy);
    font-weight: 700;
}

.service-description {
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-features .fa-check {
    color: var(--primary-color);
    font-size: 12px;
}

.service-link {
    color: var(--text-orange);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   PROJECTS SECTION
   =================================== */

.projects {
    padding: var(--section-padding);
    background: var(--bg-section);
}

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

.project-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 77, 0.95) 0%, 
        rgba(240, 74, 0, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: var(--text-white);
}

.project-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.project-content {
    padding: 30px;
}

.project-category {
    display: inline-block;
    background: var(--bg-orange);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-light);
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-navy);
}

.project-description {
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 30px;
}

.project-stats .stat {
    text-align: center;
}

.project-stats .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-orange);
    display: block;
}

.project-stats .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: var(--section-padding);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--bg-orange);
    border-radius: 16px 0 0 16px;
}

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

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating .fa-star {
    color: #FFD700;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 400;
}

.testimonial-title {
    color: var(--text-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.author-name {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-navy);
    font-weight: 600;
}

.author-position {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.faq-content {
    margin-top: 60px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: var(--bg-white);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-item.active .faq-question {
    background: var(--bg-navy);
    color: var(--text-white);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-navy);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-item.active .faq-question h4 {
    color: var(--text-white);
}

.faq-icon {
    color: var(--text-orange);
    transition: var(--transition);
    font-size: 16px;
    font-weight: 700;
}

.faq-item.active .faq-icon {
    color: var(--text-white);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
    overflow: visible;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   BUSINESS TALK SECTION
   =================================== */

.business-talk {
    padding: var(--section-padding);
}

.business-talk-content {
    margin-top: 60px;
}

.business-stats {
    margin-bottom: 60px;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    background: var(--bg-orange);
    color: var(--text-white);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: var(--text-white);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--bg-white);
    color: var(--text-orange);
    transform: scale(1.05);
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.business-features {
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-orange);
    border-radius: 16px 16px 0 0;
}

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

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

.feature-header .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    box-shadow: var(--shadow-light);
}

.feature-header h3 {
    margin: 0;
    color: var(--text-navy);
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.feature-benefits .fa-check {
    color: var(--text-orange);
    font-size: 12px;
}

.business-cta {
    background: var(--bg-navy);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.business-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   COUNTRY NEWS SECTION
   =================================== */

.country-news {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.news-content {
    margin-top: 60px;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-navy);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    font-size: 14px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--bg-orange);
    color: var(--text-white);
    border-color: var(--border-orange);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.news-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-badge.opportunities {
    background: var(--primary-color);
    color: var(--text-white);
}

.news-badge.success {
    background: #27AE60;
    color: var(--text-white);
}

.news-badge.opportunity {
    background: var(--bg-orange);
    color: var(--text-white);
}

.news-badge.updates {
    background: #3498DB;
    color: var(--text-white);
}

.news-content {
    padding: 30px;
}

.news-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-orange);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-navy);
    font-weight: 600;
}

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

.news-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.news-date,
.news-budget,
.news-roi {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.news-budget {
    color: var(--text-orange);
    font-weight: 600;
}

.news-roi {
    color: #27AE60;
    font-weight: 600;
}

.news-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    height: fit-content;
    border: 1px solid var(--border-light);
}

.contact-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-navy);
    font-weight: 700;
}

.contact-header p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.method-info h4 {
    margin-bottom: 5px;
    color: var(--text-navy);
    font-size: 1rem;
    font-weight: 600;
}

.method-info p {
    margin-bottom: 3px;
    color: var(--text-primary);
    font-weight: 600;
}

.method-info span {
    color: var(--text-muted);
    font-size: 13px;
}

.email-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links h4 {
    margin-bottom: 15px;
    color: var(--text-navy);
    font-weight: 600;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.linkedin {
    background: #0A66C2;
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-light);
}

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

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--border-orange);
    box-shadow: 0 0 0 3px rgba(240, 74, 0, 0.1);
    background: var(--bg-white);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
    box-shadow: var(--shadow-medium);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background: var(--bg-navy);
    color: var(--text-white);
    padding: 50px 0 25px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 70px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-secondary);
}

.footer-logo-text .company-type {
    font-size: 0.9rem;
    color: var(--text-orange);
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.company-highlight {
    color: var(--text-orange);
    font-weight: 600;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    color: var(--text-orange);
    width: 16px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-social .social-link:hover {
    color: var(--text-orange);
}

.footer-social .social-link i {
    width: 18px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-orange);
}

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

@media (max-width: 1200px) {
    .logo-text .company-name {
        font-size: 1.3rem;
    }
    
    .logo-square {
        width: 42px;
        height: 42px;
    }
    
    .logo-placeholder {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-highlight-block {
        padding: 18px;
        margin-bottom: 35px;
        max-width: 480px;
    }
    
    .hero-stats-highlighted {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo-image {
        height: 60px;
        max-width: 240px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 220px;
    }
}

/* Submenu Styles */
.nav-item {
    position: relative;
}

.has-submenu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.submenu-toggle {
    background: none;
    border: none;
    color: var(--text-navy);
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    transition: var(--transition);
    display: none; /* Hidden on desktop */
}

.submenu-toggle:hover {
    color: var(--text-orange);
}

.submenu-toggle.expanded {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 10px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.submenu.active {
    max-height: 300px;
    padding: 10px 0;
}

.submenu-item {
    margin: 0;
}

.submenu-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.submenu-link:hover {
    color: var(--text-orange);
    background: rgba(240, 74, 0, 0.05);
    border-left-color: var(--primary-color);
}

/* Desktop Navigation - Hide submenu toggles and show submenus on hover */
@media (min-width: 1025px) {
    .has-submenu .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 280px;
        background: var(--bg-white);
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-medium);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        max-height: none;
        padding: 10px 0;
    }
    
    .has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 300px;
    }
    
    .submenu-toggle {
        display: none;
    }
    
    /* Ensure nav items with submenus have proper positioning */
    .has-submenu {
        position: relative;
    }
}

/* Tablet and Mobile Navigation */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease-in-out;
        box-shadow: var(--shadow-heavy);
        z-index: 1000;
        border-top: 3px solid var(--primary-color);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    
    .nav-link {
        display: block;
        padding: 15px 10px;
        border-radius: 8px;
        transition: var(--transition);
        width: 100%;
    }
    
    .nav-link:hover {
        background: rgba(240, 74, 0, 0.05);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        border-top: 1px solid var(--border-light);
        padding-top: 20px;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
    
    .hero-highlight-block {
        padding: 15px;
        margin-bottom: 30px;
        max-width: 95%;
    }
    
    .hero-description-highlighted {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .hero-stats-highlighted {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item-highlighted {
        padding: 12px;
        min-width: 90px;
        width: 100%;
        max-width: 160px;
    }
    
    .stat-number-highlighted {
        font-size: 1.5rem;
    }
    
    .stat-label-highlighted {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .news-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .projects-grid,
    .testimonials-grid,
    .news-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .business-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .news-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo-image {
        height: 55px;
        max-width: 200px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .contact-form-container,
    .contact-card {
        padding: 30px 20px;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) and (min-width: 769px) {
    .hero-stats-highlighted {
        gap: 25px;
    }
    
    .stat-item-highlighted {
        min-width: 110px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .hero-stats-highlighted {
        gap: 20px;
    }
    
    .stat-item-highlighted {
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description,
    .hero-description-highlighted {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .business-cta,
    .contact-form {
        padding: 30px 20px;
    }
    
    .btn-large {
        padding: 16px 30px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .btn {
        min-height: 44px;
    }
    
    /* Touch-friendly navigation */
    .nav-link {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ===================================
   CRITICAL DISPLAY FIXES
   =================================== */

/* Font face fallback */
@font-face {
    font-family: 'Inter-fallback';
    src: local('Inter'), local('system-ui'), local('-apple-system'), local('Helvetica Neue'), local('Arial'), sans-serif;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair-fallback';
    src: local('Playfair Display'), local('Georgia'), local('Times New Roman'), serif;
    font-display: swap;
}

/* Enhanced font loading */
body {
    font-family: 'Inter', 'Inter-fallback', var(--font-fallback-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Playfair-fallback', var(--font-fallback-secondary);
}

/* Critical layout stability */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Browser compatibility fixes */
input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent layout shifts */
.logo-image,
.about-image,
.project-image img,
.news-image img,
.hero-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

/* Enhanced visibility for all sections */
.hero,
.about,
.services,
.projects,
.testimonials,
.faq,
.business-talk,
.country-news,
.contact {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: auto;
}

/* Force render for critical elements */
.container {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Browser-specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Safari specific fixes */
    .hero {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Edge/IE compatibility */
@supports (-ms-ime-align: auto) {
    .hero-overlay {
        background: rgba(0, 0, 77, 0.8);
    }
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .btn {
        line-height: 1.4;
    }
}

/* Critical error prevention */
.header,
.nav-menu,
.hero-content,
.section-header,
.footer {
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure proper text rendering */
p, span, div, a {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}