/* ============================================
   Farzand-e-Chitral Goods Forwarding Agency
   Professional Modern Logistics Website
   Premium Design System
   ============================================ */

/* ============================================
   CSS VARIABLES - PREMIUM COLOR PALETTE
   ============================================ */
:root {
    /* Primary - Deep Professional Blues */
    --primary-900: #0a1628;
    --primary-800: #0f2137;
    --primary-700: #152d4a;
    --primary-600: #1b3a5d;
    --primary-500: #234b76;
    --primary: #1e3a5f;

    /* Accent - Vibrant Orange/Gold */
    --accent-500: #f97316;
    --accent-400: #fb923c;
    --accent-600: #ea580c;
    --accent-glow: rgba(249, 115, 22, 0.5);

    /* Success Green */
    --success-500: #10b981;
    --success-400: #34d399;

    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1b3a5d 50%, #0f2137 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-accent-shine: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(249, 115, 22, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(30, 58, 95, 0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(249, 115, 22, 0.05) 0px, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --shadow-accent: 0 10px 40px rgba(249, 115, 22, 0.3);
    --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.2);

    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 100px);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--gray-900);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fix for extra scrolling at bottom */
html, body {
    height: auto;
    min-height: 100vh;
}

footer.footer {
    margin-bottom: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   CONTAINER & UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: var(--shadow-accent);
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Dark section text colors */
.section-light .section-title {
    color: var(--primary-800);
}

.section-light .section-subtitle {
    color: var(--gray-600);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    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(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.4), 0 0 30px rgba(249, 115, 22, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-500);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* WhatsApp SVG Icon */
.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.float-btn .whatsapp-icon {
    width: 28px;
    height: 28px;
}

.whatsapp-icon-large {
    width: 32px;
    height: 32px;
}

.whatsapp-icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-cta-whatsapp .whatsapp-icon {
    width: 24px;
    height: 24px;
}

.btn-icon {
    font-size: 20px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 12px 0;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.nav-logo .logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.nav-logo .logo-text {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
}

@media (min-width: 480px) {
    .nav-logo .logo-text {
        font-size: 18px;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    z-index: 1001;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-left: 10px;
}

.nav-toggle:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.3);
}

.hamburger {
    width: 20px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--accent-500);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--accent-500);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--gradient-dark);
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-link {
    display: block;
    padding: 14px 18px;
    font-weight: 500;
    color: var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-500);
    padding-left: 24px;
}

.nav-cta {
    background: var(--gradient-accent);
    color: var(--white) !important;
    text-align: center;
    margin-top: 16px;
    box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
    transform: scale(1.02);
    padding-left: 18px;
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        box-shadow: none;
        border: none;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    .nav-link:hover {
        padding-left: 16px;
    }

    .nav-cta {
        margin-top: 0;
        padding: 10px 20px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    padding: 80px 0 40px;
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 70px 15px 30px;
        align-items: center;
        justify-content: center;
    }
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Grid Pattern Overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .hero-content {
        padding: 0 10px;
        width: 100%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent-400);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 767px) {
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }
}

.hero-title {
    font-size: clamp(32px, 7vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.15s forwards;
    opacity: 0;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 12px;
    }
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 25%, #ea580c 50%, #f97316 75%, #fb923c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
}

.hero-subtitle strong {
    color: var(--accent-400);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 8px;
        margin-bottom: 20px;
    }
}

.stat-item {
    text-align: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    min-width: 100px;
    transition: all var(--transition-base);
}

@media (max-width: 767px) {
    .stat-item {
        padding: 12px 16px;
        min-width: 85px;
    }
}

.stat-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    color: var(--accent-400);
    line-height: 1;
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 22px;
    }
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .stat-label {
        font-size: 10px;
        margin-top: 4px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.5s forwards;
    opacity: 0;
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-500);
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
}

@media (max-width: 767px) {
    .hero-trust {
        gap: 10px;
        font-size: 11px;
    }
}

.hero-trust span:first-child {
    color: var(--success-400);
}

