:root {
    --primary-blue: #0A2540;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gray-bg: #F8F9FA;
    --dark-text: #1E2A32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

.gold-text {
    color: var(--gold);
}

/* Button Styles - Responsive */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1F4A6E 100%);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-blue);
    font-weight: bold;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 30px;
    padding: 8px 24px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-blue);
}

/* Navbar - Fully Responsive */
.sticky-top {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 6px;
    transition: 0.2s;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
    }
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

/* Hero Banner - Enhanced Responsive */
.hero-banner {
    background: linear-gradient(120deg, #0A2540 0%, #0E3A5C 100%);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}

@media (max-width: 992px) {
    .hero-banner {
        min-height: 70vh;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-banner h1 {
        font-size: 2rem !important;
    }
    
    .hero-banner .lead {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 85vh;
    }
    
    .hero-banner h1 {
        font-size: 1.6rem !important;
    }
}

/* Section Padding - Responsive */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
}

.bg-light-gradient {
    background: linear-gradient(145deg, #F9F9FC 0%, #F0F2F5 100%);
}

/* Section Titles - Responsive */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
}

.section-subtitle {
    color: #5e6f8d;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

/* Cards - Responsive Grid */
.card-feature, 
.service-card, 
.job-card, 
.country-card {
    background: white;
    padding: 28px 20px;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

@media (max-width: 768px) {
    .card-feature, 
    .service-card, 
    .job-card, 
    .country-card {
        padding: 20px 15px;
    }
}

.card-feature:hover, 
.service-card:hover, 
.job-card:hover, 
.country-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.12);
    border-bottom: 3px solid var(--gold);
}

/* Stats Box */
.stat-box {
    background: white;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

@media (max-width: 768px) {
    .stat-box {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .stat-box h3 {
        font-size: 1.5rem;
    }
}

/* Process Timeline - Responsive */
.process-timeline .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-blue), #1e4a76);
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 14px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .process-timeline .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .process-timeline h6 {
        font-size: 0.85rem;
    }
    
    .process-timeline small {
        font-size: 0.7rem;
    }
}

/* Flags */
.flag-img {
    width: 70px;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .flag-img {
        width: 55px;
    }
}

/* Testimonial */
.testimonial-card {
    background: white;
    padding: 35px 25px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0,0,0,0.05);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 15px;
        margin: 10px 0;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0A2540, #0D2F4A);
    padding: 70px 20px;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   FOOTER ENHANCED STYLES
   ============================================ */

.footer {
    background: #061a2c;
    color: #bbd1e4;
    padding: 60px 0 25px;
    position: relative;
}

/* Footer Brand */
.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

/* Footer Headings */
.footer-heading {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Footer Links */
.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #bbd1e4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links i,
.footer-contact i {
    font-size: 0.75rem;
    color: var(--gold);
    width: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact li i {
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-contact li span,
.footer-contact li a {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--gold);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: #bbd1e4;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: #061a2c;
    transform: translateY(-3px);
}

/* Footer Divider */
.footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

/* Developer Credit */
.developer-credit {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.developer-credit i {
    color: #ff6b6b;
    font-size: 0.7rem;
}

.developer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-heading {
        text-align: center;
        display: block;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-contact li i {
        width: auto;
    }
}

@media (max-width: 576px) {
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 8px;
    }
    
    .footer-links a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 0.8rem;
    }
}
/* WhatsApp Float - Responsive */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    line-height: 55px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        line-height: 45px;
    }
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

/* Page Header - Responsive */
.page-header {
    background: linear-gradient(120deg, #0A2540, #134B6F);
    padding: 70px 0;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Gallery */
.gallery-img {
    transition: transform 0.3s, filter 0.2s;
    filter: brightness(0.98);
    width: 100%;
    height: auto;
}

.gallery-img:hover {
    transform: scale(1.02);
    filter: brightness(1.02);
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .stats-row {
        gap: 15px;
    }
    
    .stats-row .col-md-4 {
        margin-bottom: 15px;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .accordion-body {
        font-size: 0.85rem;
        padding: 15px;
    }
}

/* Tablet Specific (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .card-feature, 
    .service-card {
        padding: 22px 18px;
    }
}

/* Large Desktop Optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-banner {
        min-height: 90vh;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



/* Developer Credit Styling */
.developer-credit {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.developer-credit a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .developer-credit {
        display: block;
        margin-top: 12px;
    }
}