/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px; /* Base for mobile */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ===== VARIABLES ===== */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-dark: #000000;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-light: #6c757d;
    --gold: #b7935a;
    --gold-light: #e5d2b5;
    --gold-dark: #9a7b4a;
    --gold-gradient: linear-gradient(135deg, #b7935a 0%, #d4af37 100%);
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 12px rgba(183, 147, 90, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    
    /* Container - Mobile First */
    --container-padding: 1rem;
    --container-max-width: 100%;
}

/* Tablet and up */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --container-max-width: 720px;
    }
    html {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    :root {
        --container-max-width: 960px;
    }
    html {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    :root {
        --container-max-width: 1140px;
    }
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
.gold {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(183, 147, 90, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .section-description {
        font-size: 1.1rem;
    }
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn .arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(183, 147, 90, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--bg-dark);
}

.btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ===== HEADER ===== */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.sticky-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.nav-links {
    display: none;
}

.header-actions {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    .nav-links a {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 0.95rem;
        transition: var(--transition-fast);
        position: relative;
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold);
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold-gradient);
        transition: width var(--transition-base);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }
    .header-actions {
        display: flex;
        gap: 0.75rem;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 90;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta .container {
    display: flex;
    gap: 0.75rem;
    padding: 0;
}

.sticky-mobile-cta .btn {
    flex: 2;
    margin: 0;
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
}

.whatsapp-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.6rem 0.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.whatsapp-btn svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .sticky-mobile-cta {
        display: none;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== HERO SECTION - MOBILE FIRST ===== */
.hero {
    position: relative;
    padding: 2rem 0 3rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    min-height: auto;
}

.hero-gradient-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(183, 147, 90, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(183, 147, 90, 0.1);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-cta .btn {
    width: 100%;
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.trust-badge-row span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    background: rgba(255,255,255,0.05);
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

.hero-contact span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .hero-stats {
        gap: 0.75rem;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    .hero-cta .btn {
        width: auto;
    }
    .hero-contact {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        background: transparent;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
    padding: 1.5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-by-text {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: var(--transition-base);
    padding: 0.25rem 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .trusted-by {
        padding: 2rem 0;
    }
    .trusted-by-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .trusted-logos {
        gap: 2rem;
    }
    .logo-placeholder {
        font-size: 1rem;
        background: transparent;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features {
        padding: 4rem 0;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .feature-card {
        padding: 2rem;
    }
    .feature-icon {
        font-size: 2.5rem;
    }
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* ===== CHANNEL PREVIEW ===== */
.channel-preview {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.channel-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0 1.5rem;
}

.highlight-item {
    text-align: center;
    background: var(--bg-primary);
    padding: 0.75rem 0.25rem;
    border-radius: var(--radius-md);
}

.highlight-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    padding: 1.25rem 1rem;
    color: white;
}

.category-header.sports {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.category-header.movies {
    background: linear-gradient(135deg, #373b44 0%, #4286f4 100%);
}

.category-header.kids {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.category-header.international {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.category-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: white;
}

.channel-count {
    font-size: 0.75rem;
    opacity: 0.9;
}

.category-channels {
    list-style: none;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.category-channels li {
    padding: 0.25rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-link {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.category-link:hover {
    background: var(--gold);
    color: white;
}

.channel-cta {
    text-align: center;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .channel-highlights {
        grid-template-columns: repeat(6, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .channel-preview {
        padding: 4rem 0;
    }
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .highlight-number {
        font-size: 1.5rem;
    }
    .highlight-label {
        font-size: 0.75rem;
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 3rem 0;
}

.discount-note {
    display: block;
    margin-top: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.popular-badge {
    position: absolute;
    top: 0.75rem;
    right: -2rem;
    background: var(--gold-gradient);
    color: white;
    padding: 0.25rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: white;
}

.price-box {
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through red;
    margin-right: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.period {
    font-size: 0.8rem;
    color: var(--text-light);
}

.savings {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.pricing-guarantee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing {
        padding: 4rem 0;
    }
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .pricing-card {
        padding: 1.5rem;
    }
    .pricing-guarantee {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: white;
}

.author-title {
    font-size: 0.7rem;
    color: var(--text-light);
}

.verified-badge {
    font-size: 0.65rem;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 3rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: left;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question .arrow {
    transition: transform var(--transition-base);
    color: var(--gold);
    font-size: 0.75rem;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.faq-cta-banner {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.faq-cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.faq-cta-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.faq-cta-content .btn {
    background: white;
    color: var(--gold);
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

@media (min-width: 768px) {
    .faq-cta-banner {
        padding: 2rem;
    }
    .faq-cta-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-secondary);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -0.35rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-about p {
    margin: 0.75rem 0;
    line-height: 1.5;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-logo {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 3px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    word-break: break-word;
}

.footer-contact ul li span {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.copyright p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-seo {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.65rem;
    color: #444;
    text-align: center;
    line-height: 1.4;
}

.footer-seo strong {
    color: #666;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===== ACCESSIBILITY ===== */
:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== ANIMATION CLASSES ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Fixes */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ffffff; /* Change from #333 to white */
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* /* Mobile Navigation - FIXED */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #0a0a0a;
    box-shadow: 2px 0 20px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 80px 20px 30px;
    display: block !important; /* Force display */
    visibility: visible !important; /* Force visibility */
}

.mobile-nav.active {
    left: 0 !important; /* Force position */
}

/* Mobile Navigation Content */
.mobile-nav-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-links a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.mobile-nav-links a.active {
    color: #b7935a;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-nav-actions .btn {
    color: white;
    text-align: center;
    padding: 12px !important;
}

.mobile-nav-actions .btn-outline {
    border-color: #b7935a;
    color: #b7935a;
}

.mobile-nav-actions .btn-primary {
    background: #b7935a;
    color: white;
}

.mobile-nav-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-contact .contact-item {
    display: block;
    padding: 8px 0;
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
}

/* Overlay when menu is open */
.mobile-nav.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/* Show mobile menu on small screens */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-links,
    .header-actions {
        display: none !important;
    }
    
    /* Fix body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Sticky Mobile CTA - make sure it's at bottom */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta .container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sticky-mobile-cta .btn {
    flex: 1;
    max-width: 200px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}