/* ============================================
   LAYOUT - PREMIUM PAGE SECTIONS
   ============================================ */

/* ========== HERO PRODUCT SHOWCASE ========== */

.hero-showcase {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, #0F2A44 0%, #163B5C 50%, #1A4D76 100%);
    overflow: hidden;
    padding: var(--space-12) 0 var(--space-10);
    display: flex;
    align-items: center;
}

/* Subtle decorative elements on the gradient */
.hero-showcase::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 125, 195, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-showcase::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 125, 195, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Split Layout */
.hero-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
        align-items: center;
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .hero-split {
        gap: var(--space-10);
    }
}

/* ---- Hero Text (Left Side) ---- */
.hero-text {
    flex: 1;
    text-align: center;
    max-width: 540px;
}

@media (min-width: 768px) {
    .hero-text {
        text-align: left;
        max-width: none;
        flex: 1 1 50%;
    }
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: heroFadeUp 0.6s ease-out;
}

.hero-title {
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.08;
    font-weight: var(--weight-extrabold);
    letter-spacing: -0.025em;
    animation: heroFadeUp 0.8s ease-out;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
    font-weight: var(--weight-normal);
    max-width: 480px;
    animation: heroFadeUp 1s ease-out;
}

@media (max-width: 767px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--text-xl);
    }
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    animation: heroFadeUp 1.2s ease-out;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: var(--space-4);
    }
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
    font-weight: var(--weight-semibold);
}

/* WhatsApp CTA - Primary button */
.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #1EAD52 0%, #0e7a6d 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-hero i {
    font-size: 1.2em;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ---- Hero Image Container (Right Side) ---- */
.hero-image-container {
    position: relative;
    flex: 1;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
    .hero-image-container {
        flex: 1 1 50%;
        max-width: 520px;
    }
}

@media (min-width: 1024px) {
    .hero-image-container {
        max-width: 580px;
    }
}

/* Product Images - stacked via absolute positioning */
.hero-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
    filter: drop-shadow(0px 30px 40px rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.hero-product-img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

/* .hero-dot { 
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}*/

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.25);
}

/* ========== CATEGORIES SECTION ========== */

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

.category-grid {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .category-grid {
        max-width: none;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

/* ========== FEATURED PRODUCTS SECTION ========== */

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

.product-grid {
    display: grid;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== VIDEO SHOWCASE SECTION ========== */

.video-showcase {
    background-color: var(--bg-white);
}

.video-grid {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-8);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

.video-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.video-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.video-wrapper video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.video-caption {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
}

.video-caption-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--cta-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--primary);
    transition: all var(--transition-slow);
}

.video-card:hover .video-caption-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.video-caption h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--navy);
    margin-bottom: var(--space-1);
    line-height: var(--leading-tight);
}

.video-caption p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

/* ========== WHY CHOOSE SECTION ========== */

.why-choose {
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

/* ========== FOOTER ========== */

.footer {
    background: linear-gradient(180deg, var(--navy) 0%, #0A1F33 100%);
    color: var(--white);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: var(--space-5);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: var(--text-xs);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
    color: #94A3B8;
}

.footer-col ul li i {
    width: 18px;
    margin-right: var(--space-2);
    color: #64748B;
}

.footer-col a {
    color: #94A3B8;
    transition: all var(--transition-normal);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-6);
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    margin-bottom: 0;
    font-size: var(--text-sm);
}

/* ========== BREADCRUMBS ========== */

.breadcrumbs {
    padding: var(--space-4) 0;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    transition: color var(--transition-normal);
}

.breadcrumbs a:hover {
    color: var(--navy);
}

.breadcrumbs span {
    margin: 0 var(--space-2);
}

/* ========== PAGE HEADER ========== */

.page-header {
    background-color: var(--bg-light);
    padding: var(--space-8) 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-3);
    color: var(--navy);
    font-weight: var(--weight-extrabold);
}

.page-header p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: 0;
}

/* ========== FILTERS BAR ========== */

.filters-bar {
    background-color: var(--white);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-8);
    position: sticky;
    top: 60px;
    z-index: var(--z-base);
}

.filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.filter-buttons {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--bg-lighter);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(43, 125, 195, 0.25);
}

.products-count {
    color: var(--text-light);
    font-size: var(--text-sm);
    padding-top: var(--space-2);
}

/* ========== CATALOG SECTION ========== */

.catalog-section {
    min-height: 400px;
}

.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-4);
}

.empty-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    color: var(--text-light);
}

.empty-state h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========== PRODUCT DETAIL ========== */

.product-detail {
    padding: var(--space-8) 0;
}

.product-detail-grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}

.thumbnail {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
}

.product-info h1 {
    margin-bottom: var(--space-3);
    font-weight: var(--weight-extrabold);
    letter-spacing: -0.01em;
}

.product-description {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.product-specs {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-lighter));
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-light);
}

.product-specs h3 {
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.spec-value {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .product-actions {
        flex-direction: row;
    }
}

/* Page Header Simple */
.page-header-simple {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    color: var(--text-white);
    padding: var(--space-12) 0 var(--space-10);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-simple::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-simple h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
    color: var(--white);
    font-weight: var(--weight-extrabold);
    letter-spacing: -0.02em;
}

.page-header-simple p {
    font-size: var(--text-lg);
    opacity: 0.85;
    color: var(--white);
}

/* About Page */
.about-content {
    padding: var(--space-12) 0;
}

.about-grid {
    display: grid;
    gap: var(--space-8);
    align-items: start;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: var(--text-3xl);
    color: var(--navy);
    margin-bottom: var(--space-4);
    font-weight: var(--weight-extrabold);
}

.about-text h3 {
    font-size: var(--text-xl);
    color: var(--navy);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.about-text p {
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--space-3) 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
}

.feature-list i {
    color: var(--primary);
    font-size: var(--text-base);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.stat-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-slow);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-icon {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    background: linear-gradient(135deg, var(--navy), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--weight-medium);
}

/* Contact Page */
.contact-section {
    padding: var(--space-12) 0;
}

.contact-grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-size: var(--text-3xl);
    color: var(--navy);
    margin-bottom: var(--space-4);
    font-weight: var(--weight-extrabold);
}

.contact-item-large {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-4);
    transition: all var(--transition-normal);
}

.contact-item-large:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact-item-large h3 {
    font-size: var(--text-base);
    color: var(--navy);
    margin-bottom: var(--space-2);
    font-weight: var(--weight-semibold);
}

.contact-item-large p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    font-size: var(--text-sm);
}

.contact-item-large a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item-large a:hover {
    text-decoration: underline;
}

.action-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    margin-bottom: var(--space-4);
    transition: all var(--transition-normal);
}

.action-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.action-card>i {
    font-size: var(--text-4xl);
    color: var(--primary);
    margin-bottom: var(--space-4);
    display: block;
}

.action-card h3 {
    font-size: var(--text-lg);
    color: var(--navy);
    margin-bottom: var(--space-2);
    font-weight: var(--weight-semibold);
}

.action-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    transition: all var(--transition-normal);
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
}

.map-section {
    padding: var(--space-12) 0;
    background: var(--bg-light);
}

.map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-4);
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

@media (min-width: 768px) {
    .map-embed iframe {
        min-height: 450px;
    }
}

/* CTA Banner (between sections) */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-banner-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.cta-banner-text h2 {
    font-size: var(--text-3xl);
    color: var(--white);
    margin-bottom: var(--space-2);
    font-weight: var(--weight-extrabold);
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    margin-bottom: 0;
    max-width: 480px;
}

.cta-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

@media (min-width: 480px) {
    .cta-banner-buttons {
        flex-direction: row;
    }
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--text-base);
}

/* CTA Section (legacy about page) */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    padding: var(--space-16) 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-3);
    font-weight: var(--weight-extrabold);
    color: var(--white);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.85;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer CTA */
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-whatsapp-footer:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* Category Grid 2-column */
.category-grid-2col {
    max-width: none;
}

@media (min-width: 480px) {
    .category-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Action Card WhatsApp highlight */
.action-card-whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.04), rgba(37, 211, 102, 0.08));
}

.action-card-whatsapp>i {
    color: var(--whatsapp);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}