/* Responsive CSS for FBN Global Solutions */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Social Proof */
    .badges-container {
        gap: 1rem;
    }

    .badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Content sections */
    .content-section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-brand a {
        font-size: 1.3rem;
    }

    .nav-menu {
        top: 60px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Benefits Section */
    .benefits {
        padding: 60px 0;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    /* Process Section */
    .how-it-works {
        padding: 60px 0;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    /* Social Proof */
    .social-proof {
        padding: 40px 0;
    }

    .badges-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .badge {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        min-width: 200px;
        justify-content: center;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Content sections */
    .content-section {
        padding: 40px 0;
    }

    .page-header {
        padding: 80px 0 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Cards */
    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    /* Grid adjustments */
    .grid {
        gap: 1rem;
    }

    /* Forms */
    .form-control {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .benefit-card,
    .process-step,
    .card-body {
        padding: 1.2rem;
    }

    .badge {
        min-width: 180px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 60px 0 30px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .nav-menu {
        padding: 1rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-attachment: scroll; /* Better performance on high DPI */
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .cta-section,
    .footer {
        display: none;
    }

    .hero {
        background: none;
        color: #333;
        padding: 20px 0;
        min-height: auto;
    }

    .page-header {
        background: none;
        color: #333;
        padding: 20px 0;
    }

    .content-section {
        padding: 20px 0;
    }

    .btn {
        border: 1px solid #333;
        background: none;
        color: #333;
    }
}