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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent horizontal scroll */
    max-width: 100vw;
    position: relative;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Enhanced Responsive Container */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Colors */
:root {
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #f6e05e;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #e53e3e;
    --warning-color: #ed8936;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
    min-height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: 200px;
    object-fit: contain;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.7);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000;
}

.hero-slider {
    display: flex;
    animation: slideShow 35s linear infinite;
    width: 700%;
    height: 100%;
}

.hero-slide {
    width: 100vw;
    flex-shrink: 0;
    height: 100vh;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@keyframes slideShow {
    0% {
        transform: translateX(0);
    }
    14.28% {
        transform: translateX(0);
    }
    14.29% {
        transform: translateX(-100%);
    }
    28.57% {
        transform: translateX(-100%);
    }
    28.58% {
        transform: translateX(-200%);
    }
    42.85% {
        transform: translateX(-200%);
    }
    42.86% {
        transform: translateX(-300%);
    }
    57.14% {
        transform: translateX(-300%);
    }
    57.15% {
        transform: translateX(-400%);
    }
    71.42% {
        transform: translateX(-400%);
    }
    71.43% {
        transform: translateX(-500%);
    }
    85.71% {
        transform: translateX(-500%);
    }
    85.72% {
        transform: translateX(-600%);
    }
    100% {
        transform: translateX(-600%);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { 
        opacity: 0.3;
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-20px) rotate(180deg); 
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c5ed8 50%, #0a4cb5 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-facebook::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #0c5ed8 0%, #0a4cb5 50%, #0841a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.btn-facebook span {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-facebook i {
    font-size: 1.1em;
}

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

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

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

.certification-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.cert-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.cert-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.cert-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 5px;
    z-index: 2;
}

.cert-icon:has(.cert-logo) {
    background: transparent;
    border: 2px solid var(--secondary-color);
}

.cert-icon:has(.cert-logo)::after {
    display: none;
}

.cert-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cert-issuer {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cert-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cert-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
}

/* Trust Signals Section */
.trust-signals {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-signals::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    min-width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-content p,
.trust-content span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--accent-color);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    min-width: 20px;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.founder-info {
    margin-bottom: 0.5rem;
}

.founder-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-section {
    max-width: 800px;
    margin: 0 auto;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.founder-details {
    flex: 1;
}

.founder-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.founder-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-office-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-office-image:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder i {
    margin-bottom: 1rem;
}

/* Zahoor Profile Picture Styles */
.founder-profile {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.founder-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.05);
}

.founder-details {
    flex: 1;
}

.founder-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.founder-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Profile Styles */
.form-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.contact-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-header-text {
    flex: 1;
}

.form-header-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.form-header-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer Team Section */
.footer-team {
    flex: 1;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.founder-card-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-card-info {
    flex: 1;
}

.founder-card-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.founder-card-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.founder-card-info p:first-of-type {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Global Trade Section */
.global-trade {
    padding: 6rem 0;
    background: var(--bg-light);
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.world-map {
    position: relative;
}

.map-placeholder {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trade-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trade-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.trade-feature:hover {
    transform: translateY(-5px);
}

.trade-feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.trade-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: white;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-icon {
    min-width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

/* Office Timing Styles */
.office-timing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.timing-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.timing-item.closed {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.timing-item.closed:hover {
    background: rgba(231, 76, 60, 0.2);
}

.timing-item .day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.timing-item .time {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
}

.timing-item.closed .time {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border-color: #e74c3c;
}

.timing-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.timing-note i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.timing-note span {
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Message Styles */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideInUp 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message, .error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* Button Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

#submitLoader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#submitLoader::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Contact Form Button */
.contact-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
}

.contact-form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 0;
    width: 100%;
    max-width: 280px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

/* Business Details Section */
.business-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.business-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.business-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.business-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.business-info::-webkit-scrollbar {
    width: 6px;
}

.business-info::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.business-info::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

.business-info::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.info-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item strong {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.verification-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    gap: 0.3rem;
}

.verification-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.verification-link small {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.3;
}

/* Business Details Section */
.business-details {
    padding: 3rem 0;
}

.business-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.business-card {
    padding: 1.5rem;
}

.business-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.business-card h3 {
    font-size: 1.1rem;
}

.info-item strong {
    font-size: 0.85rem;
}

.info-item p {
    font-size: 0.9rem;
}

.verification-link {
    font-size: 0.9rem;
}

/* Location Map Section */
.location-map {
    padding: 6rem 0;
    background: white;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

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

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

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

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

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links .btn-facebook {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer .container > p {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Perfect Mobile Optimization */

/* Tablet and Below */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    /* Base Mobile Settings */
    html {
        font-size: 14px;
        scroll-behavior: smooth;
    }
    
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Container Adjustments */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* Header Navigation */
    .navbar {
        padding: 0.75rem 0;
        min-height: 60px;
    }
    
    .nav-logo .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .hamburger {
        display: flex;
        width: 28px;
        height: 24px;
        position: relative;
    }

    .hamburger .bar {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 2rem 2rem;
        z-index: 1000;
        overflow-y: auto;
        margin: 0;
    }

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

    .nav-menu::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        pointer-events: none;
    }

    .nav-link {
        color: white;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        text-align: left;
        display: block;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--secondary-color);
        transform: translateX(10px);
        padding-left: 10px;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 60px 0 0;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 15px;
        position: relative;
        z-index: 5;
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-height: 52px;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:active::before {
        width: 300px;
        height: 300px;
    }

    /* Trust Signals */
    .trust-signals {
        padding: 3rem 0;
    }

    /* Certifications Section */
    .certifications {
        padding: 3rem 0;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certification-card {
        padding: 1.5rem;
    }

    .cert-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cert-logo {
        width: 38px;
        height: 38px;
    }

    .cert-content h3 {
        font-size: 1.1rem;
    }

    .cert-issuer {
        font-size: 0.85rem;
    }

    .cert-detail {
        font-size: 0.9rem;
    }

    .cert-number {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 140px;
    }

    .trust-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

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

    .trust-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .trust-content p,
    .trust-content span {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Section Headers */
    .section-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
        position: relative;
        padding-bottom: 1rem;
        text-align: center;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        color: var(--text-light);
        line-height: 1.6;
        text-align: center;
    }

    /* All Sections */
    .about,
    .services,
    .global-trade,
    .why-choose,
    .contact,
    .location-map {
        padding: 4rem 0;
    }

    /* About Section */
    .about-content,
    .global-content,
    .contact-content {
        gap: 2rem;
    }

    .about-main,
    .global-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features,
    .trade-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-item:hover {
        transform: translateX(5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .founder-section {
        margin: 0 auto;
    }

    .founder-profile {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }

    .founder-image {
        width: 80px;
        height: 80px;
    }

    .founder-details {
        text-align: center;
    }

    .founder-details h3 {
        font-size: 1.2rem;
    }

    .founder-details p {
        font-size: 0.95rem;
    }

    .about-office-image {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    /* Why Choose Section */
    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-feature {
        padding: 1.5rem;
        border-radius: 16px;
        background: var(--bg-light);
        border-left: 4px solid var(--secondary-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .why-feature:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
    }

    .why-feature h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .why-feature p {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
    }

    /* Contact Section */
    .contact-info {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
    }

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

    .contact-card .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 1rem auto 0;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .contact-form .btn,
    .contact-form button[type="submit"] {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem auto 0;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* Office Timing Mobile */
    .office-timing {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }

    .timing-item {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .timing-item .day {
        font-size: 0.85rem;
    }

    .timing-item .time {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        align-self: flex-end;
    }

    .timing-note {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        order: -1;
    }

    .footer-logo-img {
        height: 45px;
        margin-bottom: 1rem;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        border: 3px solid white;
    }

    .whatsapp-float:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    /* Mobile Menu Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hamburger Animation */
    .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);
    }

    /* Hero Slider Mobile */
    .hero-slider {
        animation-duration: 35s;
    }

    .hero-slide img {
        object-fit: cover;
        object-position: center center;
        filter: brightness(1.0);
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }

    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Typography */
    html {
        font-size: 13px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* About Section Small Mobile */
    .about {
        padding: 3rem 0;
    }

    .about-main {
        gap: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    .feature-item i {
        font-size: 1.1rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .founder-profile {
        padding: 1.5rem;
        gap: 1rem;
    }

    .founder-image {
        width: 60px;
        height: 60px;
    }

    .founder-details h3 {
        font-size: 1.1rem;
    }

    .founder-details p {
        font-size: 0.85rem;
    }

    .about-office-image {
        max-width: 250px;
    }

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

    /* Header */
    .navbar {
        padding: 0.5rem 0;
        min-height: 50px;
    }

    .nav-logo .logo-img {
        height: 35px;
        max-width: 140px;
    }

    .hamburger {
        width: 24px;
        height: 20px;
    }

    .hamburger .bar {
        width: 100%;
        height: 2px;
    }

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

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

    /* Navigation Menu */
    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 70px 1.5rem 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    /* Hero Section */
    .hero {
        padding: 50px 0 0;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 12px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    /* Trust Signals */
    .trust-signals {
        padding: 2rem 0;
    }

    /* Certifications Section */
    .certifications {
        padding: 2rem 0;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certification-card {
        padding: 1.2rem;
    }

    .cert-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .cert-logo {
        width: 34px;
        height: 34px;
        padding: 3px;
    }

    .cert-content h3 {
        font-size: 1rem;
    }

    .cert-issuer {
        font-size: 0.8rem;
    }

    .cert-detail {
        font-size: 0.85rem;
    }

    .cert-number {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    /* Business Details Section */
    .business-details {
        padding: 2rem 0;
    }

    .business-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .business-card {
        padding: 1.2rem;
    }

    .business-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .business-card h3 {
        font-size: 1rem;
    }

    .info-item strong {
        font-size: 0.8rem;
    }

    .info-item p {
        font-size: 0.85rem;
    }

    .verification-link {
        font-size: 0.85rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-item {
        padding: 1.2rem;
        min-height: 120px;
    }

    .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .trust-content h3 {
        font-size: 0.95rem;
    }

    .trust-content p,
    .trust-content span {
        font-size: 0.8rem;
    }

    /* Sections */
    .about,
    .services,
    .global-trade,
    .why-choose,
    .contact,
    .location-map {
        padding: 3rem 0;
    }

    /* Service Cards */
    .service-card,
    .contact-form,
    .contact-card,
    .why-feature {
        padding: 1.5rem;
    }

    /* Contact Cards Small Mobile */
    .contact-card {
        text-align: center;
    }

    .contact-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .contact-form .btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem auto 0;
        width: 100%;
        max-width: 220px;
        text-align: center;
    }

    /* Global Trade Section Small Mobile */
    .global-trade {
        padding: 3rem 0;
    }

    .world-map {
        margin-bottom: 2rem;
    }

    .trade-features {
        gap: 1rem;
    }

    .trade-feature {
        padding: 1rem;
        text-align: center;
    }

    .trade-feature i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .trade-feature h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .trade-feature p {
        font-size: 0.85rem;
    }

    /* Why Choose Section Small Mobile */
    .why-feature {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .why-feature h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .why-feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

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

    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .feature-item {
        padding: 0.8rem 1rem;
    }

    .founder-info {
        padding: 1.5rem;
    }

    /* Contact Form */
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 15px;
        right: 15px;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }
}

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

    .hero-content {
        padding: 1rem 15px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .btn {
        width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .trust-item {
        padding: 1rem;
        min-height: 100px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .trust-content h3 {
        font-size: 0.85rem;
    }

    .trust-content p,
    .trust-content span {
        font-size: 0.75rem;
    }

    .navbar {
        min-height: 50px;
    }

    .nav-logo .logo-img {
        height: 35px;
    }
}

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

    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        max-width: 220px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Ultra Small Mobile Contact */
    .contact-card {
        padding: 1.2rem;
    }

    .contact-card i {
        font-size: 1.8rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .contact-card .btn {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem auto 0;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    /* Ultra Small Mobile Global Trade */
    .global-trade {
        padding: 2.5rem 0;
    }

    .trade-feature {
        padding: 0.8rem;
    }

    .trade-feature i {
        font-size: 1.3rem;
    }

    .trade-feature h4 {
        font-size: 0.9rem;
    }

    .trade-feature p {
        font-size: 0.8rem;
    }

    /* Ultra Small Mobile Why Choose */
    .why-feature {
        padding: 1rem;
        gap: 0.6rem;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .why-feature h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .why-feature p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .nav-logo .logo-img {
        height: 30px;
        max-width: 120px;
    }

    .trust-item {
        padding: 1rem;
        min-height: 100px;
    }

    /* Fix trust grid for ultra small screens */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card,
    .contact-form,
    .contact-card {
        padding: 1.2rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: white;
}

/* Focus States */
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
