:root {
    --primary-orange: #de6a2c; /* Changed from #cc6633 to #de6a2c */
    --primary-blue: #1761ac; /* Changed from #006699 to #1761ac */
    --secondary-blue: #0088cc;
    --dark-blue: #1761ac; /* Changed from #004466 to #1761ac */
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --white: #ffffff;
    --gradient-orange: linear-gradient(135deg, #de6a2c 0%, #e67e22 100%); /* Changed #cc6633 to #de6a2c */
    --gradient-blue: linear-gradient(135deg, #1761ac 0%, #0088cc 100%); /* Changed #006699 to #1761ac */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header Styles - Improved Navbar */
header {
    background-color: var(--white);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInDown 0.8s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

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

.logo-img {
    /* CHANGED: height from 42px to 51px */
    height: 51px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

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

.logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-tagline {
    /* CHANGED: font-size from 0.7rem to 0.8rem */
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 500;
}

/* Improved Navigation Menu */
.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-menu a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 10px 20px;
    transition: var(--transition);
    font-size: 0.9rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover {
    color: var(--primary-orange);
    background: rgba(222, 106, 44, 0.05); /* Updated to #de6a2c with opacity */
}

.nav-menu a.active {
    color: var(--white);
    background: var(--gradient-orange);
    box-shadow: 0 4px 15px rgba(222, 106, 44, 0.2); /* Updated to #de6a2c with opacity */
}

.nav-menu a i {
    font-size: 0.9rem;
}

/* Language Selector in Navigation - Improved */
.language-selector {
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 25px;
    background: rgba(23, 97, 172, 0.05); /* Updated to #1761ac with opacity */
    border: 1px solid rgba(23, 97, 172, 0.1); /* Updated to #1761ac with opacity */
}

.language-selector:hover {
    background: rgba(23, 97, 172, 0.1); /* Updated to #1761ac with opacity */
    transform: translateY(-2px);
}

/* Call to Action Button in Navbar */
.nav-cta {
    background: var(--gradient-blue);
    color: var(--white) !important;
    padding: 10px 22px !important;
    font-weight: 700;
    margin-left: 5px;
}

.nav-cta:hover {
    background: var(--dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 97, 172, 0.25); /* Updated to #1761ac with opacity */
}

/* FIXED: Hide mobile menu button on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1001;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 97, 172, 0.05); /* Updated to #1761ac with opacity */
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(23, 97, 172, 0.1); /* Updated to #1761ac with opacity */
}

/* Hero Section with UPDATED background image - FIXED to show whole image */
.hero {
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
    /* UPDATED: Changed to your custom background image - FIXED to show whole image */
    background: linear-gradient(rgba(23, 97, 172, 0.7), rgba(23, 97, 172, 0.8)), url('https://fidakartrade.com//china_to_world.jpg') no-repeat center center;
    background-size: cover; /* Changed from 'contain' to 'cover' to fill the area */
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh; /* Increased from 70vh to 100vh */
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    background: rgba(0, 0, 0, 0.4); /* Added subtle background for better text readability */
    padding: 30px;
    border-radius: 10px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--white);
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 70px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-orange);
}

.section-title p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 0.95rem;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.service-content p {
    color: var(--medium-gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 0.85rem;
}

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

/* Popular Product Categories Section */
.product-categories {
    padding: 70px 0;
    background-color: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 160px;
    width: 100%;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 18px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--dark-blue);
}

.category-content p {
    color: var(--medium-gray);
    font-size: 0.8rem;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
    background-color: var(--white);
}

.advantages-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.advantages-content {
    flex: 1;
}

.advantages-image {
    flex: 1;
}

.advantages-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.advantage-list {
    margin-top: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.advantage-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark-blue);
}

/* Combined Contact & CTA Section with Orange Background */
.contact-cta {
    padding: 80px 0;
    background: var(--primary-orange); /* Solid orange color */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dark-blue); /* Blue accent line at top */
}

.contact-cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-cta-content {
    flex: 1;
}

.contact-cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-cta-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 90%;
}

.contact-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-orange);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-qr-codes {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-qr-codes .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.contact-qr-codes .section-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.contact-qr-codes .section-title h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--dark-blue);
}

