/* Variables based on the requested color palette */
:root {
    --act-red: #D3121B;       /* Primary Red from text */
    --act-cyan: #1CB3DE;      /* Light Blue from top ring */
    --act-blue: #0F5E9C;      /* Dark Blue from bottom ring */
    --act-silver: #E1E2E4;    /* Silver/Grey backing */
    
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(15, 94, 156, 0.15);
    
    --transition: all 0.3s ease;
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--act-blue);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--act-blue);
}

.section-title span {
    color: var(--act-red);
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--act-cyan), var(--act-blue));
    margin-bottom: 30px;
    border-radius: 2px;
}

.title-line.center {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Utility Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.mt-5 { margin-top: 3rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

.btn-primary {
    background: linear-gradient(135deg, var(--act-cyan), var(--act-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(28, 179, 222, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 179, 222, 0.6);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--act-blue);
}

.btn-red {
    background: var(--act-red);
    color: var(--white);
    border: none;
}

.btn-red:hover {
    background: #b50f16;
    transform: translateY(-2px);
    color: var(--white);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 80px;
}

header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: var(--transition);
}

.logo-circle.dark {
    border-bottom-color: var(--act-blue);
    border-left-color: var(--act-blue);
    transform: rotate(-15deg);
}

.logo-circle.light {
    border-top-color: var(--act-cyan);
    border-right-color: var(--act-cyan);
    transform: rotate(-15deg);
}

.logo:hover .logo-circle {
    transform: rotate(165deg);
}

.logo-inner {
    position: absolute;
    z-index: 2;
    background: var(--white);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-inner .txt {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--act-red);
    letter-spacing: -0.5px;
}

.logo-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-act {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--act-blue);
    letter-spacing: 1px;
}

.brand-cool {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--act-red);
    text-transform: uppercase;
}

.footer-logo .logo-brand .brand-act {
    color: var(--act-blue);
}

.footer-logo .logo-brand .brand-cool {
    color: var(--act-red);
}

.footer-logo .logo-inner {
    background: var(--white);
}

.footer-logo .logo-inner .txt {
    color: var(--act-red);
}

.footer-logo .logo-circle.dark {
    border-bottom-color: var(--act-blue);
    border-left-color: var(--act-blue);
}

.footer-logo .logo-circle.light {
    border-top-color: var(--act-cyan);
    border-right-color: var(--act-cyan);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--act-red);
    transition: var(--transition);
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--act-red);
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease-in-out;
        z-index: 999;
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
    }

    .nav-btn {
        display: inline-block;
        padding: 8px 16px;
        font-size: 0.8rem;
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .nav-menu .nav-btn-mobile {
        display: none !important; /* No longer needed inside menu if visible in header */
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .brand-act {
        font-size: 1.2rem;
    }

    .brand-cool {
        font-size: 0.7rem;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--act-blue);
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 94, 156, 0.9) 0%, rgba(28, 179, 222, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

/* Tentang Kami */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-features {
        align-items: center;
    }

    .graphic-text {
        font-size: 3rem;
    }

    .graphic-text small {
        font-size: 1.2rem;
    }
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px; /* Changed to rounded square for modern look */
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--act-blue);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(15, 94, 156, 0.1);
    transition: var(--transition);
}

.feature-item:hover .feat-icon {
    background: var(--act-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 94, 156, 0.2);
}

.feat-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.feat-desc {
    font-weight: 600;
}

.about-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
}

.outer-blue {
    width: 80%;
    height: 80%;
    border-width: 25px;
    border-color: var(--act-blue);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

.inner-cyan {
    width: 65%;
    height: 65%;
    border-width: 15px;
    border-color: var(--act-cyan);
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(-30deg);
    animation: rotate-reverse 15s linear infinite;
}

.graphic-text {
    position: absolute;
    z-index: 10;
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--act-red);
    line-height: 1;
}

.graphic-text small {
    font-size: 1.5rem;
    color: var(--act-blue);
    display: block;
    margin-top: -10px;
}

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

@keyframes rotate-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}
/* Sparepart Section */
.sparepart-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .sparepart-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .sparepart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sparepart-card {
    background: linear-gradient(135deg, var(--act-blue) 0%, var(--act-cyan) 100%);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 94, 156, 0.2);
}

.sparepart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(15, 94, 156, 0.4);
}

