* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #003D7A 0%, #0056A8 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

.top-bar i {
    margin-right: 8px;
    color: #FFD700;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
    overflow: visible;
    text-decoration: none;
    color: inherit;
}

.logo img {
    display: block;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    transform: scale(1.7);
    transform-origin: left center;
}

.logo:hover {
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.phone-number {
    font-size: 26px;
    font-weight: bold;
    color: #003D7A;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.phone-number:hover {
    color: #D84A39;
}

.phone-number i {
    animation: float 2s ease-in-out infinite;
}

.cta-button {
    background: linear-gradient(135deg, #D84A39 0%, #C13A2A 100%);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 74, 57, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(216, 74, 57, 0.4);
}

/* Navigation */
.main-nav {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 3px solid #003D7A;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: #003D7A;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
    background: #0056A8;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #D84A39;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #D84A39;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.95) 0%, rgba(0, 86, 168, 0.95) 100%),
                url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero .cta-button,
.hero-cta {
    animation: scaleIn 1s ease-out 0.6s backwards;
    font-size: 18px;
}

.hero-cta {
    display: inline-block;
    margin-top: 10px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    color: #003D7A;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D84A39, #003D7A);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 74, 57, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #D84A39;
}

.service-card h3 {
    color: #003D7A;
    margin-bottom: 15px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #D84A39;
}

.service-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,61,122,0.3) 100%);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, #003D7A 0%, #0056A8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.why-choose .section-title,
.why-choose .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.why-choose .section-title::after {
    background: linear-gradient(90deg, #D84A39, #FFD700);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #D84A39;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, #D84A39, #FF6B5B);
    color: white;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.feature p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* Brands Section */
.brands {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.brands-intro {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #666;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.brand-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #003D7A;
    color: #003D7A;
}

/* Service Areas */
.service-areas {
    padding: 80px 20px;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.area-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    color: #003D7A;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '📍';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 40px;
    opacity: 0;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: linear-gradient(135deg, #003D7A, #0056A8);
    color: white;
    border-color: #003D7A;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,61,122,0.2);
}

.area-item:hover::before {
    left: 15px;
    opacity: 1;
}

.areas-intro {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #666;
}

.areas-footer {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.contact-phone {
    color: #D84A39;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #003D7A;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #003D7A;
    font-size: 16px;
}

.form-group i {
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003D7A;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 61, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message-error {
    background: #fee;
    color: #c33;
    border: 2px solid #fcc;
}

.form-message-success {
    background: #efe;
    color: #3c3;
    border: 2px solid #cfc;
}

.submit-button {
    background: linear-gradient(135deg, #D84A39 0%, #C13A2A 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 20px rgba(216, 74, 57, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::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;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(216, 74, 57, 0.4);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button i {
    margin-right: 8px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #001a33 0%, #003D7A 100%);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 22px;
}

.footer-section p,
.footer-section a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #D84A39;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #D84A39, #C13A2A);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(216, 74, 57, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(216, 74, 57, 0.5);
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive - Tablet and below */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .top-bar {
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .top-bar i {
        display: none;
    }

    .header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .logo img {
        max-height: 50px;
        transform: scale(1.2);
    }

    .contact-info {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 0;
    }

    .phone-number {
        font-size: 20px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile nav: show hamburger, hide menu by default */
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        padding: 12px 16px;
        min-height: 56px;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: #f8f9fa;
        flex-direction: column;
        justify-content: flex-start;
        padding: 70px 24px 24px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        z-index: 101;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        border-left: 3px solid #003D7A;
    }

    .main-nav.nav-open ul {
        transform: translateX(0);
    }

    .main-nav.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 100;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul li {
        border-bottom: 1px solid #e0e0e0;
    }

    .main-nav ul a {
        padding: 14px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero {
        padding: 60px 16px 50px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-cta {
        font-size: 16px;
        padding: 14px 28px;
        min-height: 48px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-subtitle,
    .brands-intro,
    .areas-intro,
    .contact-intro {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .services,
    .why-choose,
    .brands,
    .service-areas,
    .contact-section {
        padding: 48px 16px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        height: 160px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .features-grid {
        margin-top: 28px;
        gap: 20px;
    }

    .feature {
        padding: 24px 20px;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 24px;
    }

    .brand-item {
        padding: 18px 12px;
        font-size: 14px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .area-item {
        padding: 16px;
        font-size: 15px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 48px;
        padding: 14px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .footer-content {
        padding: 0 16px;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }

    footer {
        padding: 40px 16px 20px;
    }

    .scroll-to-top {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
        width: 48px;
        height: 48px;
    }
}

/* Responsive - Small phones */
@media (max-width: 480px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 12px;
    }

    .logo img {
        max-height: 44px;
        transform: scale(1.1);
    }

    .phone-number {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title::after {
        width: 50px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-item {
        padding: 14px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .submit-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}