.contact-qr-codes .section-title p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
}

.qr-codes-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.qr-code-item {
    text-align: center;
    flex: 1;
}

.qr-code-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.qr-code-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.qr-code-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.qr-code-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Updated secondary button for orange background */
.contact-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ENHANCED FOOTER STYLES */
footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1761ac 100%); /* Changed #002233 to #1761ac */
    color: var(--white);
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    position: relative;
}

.footer-column h3 {
    font-size: 1.2rem; /* Increased from 1.1rem */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem; /* Increased from 0.9rem */
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--primary-orange);
    opacity: 0;
    transition: var(--transition);
    font-size: 0.9rem; /* Increased from 0.8rem */
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Enhanced Footer Logo Section */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 55px; /* Slightly increased */
    height: 55px; /* Slightly increased */
    object-fit: cover;
    border-radius: 50%; /* Changed from 10px to 50% for circle */
    /* Removed border and padding */
}

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

.footer-logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.footer-logo-tagline {
    font-size: 1rem; /* Increased from 0.9rem */
    color: var(--primary-orange);
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85); /* Increased opacity */
    font-size: 1rem; /* Increased from 0.9rem */
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 20px;
}

/* Enhanced Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; /* Increased from 38px */
    height: 42px; /* Increased from 38px */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    transition: var(--transition);
    z-index: 1;
}

.social-icons a:hover::before {
    left: 0;
}

.social-icons a i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem; /* Increased icon size */
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(222, 106, 44, 0.3); /* Updated to #de6a2c with opacity */
}

/* Enhanced Contact Info */
.footer-contact {
    color: rgba(255, 255, 255, 0.85); /* Increased opacity */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem; /* Increased from 0.9rem */
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.1rem; /* Increased from 1rem */
    width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 0 0 3px 3px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8); /* Increased opacity */
    font-size: 0.95rem; /* Increased from 0.85rem */
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8); /* Increased opacity */
    text-decoration: none;
    font-size: 0.9rem; /* Increased from 0.8rem */
    transition: var(--transition);
    position: relative;
    padding: 0 10px;
}

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

.footer-links-bottom a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Improved Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
    border-radius: 0 0 15px 15px;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: var(--dark-blue);
    text-decoration: none;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: rgba(222, 106, 44, 0.05); /* Updated to #de6a2c with opacity */
    color: var(--primary-orange);
    padding-left: 25px;
}

.mobile-menu a.active {
    background: var(--gradient-orange);
    color: var(--white);
}

.mobile-language {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 3px;
    }
    
    .nav-menu a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-cta-container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .advantages-container {
        flex-direction: column;
    }
    
    .contact-cta-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 120px 0 60px;
        min-height: 90vh; /* Adjusted for tablet */
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-qr-codes {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-logo-tagline {
        font-size: 0.9rem; /* Adjusted for mobile */
    }
    
    /* Responsive Footer */
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo-container {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 50px;
        min-height: 80vh; /* Adjusted for mobile */
        background-attachment: scroll;
        background-size: cover; /* Ensure cover on mobile too */
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta-content p {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
    }
    
    .contact-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    /* Hero adjustments for mobile */
    .hero-content {
        padding: 20px;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .qr-codes-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .qr-code-item {
        flex: none;
    }
    
    /* Responsive Footer */
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-logo-main {
        font-size: 1.1rem; /* Adjusted for mobile */
    }
    
    .footer-logo-tagline {
        font-size: 0.9rem; /* Adjusted for mobile */
    }
    
    .footer-column h3 {
        font-size: 1.1rem; /* Adjusted for mobile */
    }
    
    .footer-links a {
        font-size: 0.9rem; /* Adjusted for mobile */
    }
    
    .footer-description {
        font-size: 0.95rem; /* Adjusted for mobile */
    }
    
    .contact-item {
        font-size: 0.95rem; /* Adjusted for mobile */
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 70vh; /* Adjusted for small mobile */
        background-size: cover;
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 15px;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-qr-codes {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-links-bottom a:not(:last-child)::after {
        display: none;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* FIXED: Hide mobile menu on desktop */
@media (min-width: 1101px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

@media (max-width: 1100px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu {
        display: flex !important;
    }
}