/* Hero Address */
.hero-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--gray-300);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease 0.7s forwards;
    opacity: 0;
}

.hero-address .address-pin {
    font-size: 18px;
}

@media (max-width: 767px) {
    .hero-address {
        font-size: 11px;
        padding: 10px 16px;
        margin-top: 12px;
    }
}

/* Scroll Indicator - Hidden */
.hero-scroll {
    display: none !important;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--accent-500);
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

/* ============================================
   TRUST / HIGHLIGHTS SECTION
   ============================================ */
.trust-section {
    padding: var(--section-padding) 0;
    background: var(--primary-900);
    position: relative;
}

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

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.trust-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 20px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.trust-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.trust-card:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

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

.trust-card:hover::after {
    opacity: 1;
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
}

.trust-number {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    display: none;
}

@media (min-width: 768px) {
    .trust-desc {
        display: block;
    }
}

/* ============================================
   STORE / AGENCY SECTION
   ============================================ */
.store-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
}

.store-content {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .store-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
    }
}

.store-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.store-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.store-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-accent);
}

.store-info h3 {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.store-description {
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.8;
}

.store-address {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.store-address .address-icon {
    font-size: 24px;
}

.store-address .address-text {
    font-size: 14px;
    color: var(--accent-400);
    line-height: 1.5;
}

.store-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.store-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-features li span {
    color: var(--success-400);
    font-size: 16px;
}

.store-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--primary-800);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.services-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    transform-origin: bottom;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(249, 115, 22, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 60px rgba(249, 115, 22, 0.1);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 44px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.3));
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features li {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-400);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Special Delivery Card Highlight */
.service-card.special-delivery {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.service-card.special-delivery::before {
    transform: scaleY(1);
}

/* ============================================
   AREAS SECTION
   ============================================ */
.areas-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.areas-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .areas-content {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }
}

.areas-from,
.areas-to {
    flex: 1;
    max-width: 350px;
    width: 100%;
}

.areas-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.areas-icon {
    font-size: 24px;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.area-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateX(8px);
}

.area-item.origin-item {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.area-item.featured {
    background: var(--gradient-accent);
    border: none;
    box-shadow: var(--shadow-accent);
}

.area-marker {
    font-size: 16px;
}

.area-name {
    font-weight: 600;
    color: var(--white);
    flex: 1;
}

.area-badge {
    background: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    color: var(--white);
}

.areas-arrow {
    display: none;
}

@media (min-width: 768px) {
    .areas-arrow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        color: var(--accent-500);
    }

    .arrow-line {
        width: 2px;
        height: 50px;
        background: linear-gradient(to bottom, transparent, var(--accent-500), transparent);
    }

    .arrow-icon {
        font-size: 32px;
        animation: arrowPulse 1.5s infinite;
    }
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.5; }
}

.areas-note {
    text-align: center;
    margin-top: 40px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
    font-size: 14px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
    padding: var(--section-padding) 0;
    background: var(--primary-900);
}

.why-us-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.3));
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   OPENING HOURS SECTION
   ============================================ */
.hours-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    position: relative;
}

.hours-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.hours-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 24px;
}

.hours-icon {
    font-size: 28px;
}

.hours-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.hours-table {
    padding: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--gray-300);
}

.time {
    font-weight: 600;
    font-size: 15px;
}

.time.open {
    color: var(--success-400);
}

.time.closed {
    color: #ef4444;
    font-weight: 700;
}

.closed-row {
    background: rgba(239, 68, 68, 0.1);
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: var(--radius-md);
}

.hours-note {
    background: rgba(249, 115, 22, 0.1);
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    color: var(--accent-400);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--primary-900);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.btn-cta-primary,
.btn-cta-whatsapp,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-base);
    text-align: left;
    border: none;
}

.btn-cta-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
}

.btn-cta-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-4px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-500);
    transform: translateY(-4px);
}

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

