/* ==================== VARIABLES ==================== */
:root {
    --primary-blue: #0066FF;
    --purple-start: #6B3FFF;
    --purple-mid: #9F3FFF;
    --pink: #FF3F93;
    --eco-green: #00CC66;
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #1a1a1a;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.6);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==================== LOADING SCREEN ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 320px !important;
    max-width: 90vw;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 8px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 100px !important;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    justify-content: flex-start;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-link.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
}

.page-section {
    display: none;
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== GRADIENT TEXT ==================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-mid), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== HERO SECTION ==================== */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

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

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.eco-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--eco-green), #00ff88);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    background: var(--bg-card);
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 22px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-full {
    width: 100%;
    display: block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 63, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    background: var(--bg-card-hover);
}

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

.btn-outline:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.1);
}

.btn-premium {
    background: linear-gradient(135deg, var(--pink), var(--purple-mid));
    color: white;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 63, 147, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 18px;
    padding: 18px 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 24px;
}

.btn-block {
    width: 100%;
}

.btn-share {
    background: linear-gradient(135deg, var(--eco-green), #00ff88);
    color: var(--bg-dark);
    border: none;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 204, 102, 0.4);
}

/* ==================== FLOATING CARD ==================== */
.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 32px;
}

.card-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.card-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.step-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.step-icon {
    font-size: 44px;
    margin: 18px 0;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

/* ==================== REQUIREMENTS NOTICE ==================== */
.requirements-notice {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(107, 63, 255, 0.1));
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.notice-icon {
    font-size: 44px;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.notice-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

.notice-content strong {
    color: var(--primary-blue);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

/* ==================== SERVICE AREA ==================== */
.service-area {
    text-align: center;
}

.location-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 25px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.location-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.location-card p {
    color: var(--text-secondary);
}

/* ==================== SHARE CTA ==================== */
.share-cta {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
}

.share-cta p {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

/* ==================== PRICING SECTION ==================== */
.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-toggle {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 14px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    border-color: transparent;
}

.badge {
    background: var(--eco-green);
    color: var(--bg-dark);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
}

.pricing-container {
    display: none;
}

.pricing-container.active {
    display: block;
}

/* ==================== PACKAGE SPOTLIGHT ==================== */
.package-spotlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(107, 63, 255, 0.05));
    border: 2px solid var(--primary-blue);
    border-radius: 24px;
    padding: 35px 25px;
    margin-bottom: 40px;
}

.spotlight-header {
    text-align: center;
    margin-bottom: 25px;
}

.spotlight-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.spotlight-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.spotlight-price .currency {
    font-size: 28px;
    font-weight: 600;
}

.spotlight-price .amount {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.spotlight-price .note {
    font-size: 16px;
    color: var(--text-secondary);
}

.spotlight-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.spotlight-intro strong {
    color: var(--primary-blue);
    font-size: 18px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 22px;
}

.process-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

.whats-included {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.whats-included h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.whats-included ul {
    list-style: none;
    margin-bottom: 15px;
}

.whats-included li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.whats-included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--eco-green);
    font-weight: bold;
}

.warning-note {
    color: var(--pink);
    font-weight: 600;
    font-size: 14px;
}

/* ==================== ADD-ONS SECTION ==================== */
.addons-section {
    margin-bottom: 40px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 35px;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.addon-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

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

.addon-card.featured {
    border-color: var(--purple-start);
}

.addon-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.addon-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.addon-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.addon-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 14px;
}

.addon-benefits {
    list-style: none;
    margin-bottom: 18px;
}

.addon-benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.addon-cta {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
}

.addon-cta a {
    color: var(--pink);
    text-decoration: none;
}

.addon-cta a:hover {
    text-decoration: underline;
}

.trailer-types {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.trailer-type {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
}

.trailer-type strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.trailer-type p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== SPECIALTY SECTION ==================== */
.specialty-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 25px;
}

.specialty-intro {
    text-align: center;
    margin-bottom: 30px;
}

.specialty-intro p {
    font-size: 16px;
    color: var(--text-secondary);
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
}

.specialty-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.specialty-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.specialty-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.specialty-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

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

.specialty-cta p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== SUBSCRIPTION PLANS ==================== */
.subscription-intro {
    text-align: center;
    margin-bottom: 40px;
}

.subscription-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subscription-intro p {
    font-size: 16px;
    color: var(--text-secondary);
}

.tier-section {
    margin-bottom: 40px;
}

.tier-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.premium-tier .tier-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(107, 63, 255, 0.05));
}

.price-card.premium {
    border-color: var(--pink);
    background: linear-gradient(135deg, rgba(255, 63, 147, 0.05), rgba(159, 63, 255, 0.05));
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 22px;
    font-weight: 600;
}

.amount {
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
}

.price-note {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 8px;
}

