:root {
    /* Colors - Islamic Green & Gold Theme */
    --primary-green: #0D7C66;
    --primary-gold: #D4AF37;
    --accent-teal: #41B3A2;
    --accent-orange: #FF6B35;
    --dark-navy: #000000;
    --soft-cream: #FFF8F0;
    --pure-white: #FFFFFF;
    --text-dark: #000000;
    --text-gray: #000000;
    --border-light: #E5E7EB;
    --success-green: #10B981;
    --error-red: #EF4444;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 124, 102, 0.08);
    --shadow-md: 0 4px 16px rgba(13, 124, 102, 0.12);
    --shadow-lg: 0 8px 32px rgba(13, 124, 102, 0.16);
    --shadow-xl: 0 12px 48px rgba(13, 124, 102, 0.20);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Crimson Pro', serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    font-size: 0.85rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 8px 0;
}

.category-dropdown:hover .category-menu {
    display: block !important;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 4px 12px;
}

.category-item:hover {
    background: #f0fdf4;
    color: #2D9B7B;
    transform: translateX(5px);
}

.nav-link.category-trigger {
    cursor: pointer;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 27.6px;
    font-weight: 800;
}

.nav-brand img {
    height: 46px;
    width: auto;
}

.nav-brand span {
    color: black;
    font-weight: 800;
    font-size: 27.6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    font-size: 36.8px;
    filter: drop-shadow(0 2px 4px rgba(13, 124, 102, 0.3));
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.halal-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    flex: 1;
}

.nav-links .btn-primary {
    margin-left: 8px;
}

.nav-links .partner-badge {
    margin-left: 24px !important;
}

.nav-links .nav-auth-buttons {
    margin-left: 12px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

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

.btn-nav {
    background: none;
    border: 2px solid #06402B;
    color: #06402B;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #06402B;
    color: white;
}

.btn-primary {
    background: #2D9B7B;
    color: black;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(45, 155, 123, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #248267;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 155, 123, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 34, 56, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Slide-out */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--pure-white);
    z-index: 1000;
    padding: 80px 24px 24px;
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
    padding-bottom: env(safe-area-inset-bottom, 24px);
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    display: block;
    padding: 16px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: var(--soft-cream);
    color: var(--primary-green);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 16px 0;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.mobile-menu .btn-nav {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}

.mobile-menu .btn-primary {
    width: 100%;
    text-align: center;
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: 16px;
    background: var(--soft-cream);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 160px;
    background: transparent;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 124, 102, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(66, 133, 244, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    animation: slideInDown 0.8s ease-out;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-navy);
    animation: slideInLeft 1s ease-out;
}

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

.highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeIn 1.2s ease-out;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

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

.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-green);
    color: white;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.hero-trust img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.divider {
    color: var(--border-light);
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 600px;
}

.gig-card-floating {
    position: absolute;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.gig-1 {
    top: 50px;
    left: 50px;
    animation-name: floatCard1;
}

.gig-2 {
    top: 200px;
    right: 100px;
    animation-name: floatCard2;
    animation-delay: 0.5s;
}

.gig-3 {
    bottom: 100px;
    left: 100px;
    animation-name: floatCard3;
    animation-delay: 1s;
}

.gig-4 {
    top: 120px;
    left: 20px;
    animation-name: floatCard4;
    animation-delay: 1.5s;
}

.gig-5 {
    top: 320px;
    right: 20px;
    animation-name: floatCard5;
    animation-delay: 2s;
}

.gig-6 {
    bottom: 200px;
    right: 120px;
    animation-name: floatCard6;
    animation-delay: 0.3s;
}

.gig-7 {
    top: 450px;
    left: 180px;
    animation-name: floatCard7;
    animation-delay: 2.5s;
}

.gig-8 {
    top: 20px;
    right: 180px;
    animation-name: floatCard8;
    animation-delay: 1.8s;
}

.gig-9 {
    bottom: 50px;
    right: 40px;
    animation-name: floatCard9;
    animation-delay: 0.8s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(-2deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-18px) rotate(-3deg); }
}

@keyframes floatCard5 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-22px) rotate(2deg); }
}

