/* ========================================
   MOTOR MEDIC RACING - Main Stylesheet
   Mobile-First Design
   ======================================== */

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

:root {
    --orange: #ff6b00;
    --orange-dark: #e55a00;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #aaa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

/* ========== NAVIGATION - Mobile First ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    transition: background 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--orange);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin: -10px;
    background: none;
    border: none;
}

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

.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);
}

/* Nav Links - Mobile */
.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover,
.nav-links a:active,
.nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    padding: 1rem 2rem !important;
    border-radius: 3px;
}

.nav-cta:hover,
.nav-cta:active {
    background: var(--orange-dark);
    color: var(--white) !important;
}

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
    padding: 8rem 4% 4rem;
    background: var(--dark-gray);
    text-align: center;
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--orange);
}

.page-header p {
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(10,10,10,1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 0 1.5rem;
    max-width: 100%;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--orange);
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #ddd;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    border-radius: 3px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

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

.btn-primary:hover,
.btn-primary:active {
    background: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

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

.btn-secondary:hover,
.btn-secondary:active {
    background: var(--white);
    color: var(--black);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 44px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 26px; }
}

/* ========== SECTION STYLES ========== */
section {
    padding: 4rem 4%;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-header h2 span {
    color: var(--orange);
}

.section-header p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 1rem auto;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--dark-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .placeholder-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--light-gray);
}

.placeholder-img svg {
    width: 60px;
    height: 60px;
    fill: var(--light-gray);
    margin-bottom: 0.75rem;
}

.placeholder-img span {
    color: var(--light-gray);
    font-size: 0.85rem;
    text-align: center;
    padding: 0 1rem;
}

.about-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 span {
    color: var(--orange);
}

.about-content p {
    color: #ccc;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.credential {
    text-align: center;
    min-width: 80px;
}

.credential .number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
}

.credential .label {
    font-size: 0.75rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-gray);
    padding: 2rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.service-card:active {
    border-bottom-color: var(--orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== GALLERY SECTION ========== */
.gallery {
    background: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item .placeholder-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--black) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--light-gray);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(0);
}

.gallery-item .overlay h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item .overlay span {
    color: var(--orange);
    font-size: 0.8rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--dark-gray);
    padding: 2rem 1.5rem;
    border-radius: 5px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

.testimonial-card p {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--medium-gray);
    border-radius: 50%;
    border: 2px solid var(--orange);
    flex-shrink: 0;
}

.author-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info span {
    color: var(--light-gray);
    font-size: 0.8rem;
}

/* ========== PRODUCTS SECTION ========== */
.products {
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--dark-gray);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image .placeholder-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--medium-gray);
}

.product-image .placeholder-img svg {
    width: 60px;
    height: 60px;
    fill: var(--light-gray);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.product-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--orange);
}

/* ========== GLIGHTBOX THEME CUSTOMIZATION ========== */
.goverlay {
    background: rgba(0, 0, 0, 0.95) !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: rgba(42, 42, 42, 0.8) !important;
    border: none !important;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: var(--orange) !important;
}

.glightbox-clean .gclose svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
    fill: #fff !important;
}

.glightbox-clean .gdesc-inner {
    background: var(--dark-gray) !important;
}

.glightbox-clean .gslide-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #fff !important;
}

.glightbox-clean .gslide-desc {
    font-family: 'Roboto', sans-serif !important;
    color: var(--light-gray) !important;
    line-height: 1.6 !important;
}

.glightbox-clean .gslide-desc strong {
    color: var(--orange) !important;
    font-size: 1.3rem !important;
}

.ginlined-content {
    background: var(--dark-gray) !important;
}

.product-card,
.gallery-item {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: var(--dark-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-details svg {
    width: 22px;
    height: 22px;
    fill: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.social-links a:active {
    background: var(--orange);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

/* ========== CONTACT FORM ========== */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--medium-gray);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-gray);
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: var(--orange);
    border: none;
    border-radius: 5px;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.contact-form button:active {
    background: var(--orange-dark);
}

/* ========== FOOTER ========== */
footer {
    background: var(--black);
    padding: 2.5rem 4%;
    text-align: center;
    border-top: 1px solid var(--medium-gray);
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    color: var(--orange);
}

footer p {
    color: var(--light-gray);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ========== TABLET STYLES (min-width: 600px) ========== */
@media (min-width: 600px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .about-image .placeholder-img {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== DESKTOP STYLES (min-width: 900px) ========== */
@media (min-width: 900px) {
    nav {
        padding: 1rem 5%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    }

    .nav-transparent {
        background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    }

    .nav-solid {
        background: rgba(10, 10, 10, 0.95);
    }

    .logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        transform: none;
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0;
    }

    .nav-cta {
        padding: 0.7rem 1.5rem !important;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(0,0,0,0.75) 0%,
            rgba(0,0,0,0.6) 50%,
            rgba(10,10,10,1) 100%);
    }

    .hero-content {
        padding: 0 2rem;
        max-width: 900px;
    }

    .hero-content h1 {
        font-size: 4.5rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }

    .btn:hover {
        transform: translateY(-2px);
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    section {
        padding: 6rem 5%;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .page-header {
        padding: 10rem 5% 5rem;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }

    .accent-line {
        width: 80px;
        height: 4px;
        margin: 1.5rem auto;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-image .placeholder-img {
        height: 500px;
    }

    .about-image::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 3px solid var(--orange);
        border-radius: 5px;
        z-index: -1;
    }

    .about-content h3 {
        font-size: 2.5rem;
    }

    .credentials {
        justify-content: flex-start;
        gap: 2rem;
    }

    .credential .number {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-card {
        padding: 2.5rem;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--orange);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .gallery-item .placeholder-img {
        height: 280px;
    }

    .gallery-item .overlay {
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .overlay {
        transform: translateY(0);
    }

    .gallery-item:hover .placeholder-img {
        border-color: var(--orange);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .testimonial-card {
        padding: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .product-image .placeholder-img {
        height: 220px;
    }

    .testimonial-card::before {
        font-size: 6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .social-links a:hover {
        background: var(--orange);
        transform: translateY(-3px);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form button:hover {
        background: var(--orange-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    }

    footer {
        padding: 3rem 5%;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}

/* ========== LARGE DESKTOP (min-width: 1200px) ========== */
@media (min-width: 1200px) {
    .placeholder-img svg {
        width: 80px;
        height: 80px;
    }
}
