@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
    --primary: #D8242F;
    --primary-dark: #b71c1c;
    --dark: #1a1a1a;
    --dark-bg: #222222;
    --light-gray: #f5f5f5;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --orange: #F0801A;
    --blue: #1976D2;
    --green: #4CAF50;
    --gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============== HEADER ============== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark);
    transition: all 0.3s ease;
    padding: 5px 0;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li a .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary);
    z-index: 100;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: none;
    border-bottom: 1px solid #eee;
}

.dropdown li a:hover {
    color: var(--primary);
    background: #f9f9f9;
    padding-left: 25px;
}

.nav-search {
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.nav-search:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('../images/hero-bg.png') center/cover no-repeat;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 850px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    color: var(--white);
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero p strong {
    color: var(--white);
    font-weight: 700;
}

.btn-hotline {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 50px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 36, 47, 0.4);
}

.btn-hotline:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(216, 36, 47, 0.5);
}

/* ============== REASONS SECTION ============== */
.reasons {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.reason-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.reason-card .icon.icon-pro {
    color: #2196F3;
}

.reason-card .icon.icon-creative {
    color: var(--orange);
}

.reason-card .icon.icon-cost {
    color: var(--primary);
}

.reason-card .icon.icon-trust {
    color: var(--green);
}

.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.reason-card h3 span {
    color: var(--primary);
}

.reason-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============== ABOUT SECTION ============== */
.about {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.about-content .subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-content p strong,
.about-content p em {
    color: var(--text);
}

.about-contact {
    margin-top: 25px;
}

.about-contact .phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.about-contact .email {
    font-size: 15px;
    color: var(--text-light);
}

/* ============== SERVICES SECTION ============== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-intro p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.services-intro p a {
    color: var(--primary);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.service-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .bg {
    transform: scale(1.08);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.service-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

.service-card .content::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--primary);
    position: absolute;
    top: 30px;
    left: 20px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-left: 10px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card p a {
    color: var(--primary);
    font-weight: 600;
}

/* ============== CTA SECTION ============== */
.cta-section {
    background: var(--primary);
    padding: 30px 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.cta-hotline .icon-24 {
    font-size: 40px;
    animation: pulse 2s infinite;
}

.cta-hotline span {
    font-size: 22px;
    font-weight: 700;
}

.btn-quote {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 4px;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.btn-quote:hover {
    background: transparent;
    color: var(--white);
}

/* ============== EVENTS PORTFOLIO ============== */
.events {
    padding: 80px 0;
    background: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.event-card .thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .thumb img {
    transform: scale(1.05);
}

.event-card .badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
}

.event-card .info {
    padding: 20px;
}

.event-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-card h3 a:hover {
    color: var(--primary);
}

.event-card .excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.event-card .date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============== FAQ SECTION ============== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.faq-question .toggle {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s;
    user-select: none;
}

.faq-item.active .faq-question .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============== FOOTER ============== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col .contact-item i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 18px;
}

.footer-col .contact-item a:hover {
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '»';
    color: var(--primary);
    font-weight: 700;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============== STICKY BOTTOM BAR ============== */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    padding: 10px 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
}

.sticky-bottom a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-bottom a:hover {
    opacity: 0.85;
}

.sticky-bottom .divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.sticky-bottom .zalo-icon {
    width: 22px;
    height: 22px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* ============== FLOATING PHONE ============== */
.floating-phone {
    position: fixed;
    bottom: 70px;
    left: 20px;
    z-index: 998;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(216, 36, 47, 0.4);
    animation: phonePulse 2s infinite;
    cursor: pointer;
}

/* ============== SCROLL TOP ============== */
.scroll-top {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 998;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
}

/* ============== ANIMATIONS ============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 36, 47, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(216, 36, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 36, 47, 0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: #2a2a2a;
    }

    .nav-menu li:hover .dropdown {
        display: block;
    }

    .dropdown li a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        padding: 8px 20px 8px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .dropdown li a:hover {
        color: var(--primary);
        background: transparent;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-search {
        display: none;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 42px;
    }

    .hero {
        min-height: 60vh;
        padding: 90px 15px 50px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .btn-hotline {
        font-size: 15px;
        padding: 12px 30px;
    }

    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .reason-card {
        padding: 25px 15px;
    }

    .reason-card .icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .reason-card h3 {
        font-size: 15px;
    }

    .reason-card p {
        font-size: 12px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 13px;
    }

    .about-contact .phone {
        font-size: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        height: 280px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 12px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card .thumb {
        height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-section {
        padding: 25px 0;
    }

    .cta-text h3 {
        font-size: 18px;
    }

    .cta-right {
        flex-direction: column;
        gap: 15px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .services-intro p {
        font-size: 13px;
    }

    .faq-question {
        padding: 14px 18px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer-inner {
        font-size: 13px;
    }

    .reasons,
    .about,
    .services,
    .events,
    .faq {
        padding: 50px 0;
    }

    .page-banner {
        padding: 100px 15px 35px;
    }

    .page-banner h1 {
        font-size: 22px;
    }

    .page-banner .breadcrumb {
        font-size: 12px;
    }

    .sticky-bottom {
        gap: 15px;
        padding: 8px 0;
    }

    .sticky-bottom a {
        font-size: 12px;
    }

    .floating-phone {
        width: 44px;
        height: 44px;
        font-size: 18px;
        bottom: 60px;
    }

    .scroll-top {
        width: 36px;
        height: 36px;
        bottom: 60px;
    }

    .map-section {
        height: 250px;
    }
}

/* Small phone */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo img {
        height: 36px;
    }

    .hero {
        min-height: 55vh;
    }

    .hero h1 {
        font-size: 20px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 12px;
    }

    .btn-hotline {
        font-size: 14px;
        padding: 11px 25px;
        width: 100%;
        text-align: center;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reason-card {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 18px 15px;
    }

    .reason-card .icon {
        margin: 0;
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .reason-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-card {
        height: 250px;
    }

    .service-card .content {
        padding: 20px 15px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .cta-text h3 {
        font-size: 16px;
    }

    .cta-text p {
        font-size: 12px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .sticky-bottom a {
        font-size: 11px;
    }
}

/* Extra padding for sticky bottom bar */
body {
    padding-bottom: 50px;
}

/* ============== SERVICE PAGE STYLES ============== */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/hero-bg.png') center/cover no-repeat;
    padding: 140px 20px 60px;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-banner .breadcrumb a {
    color: var(--primary);
}

/* Map */
.map-section {
    width: 100%;
    height: 300px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
