/* ============================================
   SAFIRI TAXI - Modern Black & Yellow Theme
   ============================================ */

:root {
    --primary-yellow: #FFD700;
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-yellow: #F4A900;
    --light-yellow: #FFF8E1;
    --gray-dark: #2d2d2d;
    --gray-light: #f8f9fa;
    --text-black: #000000;
    --text-white: #ffffff;
    --shadow-yellow: rgba(255, 215, 0, 0.3);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-black);
    background: #f0f2f5;
    overflow-x: hidden;
}

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

/* ============================================
   HEADER - Black & Yellow
   ============================================ */
.site-header {
    background: var(--primary-black) !important;
    border-bottom: 3px solid var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    max-height: 60px;
    width: auto;
    display: block;
    filter: brightness(1);
}

.logo-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-brand i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

.logo-tagline {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.3px;
    font-weight: 400;
    display: block;
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-yellow);
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.nav-list a.active {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

.nav-list a i {
    color: var(--primary-yellow);
    margin-right: 6px;
}

/* ============================================
   HERO SECTION - Black & Yellow
   ============================================ */
.hero {
    padding: 100px 0 80px;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

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

.hero::after {
    content: '🚗';
    position: absolute;
    font-size: 400px;
    opacity: 0.03;
    bottom: -100px;
    right: -100px;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-image {
    max-height: 120px;
    width: auto;
    display: inline-block;
    filter: brightness(1);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero h1 span {
    color: var(--primary-yellow);
}

.hero-description {
    font-size: 20px;
    color: #cccccc;
    max-width: 680px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ============================================
   OWNERSHIP NOTICE
   ============================================ */
.ownership-notice {
    padding: 40px 0;
    background: var(--secondary-black);
    border-top: 2px solid var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
}

.notice-box {
    background: var(--primary-black);
    border-left: 4px solid var(--primary-yellow);
    padding: 24px 32px;
    border-radius: 8px;
}

.notice-box p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 8px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-box strong {
    color: var(--primary-yellow);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--secondary-black);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary-yellow);
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 18px;
    margin-bottom: 48px;
}

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

.feature-card {
    background: var(--primary-black);
    padding: 35px 28px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-yellow);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    padding: 80px 0;
    background: var(--primary-black);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-preview-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-preview-content h2 span {
    color: var(--primary-yellow);
}

.about-preview-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
}

.about-preview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-item {
    background: var(--secondary-black);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #999;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.trust-item {
    background: var(--primary-black);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.trust-item h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.trust-item a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.trust-item a:hover {
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--primary-black);
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🚕';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -80px;
    left: -80px;
    transform: rotate(15deg);
}

.cta-section::after {
    content: '🛺';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: -60px;
    right: -60px;
    transform: rotate(-20deg);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content h2 span {
    color: var(--primary-yellow);
}

.cta-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
}

.cta-content .btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.cta-content .btn-primary:hover {
    background: var(--dark-yellow);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.4);
}

/* ============================================
   FOOTER - Black & Yellow
   ============================================ */
.site-footer {
    background: var(--primary-black);
    color: #aaaaaa;
    padding: 60px 0 24px;
    border-top: 3px solid var(--primary-yellow);
}

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

.footer-brand h3 {
    font-size: 28px;
    color: var(--primary-yellow);
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand h3 i {
    color: var(--primary-yellow);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #aaaaaa;
}

.footer-legal,
.footer-location {
    font-size: 14px;
    color: #888;
}

.footer-brand a {
    color: var(--primary-yellow);
    text-decoration: none;
}

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

.footer-nav h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-nav h4 i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

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

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav ul a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}

.footer-bottom .highlight {
    color: var(--primary-yellow);
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 12px 24px;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-black);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        border-top: 2px solid var(--primary-yellow);
    }
    
    .main-nav.open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list a {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-list a:last-child {
        border-bottom: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-preview-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .logo-image {
        max-height: 40px;
    }
    
    .logo-brand {
        font-size: 20px;
    }
    
    .hero-logo-image {
        max-height: 80px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .logo-brand {
        font-size: 18px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .logo-image {
        max-height: 32px;
    }
    
    .hero-logo-image {
        max-height: 60px !important;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-yellow);
}

/* ============================================
   ENHANCED BUTTON STYLES
   ============================================ */

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-buttons .btn {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-buttons .btn i {
    font-size: 18px;
}

.btn-primary i,
.btn-secondary i {
    margin-right: 8px;
}

/* Hover effects */
.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: 2px solid var(--primary-yellow);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    border-color: var(--dark-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Responsive buttons */
@media (max-width: 480px) {
    .hero-buttons .btn {
        min-width: 100%;
        width: 100%;
        justify-content: center;
    }
}

/* Remove tagline spacing */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hide the tagline completely */
.logo-tagline {
    display: none !important;
}

/* Adjust logo spacing */
.logo-image {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Adjust brand text if no logo */
.logo-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-brand i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

/* ============================================
   COMPANY SUMMARY SECTION
   Clean verification section for Twilio/Persona
   ============================================ */
.company-summary {
    padding: 80px 0;
    background: var(--primary-black);
    border-top: 2px solid rgba(255, 215, 0, 0.1);
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.summary-grid {
    max-width: 900px;
    margin: 0 auto;
}

.summary-header {
    text-align: center;
    margin-bottom: 40px;
}

.summary-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.summary-header h2 span {
    color: var(--primary-yellow);
}

.summary-header p {
    color: #999;
    font-size: 16px;
    margin-top: 8px;
}

.summary-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.summary-item {
    background: var(--secondary-black);
    padding: 16px 24px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.summary-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
}

.summary-value {
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}

.summary-value a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.summary-value a:hover {
    text-decoration: underline;
}

.summary-relationship {
    background: var(--secondary-black);
    padding: 20px 24px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
    text-align: center;
}

.summary-relationship p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.summary-relationship strong {
    color: var(--primary-yellow);
}

/* Responsive Summary */
@media (max-width: 768px) {
    .summary-items {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .summary-header h2 {
        font-size: 26px;
    }
    
    .summary-relationship p {
        font-size: 14px;
    }
}

/* Notice Box Enhancement */
.notice-content {
    max-width: 800px;
    margin: 0 auto;
}

.notice-content p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 8px;
}

.notice-content p strong {
    color: var(--primary-yellow);
}

.notice-detail {
    font-size: 15px;
    color: #999;
    line-height: 1.7;
}

.notice-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.notice-contact span {
    font-size: 14px;
    color: #888;
}

.notice-contact i {
    color: var(--primary-yellow);
    margin-right: 6px;
    width: 18px;
}

/* ============================================
   LANGUAGE SWITCHER STYLES
   ============================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 215, 0, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.lang-switcher a {
    color: #888;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-switcher a:hover {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.lang-switcher a.active {
    color: var(--primary-yellow);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.15);
}

.lang-switcher .divider {
    color: #444;
    font-size: 14px;
    font-weight: 300;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lang-switcher {
        padding: 3px 6px;
    }
    
    .lang-switcher a {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* ============================================
   INCREASED LOGO SIZE - 40% LARGER
   ============================================ */

/* Header Logo - 40% Larger */
.logo-image {
    max-height: 112px !important;  /* Increased from 80px (40% larger) */
    width: auto !important;
    display: block !important;
}

/* Hero Logo - 40% Larger */
.hero-logo-image {
    max-height: 168px !important;  /* Increased from 120px (40% larger) */
    width: auto !important;
    display: inline-block !important;
    margin-bottom: 20px;
}

/* Brand text fallback - 40% Larger */
.logo-brand {
    font-size: 39px !important;  /* Increased from 28px (40% larger) */
    font-weight: 800;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile Responsive - 40% Larger on phones */
@media (max-width: 768px) {
    .logo-image {
        max-height: 84px !important;  /* Increased from 60px (40% larger) */
    }
    
    .hero-logo-image {
        max-height: 112px !important;  /* Increased from 80px (40% larger) */
    }
    
    .logo-brand {
        font-size: 30px !important;  /* Increased from 22px (40% larger) */
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-height: 70px !important;  /* Increased from 50px (40% larger) */
    }
    
    .hero-logo-image {
        max-height: 84px !important;  /* Increased from 60px (40% larger) */
    }
    
    .logo-brand {
        font-size: 25px !important;  /* Increased from 18px (40% larger) */
    }
}