.sparepart-img {
    height: 140px;
    width: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.sparepart-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.sparepart-card:hover .sparepart-img img {
    transform: scale(1.1);
}

.sparepart-card h3 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 15px 10px;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


/* Floating AC Styling */
.floating-ac-container {
    margin: 40px auto 20px;
    max-width: 800px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-ac {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    animation: floatAC 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.ac-shadow {
    width: 60%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
    margin: 0 auto;
    border-radius: 50%;
    animation: shadowPulse 4s ease-in-out infinite;
    margin-top: -15px;
}

@keyframes floatAC {
    0%, 100% { transform: translateY(0) rotateX(1deg); }
    50% { transform: translateY(-20px) rotateX(-1deg); }
}

@keyframes shadowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(0.85); opacity: 0.4; }
}

/* AC Logos Grid */
.ac-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .ac-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .ac-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .ac-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ac-logo-card {
    background: var(--white);
    height: 75px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border: 1px solid #eee;
    transition: var(--transition);
}

.ac-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    border-color: var(--act-blue);
}

.ac-logo-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.ac-logo-card.logo-zoom img {
    transform: scale(1.4);
}

.ac-logo-card.logo-zoom-max img {
    transform: scale(1.8);
}

.ac-logo-card.text-logo {
    font-weight: 800;
    font-size: 1rem;
    color: #333;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.5px;
}

.ac-logo-card.text-logo span {
    font-size: 0.5rem;
    font-weight: 500;
    color: #999;
    margin-top: 2px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    text-align: left;
}

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

.product-img-wrapper {
    height: 280px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-img-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--act-blue);
    font-weight: 700;
}

.product-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.product-link {
    font-weight: 600;
    color: var(--act-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.product-link:hover {
    color: var(--act-red);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--white);
}

.brands-section .section-subtitle {
    margin-bottom: 40px;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    gap: 20px;
    padding: 10px 0;
}

.marquee-wrapper.mt-5 {
    margin-top: 60px !important;
}

.mt-4 {
    margin-top: 20px;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 20px;
    animation: scroll 35s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.brand-card {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    width: 225px;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
}

.brand-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    border-color: rgba(28, 179, 222, 0.3);
    transform: translateY(-3px);
}

.brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 20px));
    }
}

/* Cabang Section Modern Minimalist */
.branches-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns for left and right cards */
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.branch-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition);
}

.branch-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--act-cyan);
}

.branch-image-box {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.branch-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.branch-item:hover .branch-image-box img {
    transform: scale(1.1);
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.branch-mini-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--act-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.branch-mini-icon svg {
    width: 18px;
    height: 18px;
}

.branch-content h3 {
    font-size: 1.2rem;
    color: #7d2a00;
    margin: 0;
    font-weight: 700;
}

.branch-address {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
    max-width: 350px;
}

.branch-tel, .branch-hours {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.branch-map-btn {
    display: inline-block;
    color: #c04d2c;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 5px;
    transition: var(--transition);
}

.branch-map-btn:hover {
    color: var(--act-blue);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .branches-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .branch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Footer & Logo Footer Specific */
.footer {
    background: #111;
    color: #a0a0a0;
    padding-top: 60px;
}

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

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p, .footer-profile p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

.footer-logo {
    margin-bottom: 20px;
    opacity: 1;
}

.footer-logo .brand-act {
    color: var(--white);
}

.footer-logo .brand-cool {
    color: #a0a0a0;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-support h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-support ul {
    list-style: none;
}

.footer-links ul li,
.footer-support ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-support ul li a {
    color: #a0a0a0;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-profile h4 {
    color: var(--act-cyan);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-profile p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #a0a0a0;
}

.btn-footer-about {
    display: inline-block;
    padding: 8px 24px;
    border: 1.5px solid #444;
    border-radius: 25px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    transition: var(--transition);
}

.btn-footer-about:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--act-cyan);
    color: var(--act-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Pricing Page Styles */
.pricing-header {
    background: linear-gradient(rgba(15, 94, 156, 0.9), rgba(28, 179, 222, 0.9)), url('assets/hero-banner.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: var(--white);
    text-align: center;
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-container {
    padding: 60px 0;
}

.brand-section {
    margin-bottom: 50px;
}

.brand-title {
    font-size: 2rem;
    color: var(--act-blue);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--act-red);
    display: inline-block;
    padding-bottom: 5px;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--act-cyan);
    border-radius: 2px;
}

.price-table {
    width: 100%;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.price-table th, .price-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: #333;
}

.price-table th {
    background: #f4f4f4;
    font-weight: 700;
    color: #000;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-tag {
    font-weight: 700;
    color: #000;
    font-size: 1rem;
}

.table-note {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    margin-top: -10px;
    margin-bottom: 30px;
}

.btn-back {
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--act-blue);
    font-weight: 600;
}

.btn-back:hover {
    color: var(--act-red);
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 2.2rem;
    }

    .pricing-header p {
        font-size: 0.9rem;
    }
    
    .price-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 30px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .price-table {
        margin-bottom: 0;
        border: none;
        min-width: 600px; /* Force scroll on small screens */
    }

    .brand-title {
        font-size: 1.5rem;
    }
}
