/* General Styles */
:root {
    --primary-red: #E30613;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.ast-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar a {
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-red) !important;
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at bottom, #f34341 0%, #bf192c 100%);
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-image {
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-section {
        padding: 40px 0;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-gray);
}

.benefit-icon img {
    max-height: 90px;
    max-width: 85px;
}

.km-content {
    max-width: 900px;
    margin: 0 auto;
}

.km-content h2, .feature-content h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    height: 100px;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    min-height: 50px;
}

.benefit-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

a .benefit-content {
    color: #231f20;
}

.benefits-section a:hover,
.benefits-section a:hover .benefit-content {
    text-decoration: none;
}

.benefit-content h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 19px;
}

.benefit-content p {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-gray);
    color: var(--white);
}

section.gallery-section {
    margin-top: -200px;
    padding-top: 220px !important;
}
.gallery-section,
.feature-section {
    padding-bottom: 80px !important;
}

.gallery-section a:hover {
    text-decoration: none !important;
}

.section-title-white {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle-white {
    font-size: 1rem;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1.5rem;
    color: var(--white);
}

.gallery-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    margin-top: 15px;
}

/* Feature Section */
.feature-section {
    background-color: var(--white);
}

.feature-image-wrapper {
    position: relative;
}

.red-square {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-red);
    top: -30px;
    right: -30px;
    z-index: -1;
}

.feature-product {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.qr-code {
    border: 2px solid #e0e0e0;
    padding: 10px;
    background: var(--white);
}

.membership-card img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-danger {
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: #fff;
    background-color: #e30613 !important;
    border-color: #e30613 !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px !important;
}

.btn-danger:hover {
    background-color: #C70511;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

/* CTA Bar */
.cta-bar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1.5rem 0;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}



@media (max-width: 1500px) {
    .hero-image {
        height: 500px !important;
    }
    .benefit-content h3 {
        font-size: 17px;
    }
    .benefit-card {
        padding: 20px;
    }
}

/* Responsive Utilities */
@media (max-width: 991px) {
    .feature-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .feature-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .red-square {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .cta-text {
        font-size: 1.1rem;
    }
}

i.fa-solid.fa-phone {
    font-family: fontawesome !important;
}

@media (min-width: 991px) {
    .feature-content {
        padding-left: 30px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1440px !important;
    }
}



@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    section.hero-section {
        padding-bottom: 0 !important;
    }
    .hero-image {
        height: auto !important;
    }
}