.savings {
    background: var(--eco-green);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.features-list li:last-child {
    border-bottom: none;
}

.value-callout {
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid var(--eco-green);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.value-callout strong {
    color: var(--eco-green);
    font-size: 16px;
}

.subscription-notes {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.subscription-notes p {
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.subscription-notes a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.subscription-notes a:hover {
    text-decoration: underline;
}

/* ==================== GET QUOTE SECTION ==================== */
.quote-header {
    text-align: center;
    margin-bottom: 35px;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    border: 2px solid #25D366;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.quote-hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.quote-hero p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.quote-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.quote-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.quote-checklist {
    list-style: none;
}

.quote-checklist li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.quote-benefits {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.quote-benefits h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-item .benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.quote-alternative {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.quote-alternative h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.quote-alternative p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.quote-alternative a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.quote-alternative a:hover {
    text-decoration: underline;
}

/* ==================== PAYMENT SECTION ==================== */
.payment-header {
    text-align: center;
    margin-bottom: 35px;
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 35px;
}

.payment-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.payment-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
}

.payment-icon.venmo {
    background: linear-gradient(135deg, #3D95CE, #008CFF);
}

.payment-icon.cashapp {
    background: linear-gradient(135deg, #00D632, #00C853);
}

.payment-icon.stripe {
    background: linear-gradient(135deg, #635BFF, #5433FF);
}

.payment-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.payment-card p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 14px;
}

.payment-note {
    font-size: 13px;
    font-style: italic;
}

.qr-placeholder {
    margin: 18px 0;
}

.payment-username {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 18px 0;
}

.payment-instruction {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.payment-instruction strong {
    color: var(--primary-blue);
    font-size: 16px;
}

.payment-help-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    padding: 10px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-blue);
}

.payment-help-text strong {
    color: var(--primary-blue);
}

.payment-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 10px 0;
    padding-left: 22px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.info-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 22px;
}

.payment-share-section {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.payment-share-section h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

/* ==================== SOCIAL LINKS ==================== */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 22px 0;
}

.social-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 11px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-btn.tiktok:hover {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.3);
}

.social-btn.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.social-btn i {
    font-size: 18px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 35px 18px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 110px !important;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-subtitle {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 14px;
}

.footer-contact {
    margin: 18px 0;
}

.footer-contact p {
    margin: 8px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-powered {
    margin: 18px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-powered a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer-powered a:hover {
    text-decoration: underline;
}

.footer-eco {
    color: var(--eco-green);
    font-weight: 600;
    font-size: 12px;
    margin-top: 14px;
}

/* ==================== NOTIFICATION ==================== */
.notification {
    position: fixed;
    bottom: -100px;
    left: 18px;
    right: 18px;
    background: var(--bg-card);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: bottom 0.5s ease;
    font-size: 14px;
}

.notification.show {
    bottom: 20px;
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
    .hero-title {
        font-size: 44px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .requirements-notice {
        flex-direction: row;
        text-align: left;
    }

    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-logo {
        height: 90px !important;
    }
    
    .nav-links {
        gap: 8px;
        overflow-x: visible;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 16px;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-cta {
        flex-direction: row;
        gap: 14px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-toggle {
        flex-direction: row;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialty-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .notification {
        max-width: 420px;
        left: auto;
        right: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-btn.youtube:hover {
    border-color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

    .video-gallery-section .section-title {
        font-size: 28px;
    }
}

    .video-gallery-section .section-title {
        font-size: 28px;
    }
    
    .video-gallery-section .section-subtitle {
        font-size: 16px;
    }
}

    .video-gallery-section .section-title {
        font-size: 24px;
    }
    
    .video-gallery-section .section-subtitle {
        font-size: 14px;
    }
}

/* ==================== VIDEO GALLERY SECTION - SMALLER COMPACT ==================== */
.video-gallery-section {
    margin: 20px 0;
}

.video-gallery-section .section-title {
    font-size: 18px;
    margin-bottom: 8px;
    text-align: center;
}

.video-gallery-section .section-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.video-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow);
}

.video-card.placeholder {
    opacity: 0.6;
}

/* Video wrapper - MUCH SMALLER */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-dark);
    margin-bottom: 10px;
    cursor: pointer;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Fullscreen video on click */
.video-wrapper.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    border-radius: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.98);
    margin: 0;
}

.video-wrapper.fullscreen iframe {
    border-radius: 0;
}

/* Placeholder styling */
.video-placeholder {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
    border: 2px solid var(--border-color);
    border-radius: 10px;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-start));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5);
}

.video-placeholder p {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 0 5px;
}

.video-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-primary);
    text-align: center;
}

.video-description {
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

.video-cta {
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
}

.video-cta p {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.video-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 10px 18px;
}

.video-cta .btn i {
    font-size: 14px;
}

/* Tablet and Desktop */
@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .video-gallery-section .section-title {
        font-size: 22px;
    }
    
    .video-gallery-section .section-subtitle {
        font-size: 14px;
    }
    
    .video-card h4 {
        font-size: 16px;
    }
    
    .video-description {
        font-size: 13px;
    }
}

/* Video CTA - Full Width */
.video-cta {
    grid-column: 1 / -1; /* Span all columns */
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
}

/* RV Pricing Tiers in Specialty Section */
.specialty-card.rv-pricing {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(159, 63, 255, 0.1));
    border: 2px solid var(--primary-blue);
}

.rv-price-tiers {
    margin: 15px 0;
}

.rv-tier {
    font-size: 13px;
    color: var(--text-primary);
    margin: 6px 0;
    padding: 6px 10px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
}

.rv-tier strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.rv-includes {
    font-size: 11px;
    color: var(--eco-green);
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 204, 102, 0.3);
}

@media (max-width: 768px) {
    .rv-tier {
        font-size: 12px;
    }
}
