/* style.css - Giao diện hiện đại (Xịn xò hơn) cho Vận Tải Thành Hưng */

:root {
    --primary-color: #cb1d1e;
    --secondary-color: #dd3333;
    --dark-bg: #222222;
    --text-main: #1e1e1e;
    --text-muted: #555555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eaeaea;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Bar --- */
.top-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right a {
    margin-left: 20px;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

.highlight-hotline {
    font-weight: 700;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
}

/* --- Header --- */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    display: block;
}

.logo a:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 16px rgba(203, 29, 30, 0.4));
}

/* Shimmer shine effect on logo */
.logo a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.5) 45%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.5) 55%,
            transparent 60%);
    transform: skewX(-25deg);
    animation: logo-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logo-shimmer {
    0% {
        left: -75%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    30% {
        left: 125%;
        opacity: 0;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

/* Subtle glow pulse behind logo on hover */
.logo a::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: radial-gradient(ellipse, rgba(203, 29, 30, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.logo a:hover::before {
    opacity: 1;
}

.header.scrolled .logo img {
    height: 48px;
}

.logo-placeholder {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.nav-list>li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list>li>a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    position: relative;
    padding: 0 18px;
    display: flex;
    align-items: center;
    height: 100%;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Dropdown (Simple visual setup) */
.has-dropdown {
    position: relative;
}

.nav-icon {
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.dropdown-active .dropdown-menu,
.has-dropdown.dropdown-hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
    /* Slight indent hover effect */
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-hotline {
    font-size: 64px;
    font-weight: 900;
    color: #ffcc00;
    /* Vàng nổi bật trên nền tối */
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 20px rgba(203, 29, 30, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-main);
}

/* --- Generic Sections --- */
.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 0 auto;
    transition: width 0.6s ease;
}

.is-visible .divider,
.divider:hover {
    width: 100px;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.content-placeholder {
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #ccc;
    font-style: italic;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.img-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(203, 29, 30, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary-color);
    color: var(--white);
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-hotline-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-hotline-btn:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* --- Floating Actions --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Vị trí giống ảnh gốc */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.float-label {
    position: absolute;
    left: 70px;
    background: var(--white);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
}

.float-btn:hover .float-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.ring-anim {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-btn i {
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* --- Animations for JS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* --- Page Transition --- */
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageFadeIn 0.5s ease-out;
}

/* --- Page Banner (subpages) --- */
.page-banner {
    background: linear-gradient(135deg, #b71c1c 0%, #cb1d1e 30%, #e53935 70%, #dd3333 100%);
    padding: 70px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: bannerTitleIn 0.7s ease-out 0.2s both;
}

.page-banner .breadcrumb {
    font-size: 16px;
    opacity: 0.9;
    animation: bannerBreadcrumbIn 0.7s ease-out 0.4s both;
}

.page-banner .breadcrumb a {
    color: white;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-banner .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-banner .banner-meta {
    margin-top: 12px;
    opacity: 0.8;
    font-size: 14px;
    animation: bannerBreadcrumbIn 0.7s ease-out 0.5s both;
}

.page-banner .banner-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 18px auto 0;
    border-radius: 3px;
    animation: bannerBreadcrumbIn 0.7s ease-out 0.6s both;
}

@keyframes bannerTitleIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerBreadcrumbIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* --- Mobile Menu Overlay & Slide-in --- */
.mobile-menu-toggle {
    display: none;
    font-size: 26px;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1100;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile nav drawer */
.nav-list.mobile-open {
    display: flex !important;
}

/* Close button inside mobile menu */
.mobile-menu-close {
    display: none;
}

/* === Tablet & Below (max-width: 992px) === */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        background: none;
        border: none;
        color: #333;
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
    }

    .header-inner {
        justify-content: space-between;
        height: 70px;
        gap: 0;
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
    }

    .header.scrolled {
        height: 65px;
    }

    .header.scrolled .logo img {
        height: 45px;
    }

    /* Mobile nav drawer - slide from right */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        transform: translateX(100%) !important;
        width: 280px !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 2001 !important;
        flex-direction: column !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3) !important;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        overflow-y: auto !important;
        padding: 0 !important;
        display: flex !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-nav.mobile-open {
        transform: translateX(0) !important;
        pointer-events: auto !important;
        z-index: 2001 !important;
    }

    /* Mobile menu close button */
    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: #ffffff;
        color: #333;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        border: none;
        border-bottom: 1px solid #e9ecef;
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-close span {
        letter-spacing: 1px;
        color: #333;
    }

    .mobile-menu-close i {
        font-size: 24px;
        color: #666;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 0;
        padding: 10px 0;
        margin: 0;
    }

    .nav-list>li {
        height: auto;
        display: block;
        border-bottom: none;
    }

    .nav-list>li>a {
        padding: 16px 20px;
        height: auto;
        font-size: 15px;
        border-bottom: none;
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #333;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-list>li>a::after {
        display: none;
    }

    .nav-list>li>a:hover,
    .nav-list>li>a.active {
        background: #f8f9fa;
        color: var(--primary-color);
        border-bottom: none;
        padding-left: 25px;
    }

    .nav-icon {
        transition: transform 0.3s ease;
        color: #999;
    }

    .has-dropdown.dropdown-active .nav-icon {
        transform: rotate(180deg);
        color: var(--primary-color);
    }

    /* Dropdown in mobile */
    .has-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        display: block;
        background: #f8f9fa;
        transition: max-height 0.4s ease;
        pointer-events: auto !important;
    }

    .has-dropdown.dropdown-active .dropdown-menu {
        max-height: 600px;
        padding: 5px 0;
        pointer-events: auto !important;
    }

    .dropdown-menu li {
        border-bottom: none;
        pointer-events: auto !important;
    }

    .dropdown-menu li a {
        padding: 12px 20px 12px 35px;
        font-size: 14px;
        color: #666;
        font-weight: 500;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    .dropdown-menu li a::before {
        content: '›';
        margin-right: 10px;
        color: var(--primary-color);
        font-weight: 700;
        font-size: 18px;
    }

    .dropdown-menu li a:hover {
        padding-left: 40px;
        background: #fff;
        color: var(--primary-color);
    }

    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999 !important;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(2px);
        pointer-events: auto;
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    /* Ensure menu is ALWAYS above overlay */
    .header:has(.main-nav.mobile-open) {
        z-index: 2000 !important;
    }

    .main-nav {
        z-index: 2001 !important;
    }

    .mobile-menu-close {
        z-index: 2002 !important;
    }

    /* Grid & Layout */
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 450px;
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 16px;
    }

    .hero-hotline {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Page Banner */
    .page-banner {
        padding: 50px 0 40px;
    }

    .page-banner h1 {
        font-size: 28px;
        letter-spacing: 0;
    }

    .page-banner .breadcrumb {
        font-size: 14px;
    }

    .page-banner::before {
        width: 300px;
        height: 300px;
    }

    .page-banner::after {
        width: 250px;
        height: 250px;
    }

    /* Sections */
    .section-title {
        font-size: 26px;
    }

    .intro-section {
        padding: 50px 0;
    }

    .process-section {
        padding: 50px 0;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        gap: 30px;
        padding-bottom: 30px;
    }

    /* Floating actions */
    .floating-actions {
        bottom: 20px;
        left: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .float-label {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Subpage content containers - make wider & reduce padding */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }

    div[style*="max-width: 1100px"] {
        padding: 30px 25px !important;
    }

    div[style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }
}

/* === Small Tablets / Large Phones (max-width: 768px) === */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-hotline {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Page banner */
    .page-banner {
        padding: 40px 0 35px;
    }

    .page-banner h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .page-banner .breadcrumb {
        font-size: 13px;
    }

    .page-banner .banner-meta {
        font-size: 12px;
    }

    /* Section headers */
    .section-title {
        font-size: 22px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* Process cards */
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .process-card {
        padding: 20px 15px;
    }

    .process-card h4 {
        font-size: 15px;
    }

    /* Subpage text sizing */
    div[style*="max-width: 1100px"] h2 {
        font-size: 22px !important;
    }

    div[style*="max-width: 1100px"] h3 {
        font-size: 18px !important;
    }

    div[style*="max-width: 1100px"] p {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    /* Footer */
    .footer-title {
        font-size: 16px;
    }

    .footer-hotline-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    /* Tables responsive */
    table {
        font-size: 13px;
    }

    th,
    td {
        padding: 10px !important;
    }

    /* Steps/process items on subpages */
    div[style*="display: flex; gap: 25px; align-items: start"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    div[style*="min-width: 80px; width: 80px; height: 80px"] {
        min-width: 60px !important;
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto;
    }

    div[style*="min-width: 80px; width: 80px; height: 80px"] span {
        font-size: 24px !important;
    }
}

/* === Phones (max-width: 576px) === */
@media (max-width: 576px) {
    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .top-bar-left span {
        font-size: 10px;
    }

    .top-bar-right a {
        margin: 0 8px;
        font-size: 11px;
    }

    .highlight-hotline {
        font-size: 12px;
        padding: 2px 8px;
    }

    .header-inner {
        height: 55px;
    }

    .logo img {
        height: 42px;
    }

    .header.scrolled .logo img {
        height: 36px;
    }

    .hero-section {
        height: 350px;
    }

    .hero-section h1 {
        font-size: 22px;
    }

    .hero-hotline {
        font-size: 30px;
    }

    .hero-content {
        padding: 0 15px;
    }

    /* Banner */
    .page-banner {
        padding: 35px 0 30px;
    }

    .page-banner h1 {
        font-size: 20px;
        line-height: 1.35;
    }

    .page-banner .breadcrumb {
        font-size: 12px;
    }

    .page-banner .banner-divider {
        width: 40px;
        margin-top: 12px;
    }

    /* Sections */
    .intro-section,
    .process-section {
        padding: 35px 0;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-card {
        padding: 20px 15px;
    }

    /* Subpage content */
    div[style*="max-width: 1100px"] {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }

    div[style*="max-width: 1100px"] h2 {
        font-size: 20px !important;
        padding-bottom: 10px !important;
        margin-bottom: 18px !important;
    }

    div[style*="max-width: 1100px"] p {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    /* CTA sections on subpages */
    div[style*="padding: 40px; border-radius: 15px; text-align: center; color: white"] {
        padding: 25px 20px !important;
    }

    div[style*="padding: 40px; border-radius: 15px; text-align: center; color: white"] h3 {
        font-size: 20px !important;
    }

    div[style*="padding: 40px; border-radius: 15px; text-align: center; color: white"] a {
        padding: 12px 25px !important;
        font-size: 15px !important;
    }

    /* FAQ cards */
    div[style*="padding: 25px 30px; border-radius: 15px; border-left: 5px solid"] {
        padding: 18px 15px !important;
    }

    /* Check items */
    div[style*="padding: 20px 25px; border-radius: 12px; border-left: 4px solid"] {
        padding: 12px 15px !important;
    }

    /* Footer */
    .footer {
        padding-top: 30px;
    }

    .footer-grid {
        gap: 25px;
        padding-bottom: 25px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .footer-contact li {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 15px 0;
        font-size: 12px;
    }

    /* Floating buttons */
    .floating-actions {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* Working hours text */
    .working-hours {
        font-size: 13px;
    }
}

/* === Extra small phones (max-width: 400px) === */
@media (max-width: 400px) {
    .hero-section h1 {
        font-size: 19px;
    }

    .hero-hotline {
        font-size: 26px;
    }

    .page-banner h1 {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* === CONTACT PAGE === */
.contact-card {
    padding: 50px 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* ========================================

   MOBILE RESPONSIVE - COMPLETE OVERHAUL
   ======================================== */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* Top Bar Mobile */
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .top-bar-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-bar-right a {
        font-size: 12px;
    }

    /* Hero Section Mobile */
    .hero-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
    }

    .hero-section h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .hero-section p {
        font-size: 15px !important;
    }

    .hero-hotline {
        font-size: 32px !important;
    }

    /* Grid Layouts - Force 1 Column */
    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .contact-grid,
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    [style*="display: grid"] {
        gap: 20px !important;
    }

    /* Sections Padding */
    section[style*="padding: 100px"] {
        padding: 60px 0 !important;
    }

    section[style*="padding: 80px"] {
        padding: 50px 0 !important;
    }

    /* Section Titles */
    .section-title,
    h2[style*="font-size: 36px"],
    h2[style*="font-size: 32px"] {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    h3[style*="font-size: 28px"],
    h3[style*="font-size: 26px"] {
        font-size: 20px !important;
    }

    h4[style*="font-size: 22px"],
    h4[style*="font-size: 20px"] {
        font-size: 18px !important;
    }

    /* Cards & Boxes */
    .contact-card,
    div[style*="padding: 40px"] {
        padding: 25px 20px !important;
    }

    div[style*="padding: 50px"] {
        padding: 30px 20px !important;
    }

    /* Process Steps - Vertical Layout */
    div[style*="display: flex"][style*="gap: 25px"] {
        flex-direction: column !important;
        text-align: center !important;
    }

    div[style*="min-width: 80px"][style*="width: 80px"] {
        margin: 0 auto 20px !important;
    }

    /* Commitments Grid */
    .commitments-grid {
        grid-template-columns: 1fr !important;
    }

    /* Pricing Table */
    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table table {
        min-width: 600px;
    }

    /* Intro Section */
    .intro-section .intro-content {
        flex-direction: column !important;
    }

    .intro-section img {
        max-width: 100% !important;
        margin: 0 auto 30px !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    .footer-col {
        text-align: center !important;
    }

    .footer-col h3 {
        font-size: 18px !important;
    }

    .footer-col p,
    .footer-col li {
        font-size: 14px !important;
    }

    /* Buttons */
    .btn,
    a[style*="padding: 15px"] {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 20px;
        right: 15px;
    }

    .floating-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }

    /* Back to Top */
    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 85px !important;
        right: 15px !important;
    }

    /* Container */
    .container {
        padding: 0 20px !important;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {

    /* Extra Small Phones */
    .hero-section h1 {
        font-size: 22px !important;
    }

    .section-title,
    h2 {
        font-size: 20px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    p,
    li {
        font-size: 14px !important;
    }

    div[style*="padding: 30px"],
    div[style*="padding: 25px"] {
        padding: 20px 15px !important;
    }

    .container {
        padding: 0 15px !important;
    }

    /* Icon Sizes */
    i[style*="font-size: 36px"] {
        font-size: 28px !important;
    }

    i[style*="font-size: 32px"] {
        font-size: 24px !important;
    }

    /* Circle Icons */
    div[style*="width: 80px"][style*="height: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }
}