.btn-text small {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.btn-text strong {
    font-size: 16px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: var(--section-padding) 0 60px;
    background: var(--primary-800);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.map-container iframe {
    display: block;
    min-height: 350px;
    filter: grayscale(20%) contrast(1.1);
}

@media (min-width: 768px) {
    .map-container iframe {
        min-height: 450px;
    }
}

.map-info {
    text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--primary-900);
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    color: rgba(249, 115, 22, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-5px);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
}

.author-location {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   FAQ SECTION - ACCORDION STYLE
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--primary-800);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.2);
}

.faq-item.active {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-300);
    line-height: 1.5;
    flex: 1;
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question h3 {
    color: var(--accent-400);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 18px;
    color: var(--gray-400);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--accent-500);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    padding-left: 60px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent-400);
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */
.contact-info-section {
    padding: 50px 0;
    background: var(--primary-700);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 16px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.contact-link {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-400);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-900);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--accent-400);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a,
.footer-services li {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--accent-400);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-500);
}

.footer-contact li span {
    font-size: 16px;
}

.footer-contact li a {
    color: var(--gray-500);
}

.footer-contact li a:hover {
    color: var(--accent-400);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.footer-seo {
    font-size: 11px !important;
    color: var(--gray-700) !important;
}

/* Ensure footer ends properly */
.footer-bottom {
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-bottom: 30px;
    }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    pointer-events: none;
}

.floating-buttons .float-btn {
    pointer-events: auto;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    background: inherit;
    opacity: 0.4;
    filter: blur(10px);
    z-index: -1;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-btn.whatsapp {
    background: var(--whatsapp);
    animation: pulse 2s infinite;
}

.float-btn.phone {
    background: var(--gradient-accent);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ============================================
   MENU OVERLAY
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

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

/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================ */
:focus-visible {
    outline: 2px solid var(--accent-500);
    outline-offset: 3px;
}

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

/* ============================================
   URDU SECTIONS
   ============================================ */
.urdu-section {
    padding: var(--section-padding) 0;
    font-family: 'Segoe UI', 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', Tahoma, Arial, sans-serif;
}

.urdu-section-1 {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
    position: relative;
    overflow: hidden;
}

.urdu-section-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.urdu-section-2 {
    background: var(--primary-700);
    position: relative;
}

.urdu-header {
    text-align: center;
    margin-bottom: 50px;
}

.urdu-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: var(--shadow-accent);
}

.urdu-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.urdu-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--accent-400);
    font-weight: 600;
}

.urdu-content-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .urdu-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .urdu-content-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.urdu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.urdu-card:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
}

.urdu-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.3));
}

.urdu-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-400);
    margin-bottom: 16px;
}

.urdu-list {
    text-align: right;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 2;
}

.urdu-list li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.urdu-list li:last-child {
    border-bottom: none;
}

.urdu-address {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 600;
}

.urdu-contact-info p {
    font-size: 15px;
    color: var(--gray-300);
    margin: 8px 0;
}

.urdu-contact-info .phone-number {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
}

.urdu-hours {
    font-size: 18px;
    color: var(--success-400);
    font-weight: 700;
    margin-bottom: 12px;
}

.urdu-closed {
    font-size: 16px;
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 12px;
}

.urdu-note {
    font-size: 14px;
    color: var(--gray-400);
}

/* Urdu Section 2 Styles */
.urdu-features-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .urdu-features-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.urdu-feature-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
}

.urdu-feature-title {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.urdu-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.urdu-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--gray-300);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.urdu-feature-item:hover {
    background: rgba(249, 115, 22, 0.1);
}

.feature-check {
    font-size: 18px;
    color: var(--success-400);
}

.urdu-special-service {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 2px solid rgba(249, 115, 22, 0.4);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
}

.urdu-special-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-accent);
}

.urdu-special-service h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0 16px;
}

.urdu-special-service p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.urdu-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.urdu-city {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-400);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
}

.urdu-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .urdu-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.urdu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.urdu-btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.urdu-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.4);
}

.urdu-btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.urdu-btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
}

.urdu-bottom-message {
    margin-top: 50px;
    text-align: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urdu-bottom-message p {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 2;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header, .floating-buttons, .hero-scroll { display: none; }
    body { background: white; color: black; }
}