@keyframes floatCard6 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-16px) rotate(-2deg); }
}

@keyframes floatCard7 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-19px) rotate(3deg); }
}

@keyframes floatCard8 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-24px) rotate(-1deg); }
}

@keyframes floatCard9 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-17px) rotate(2deg); }
}

.gig-card-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(13, 124, 102, 0.2);
    min-width: 280px;
    border: 2px solid rgba(13, 124, 102, 0.3);
}

.gig-icon {
    font-size: 32px;
}

.gig-title-mini {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.gig-price-mini {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.halal-mini {
    margin-left: auto;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.instant-mini {
    margin-left: auto;
    background: linear-gradient(135deg, var(--accent-orange), #FFB547);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.brand-mini {
    margin-left: auto;
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    color: var(--dark-navy);
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.popular-mini {
    margin-left: auto;
    background: linear-gradient(135deg, #EF4444, #F97316);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.trending-mini {
    margin-left: auto;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.new-mini {
    margin-left: auto;
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.toprated-mini {
    margin-left: auto;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: var(--dark-navy);
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.earnings-popup {
    position: absolute;
    top: 350px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--success-green);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    animation: popIn 3s ease-in-out infinite;
}

@keyframes popIn {
    0%, 100% { transform: scale(0.95); opacity: 0; }
    10%, 90% { transform: scale(1); opacity: 1; }
}

.popup-icon {
    font-size: 32px;
}

.popup-title {
    font-size: 12px;
    font-weight: 500;
}

.popup-amount {
    font-size: 20px;
    font-weight: 800;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: black;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
}

.category-card {
    background: #FFF8F0;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(13, 124, 102, 0.3);
    position: relative;
    overflow: hidden;
}

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

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    background: linear-gradient(135deg, white 0%, #E8F5E9 100%);
    transform: translateY(-12px) scale(1.05);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(13, 124, 102, 0.25);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.category-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

/* Gigs Section */
.gigs-section {
    padding: 20px 0 100px;
    background: transparent;
}

.gigs-filters {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(13, 124, 102, 0.1);
}

.filter-select {
    padding: 14px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.halal-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.halal-filter input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.gigs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gig-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(13, 124, 102, 0.15);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(13, 124, 102, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.gig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 124, 102, 0.2);
    border-color: var(--primary-green);
}

.gig-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.gig-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-halal {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
}

.badge-instant {
    background: linear-gradient(135deg, var(--accent-orange), #FFB547);
    color: white;
}

.badge-brand {
    background: linear-gradient(135deg, var(--primary-gold), #FFD700);
    color: var(--dark-navy);
}

.badge-remote {
    background: #E0F2FE;
    color: #0369A1;
}

.gig-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.gig-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gig-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-gray);
}

.gig-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gig-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.gig-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-display);
}

.gig-stats {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-gray);
}

.load-more {
    text-align: center;
    margin-top: 48px;
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    position: relative;
    padding: 32px;
    background: var(--soft-cream);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 64px;
    margin: 24px 0;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: transparent;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-weight: 700;
    color: var(--dark-navy);
}

.author-role {
    font-size: 14px;
    color: var(--text-gray);
}

.testimonial-earnings {
    padding: 12px;
    background: linear-gradient(135deg, rgba(13, 124, 102, 0.1), rgba(65, 179, 162, 0.1));
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-green);
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0 20px;
    background: transparent;
}

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

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(13, 124, 102, 0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(13, 124, 102, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 60px rgba(13, 124, 102, 0.18);
    border-color: var(--primary-green);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Inline benefit card hover effects */
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(13, 124, 102, 0.2) !important;
    border-color: rgba(13, 124, 102, 0.5) !important;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.benefit-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-cta {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 18px 48px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 80px 0 32px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calmic-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.visitor-counter {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.visitor-counter strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 124, 102, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-large {
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #666;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    font-size: 16px;
    font-family: var(--font-primary);
    background: #F9FAFB;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 124, 102, 0.1);
}

.form-group input:disabled {
    background: #F3F4F6;
    cursor: not-allowed;
    border-color: #E5E7EB;
    color: #9CA3AF;
}

.btn-modal-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), #10B981);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(13, 124, 102, 0.2);
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(13, 124, 102, 0.3);
}

.modal-footer-text {
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
    color: #6B7280;
}

.modal-footer-text a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

/* Social Login Buttons */
.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    background: white;
    color: var(--dark-navy);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-social:hover {
    background: #F9FAFB;
    border-color: #E5E7EB;
    transform: translateY(-1px);
}

.btn-social svg {
    flex-shrink: 0;
}

.btn-google:hover {
    border-color: #4285F4;
}

.btn-microsoft:hover {
    border-color: #00A4EF;
}

.btn-apple:hover {
    border-color: #000;
    background: #000;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .navbar-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .partner-badge {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .nav-brand span {
        font-size: 18px;
    }
    
    .nav-brand img {
        height: 32px;
    }
    
    #countdownContainer {
        font-size: 20px !important;
        min-width: auto !important;
        width: 90% !important;
        max-width: 280px !important;
    }
    
    #countdownTimer {
        font-size: 24px !important;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .category-card {
        padding: 20px 16px;
    }
    
    .category-icon {
        font-size: 36px;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .gigs-section {
        padding: 60px 0;
    }
    
    .gigs-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-input,
    .filter-select {
        width: 100%;
        min-width: auto;
    }
    
    .gigs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gig-card {
        padding: 16px;
    }
    
    .gig-title {
        font-size: 18px;
    }
    
    .gig-price {
        font-size: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-icon {
        font-size: 48px;
        margin: 16px 0;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .btn-cta {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Modal mobile optimization */
    .modal-content {
        padding: 24px;
        margin: 16px;
        width: calc(100% - 32px);
        max-height: calc(100vh - 32px);
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-modal-primary {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-nav {
        display: none !important;
    }
    .lang-switcher {
        display: none !important;
    }
    body {
        font-size: 1.1em;
    }
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    /* Promotional banner mobile optimization */
    [style*="background: #F46C22"] h2 {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    
    [style*="background: #F46C22"] > div > div > div:nth-child(2) {
        font-size: 18px !important;
    }
    
    [style*="background: #F46C22"] > div > div > div:nth-child(3) {
        font-size: 16px !important;
    }
    
    [style*="background: #F46C22"] #countdownContainer {
        font-size: 16px !important;
        padding: 12px !important;
        margin: 12px 0 !important;
        min-width: auto !important;
        width: 100% !important;
    }
    
    [style*="background: #F46C22"] #countdownTimer {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }
    
    [style*="background: #F46C22"] > div > div > div:last-child {
        font-size: 13px !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 16px 12px;
    }
    
    .category-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    /* Mobile modal fixes */
    .modal-content {
        padding: 20px;
        margin: 12px;
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        border-radius: 16px;
    }
    
    .modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .form-group small {
        font-size: 11px;
    }
    
    .btn-modal-primary {
        padding: 13px;
        font-size: 14px;
        margin-top: 6px;
    }
    
    .social-login-buttons {
        gap: 10px;
        margin-top: 12px;
    }
    
    .btn-social {
        padding: 10px 12px;
        font-size: 13px;
        gap: 8px;
    }
    
    .modal-footer-text {
        font-size: 12px;
        margin-top: 16px;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        font-size: 28px;
    }
    
    /* Checkbox label styling on mobile */
    .form-group label[style*="display: flex"] {
        gap: 6px !important;
        font-size: 13px !important;
        align-items: flex-start !important;
    }
    
    .form-group input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        margin-top: 3px !important;
        flex-shrink: 0;
    }
    
    .form-group label[style*="display: flex"] span {
        flex: 1;
        line-height: 1.4;
    }
    
    .category-name {
        font-size: 12px;
    }

    .gig-card {
        padding: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .step-card {
        padding: 20px 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* Footer Styles */
footer a:hover {
    color: white !important;
    transform: translateX(4px);
}

footer .social-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Footer Mobile Optimization */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px !important;
    }

    footer > div > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    footer .bottom-footer > div {
        flex-direction: column !important;
        text-align: center !important;
    }

    footer .bottom-footer img {
        margin: 0 auto !important;
    }

    footer .visitor-stats {
        flex-direction: column !important;
        width: 100% !important;
    }

    footer .badges {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 480px) {
    footer h3 {
        font-size: 20px !important;
    }

    footer h4 {
        font-size: 16px !important;
    }

    footer p {
        font-size: 13px !important;
    }

    footer .social-link {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    footer .payhalal-banner p {
        font-size: 14px !important;
    }
}

/* Installation Modal Mobile Optimization */
@media (max-width: 768px) {
    #installModal > div {
        padding: 20px !important;
        margin: 12px !important;
        max-height: 95vh !important;
    }

    #installModal > div > div {
        padding: 24px 20px !important;
    }

    #installModal h2 {
        font-size: 22px !important;
        margin-bottom: 24px !important;
    }

    #installModal > div > div > div {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    #installModal .step-container {
        padding: 24px 16px !important;
    }

    #installModal h3 {
        font-size: 20px !important;
    }

    #installModal h4 {
        font-size: 15px !important;
    }

    #installModal p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    #installModal > div {
        padding: 12px !important;
        margin: 8px !important;
        border-radius: 16px !important;
    }

    #installModal > div > div {
        padding: 20px 16px !important;
    }

    #installModal h2 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .btn-nav,
    .btn-primary,
    .btn-secondary,
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta,
    .btn-modal-primary {
        min-height: 48px;
    }
    
    .nav-link,
    .category-card,
    .gig-card,
    .step-card,
    .testimonial-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
    }
    
    .halal-filter {
        min-height: 48px;
        padding: 8px 0;
    }
    
    .halal-filter input[type="checkbox"] {
        width: 24px;
        height: 24px;
    }
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Safe area insets for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
    
    .modal-content {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
}

/* Mobile responsive - Hide navigation elements and improve layout */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }
    
    .navbar-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    
    .navbar-top {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        position: relative;
    }
    
    /* Show GigHala on first line */
    .navbar-top > div:first-child {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100%;
    }
    
    /* Hide desktop nav links on mobile */
    .nav-links {
        display: none !important;
    }
    
    /* Show partner badge and buttons on second line */
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        gap: 8px !important;
    }
    
    .partner-badge {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        background: #f8fafc !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
        border: 1px solid #e2e8f0 !important;
        margin-left: 0 !important;
        order: 1;
    }
    
    .partner-badge span {
        font-size: 10px !important;
    }
    
    .partner-badge img {
        height: 16px !important;
    }
    
    .nav-auth-buttons {
        display: flex !important;
        gap: 10px !important;
        order: 2;
    }
    
    .nav-auth-buttons .btn-nav,
    .nav-auth-buttons .btn-primary {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        position: absolute !important;
        right: 0 !important;
        top: 12px !important;
    }
    
    /* Logo sizing for mobile */
    .nav-brand {
        gap: 6px;
        flex-shrink: 0;
    }
    
    .nav-brand img {
        height: 28px;
    }
    
    .nav-brand span {
        font-size: 16px;
        white-space: nowrap;
    }
    
    /* Improve date bar on mobile */
    .date-bar {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    
    .date-bar > div {
        gap: 8px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 12px;
    }
    
    .navbar-top > div:first-child {
        gap: 8px !important;
    }
    
    .nav-brand span {
        font-size: 14px;
    }
    
    .nav-brand img {
        height: 24px;
    }
    
    .partner-badge {
        padding: 3px 8px !important;
    }
    
    .partner-badge span {
        font-size: 9px !important;
    }
    
    .partner-badge img {
        height: 14px !important;
    }
    
    .nav-auth-buttons .btn-nav,
    .nav-auth-buttons .btn-primary {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .date-bar {
        padding: 6px 12px !important;
        font-size: 10px !important;
    }
    
    .date-bar > div {
        gap: 6px !important;
    }

    /* Hide button text on mobile, show only icons */
    .date-bar .btn-text,
    .user-email-bar .btn-text,
    .header-nav .btn-text {
        display: none !important;
    }

    .date-bar .btn-primary,
    .user-email-bar a,
    .user-email-bar button {
        padding: 6px 10px !important;
        min-width: auto !important;
    }
}
