
/* ====== ROOT VARIABLES ====== */
:root {
    --blue-dark: #003366;
    --blue-darker: #002F6C;
    --orange: #FF6600;
    --green: #4CAF50;
    --gray-light: #f4f4f4;
    --gray-lighter: #f9f9f9;
    --gray-dark: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --font-family: Arial, sans-serif;
}

/* ====== GLOBAL RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--gray-light);
    color: var(--gray-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style-type: none;
}

button {
    cursor: pointer;
    border: none;
}

/* ====== NAVIGATION ====== */
.navbar {
    background: linear-gradient(to right, #002F6C, #003366); /* two-tone blue */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    flex-wrap: wrap;
}

.nav-left {
    flex: 1;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FF6600;
}

.logo-container {
    flex-shrink: 0;
}

.logo-container img.logo {
    width: 90px;
    height: auto;
    border-radius: 12px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
     .mobile-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
  }

  .mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
  }
    
       .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .logo-container {
        align-self: flex-end;
        margin-top: 10px;
    }
}

/* ====== HEADER ====== */
.header-container {
    background-color: var(--blue-darker);
    padding: 30px 20px;
    text-align: center;
}

.header-text h1,
.header-text p {
    color: var(--white);
}

.header-text h1 {
    font-size: 2em;
}

.header-text p {
    font-size: 1.1em;
}

/* ====== UNIVERSAL BUTTONS ====== */
.btn {
    background-color: var(--blue-dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
}

.btn:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* Green Variant */
.btn-green {
    background-color: var(--green);
}

.btn-green:hover {
    background-color: #45a049;
}

/* Submit Button Special */
button[type="submit"] {
    width: 100%;
    max-width: 250px;
    margin: 20px auto;
    padding: 15px;
    font-size: 18px;
    border-radius: 8px;
    background-color: var(--blue-dark);
    color: white;
    display: block;
    transition: var(--transition);
}

button[type="submit"]:hover {
    background-color: var(--orange);
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-button {
    padding: 10px 20px;
    background-color: #25D366;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* ====== UTILITY CLASSES ====== */
.bg-blue-light { background-color: var(--blue-dark); }
.bg-blue-dark { background-color: var(--blue-darker); }
.text-blue { color: var(--blue-dark); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.shadow { box-shadow: var(--shadow); }
.rounded { border-radius: var(--border-radius); }

html {
    scroll-behavior: smooth;
}

/* ====== BENEFITS SECTION ====== */
.benefits-section {
    text-align: center;
    padding: 40px 20px;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    color: white;
    padding: 20px;
    font-weight: bold;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: scale(1.05);
}

/* Benefit Item Colors */
.benefit-item:nth-child(1) { background-color: var(--orange); }
.benefit-item:nth-child(2) { background-color: var(--green); }
.benefit-item:nth-child(3) { background-color: #4A90E2; }
.benefit-item:nth-child(4) { background-color: var(--blue-dark); }
.benefit-item:nth-child(5) { background-color: #800080; }
.benefit-item:nth-child(6) { background-color: #8B4513; }
.benefit-item:nth-child(7) { background-color: #2E8B57; }
.benefit-item:nth-child(8) { background-color: #2F4F4F; }

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* ====== WHY DIFFERENT SECTION ====== */
.why-different-section {
    text-align: center;
    margin: 40px 0;
}

.why-different-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--blue-dark);
    background-color: var(--gray-light);
    padding: 10px;
    border-radius: var(--border-radius);
}

.description-text {
    background-color: var(--orange);
    color: white;
    padding: 10px;
    font-size: 1.1em;
    margin: 20px 0;
    border-radius: 5px;
}

/* ====== REASONS SECTION ====== */
.reasons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.reason-item {
    padding: 20px;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
}

/* Individual Colors */
.reason-item:nth-child(1) { background-color: var(--orange); }
.reason-item:nth-child(2) { background-color: var(--green); }
.reason-item:nth-child(3) { background-color: var(--blue-dark); }
.reason-item:nth-child(4) { background-color: #800080; }
.reason-item:nth-child(5) { background-color: #8B4513; }

/* Special Light Gray Box */
.reason-item:nth-child(6) {
    background-color: #d3d3d3;
    color: #555;
    font-weight: bold;
    text-shadow: none;
    border: 1px solid #bbb;
}

.reason-item:nth-child(6):hover {
    transform: scale(1.05);
    background-color: #c0c0c0;
}

/* Responsive Reasons */
@media (max-width: 768px) {
    .reasons-container {
        grid-template-columns: 1fr;
    }
}

/* ====== PROPUESTA DE VALOR ====== */
.propuesta-valor-section {
    text-align: center;
    margin: 40px 0;
    color: var(--blue-dark);
}

.propuesta-valor-section h2 {
    padding-top: 20px;
    margin-bottom: 20px;
}

.propuesta-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.propuesta-item {
    padding: 20px;
    color: white !important;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

/* Propuesta Item Colors */
.propuesta-item:nth-child(1) { background-color: var(--orange); }
.propuesta-item:nth-child(2) { background-color: var(--green); }
.propuesta-item:nth-child(3) { background-color: #4A90E2; }
.propuesta-item:nth-child(4) { background-color: var(--blue-dark); }
.propuesta-item:nth-child(5) { background-color: #800080; }
.propuesta-item:nth-child(6) { background-color: #8B4513; }
.propuesta-item:nth-child(7) { background-color: #2F4F4F; }

/* Responsive Propuesta */
@media (max-width: 768px) {
    .propuesta-container {
        grid-template-columns: 1fr;
    }
}

/* ====== SCHEDULE TABLE ====== */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ccc;
    transition: transform 0.3s ease-in-out;
    font-size: 0.9em;
}

.schedule-table th {
    background-color: var(--blue-dark);
    color: var(--white);
    font-weight: bold;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.schedule-table tbody tr:nth-child(odd) {
    background-color: #e6e6e6;
}

.schedule-table tbody td {
    color: var(--gray-dark);
}

.schedule-table tbody td:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.schedule-table tbody td:first-child {
    background-color: var(--orange);
    color: var(--white);
    font-weight: bold;
}

/* Selected Cells */
.schedule-table td.selected {
    background-color: #FF6600;
    color: #000;
    font-weight: bold;
}

.schedule-table td.disabled {
    background-color: #f8d7da;
    color: #721c24;
    pointer-events: none;
    font-weight: bold;
}

/* Selected Cells */
.schedule-table td.selected-box {
    background-color: #FF6600; /* Orange */
    color: white; /* Ensure the text is white for readability */
    font-weight: bold;
    border-radius: 5px;
}

/* ====== SUBSCRIPTION ROWS ====== */
.subscription-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.plan-image {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: white;
    padding: 5px 10px;
    font-size: 0.9em;
    border-radius: 5px;
    z-index: 1;
}

/* Highlighted Plan */
.highlight {
    border: 2px solid var(--orange);
}

/* Subscription Button */
.subscribe-btn {
    background-color: var(--blue-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: var(--transition);
}

.subscribe-btn:hover {
    background-color: var(--orange);
}

/* Plan Button Style */
.plan-button {
    background-color: var(--blue-dark);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
    transition: var(--transition);
}

.plan-button:hover {
    background-color: var(--orange);
}

/* ====== COMPARISON BOXES ====== */
.comparison-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
}

.comparison-box h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

.comparison-box ul {
    list-style: none;
    padding: 0;
}

.comparison-box li {
    margin: 10px 0;
    font-size: 15px;
}

/* Responsive Tables & Plans */
@media (max-width: 768px) {
    .subscription-row {
        flex-direction: column;
    }

    .schedule-table,
    .breadcrumb {
        font-size: 14px;
    }
}

/* ====== REGISTRATION FORM ====== */
.register-section, 
#registration-container {
    background-color: var(--gray-lighter);
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: var(--shadow);
    display: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.register-section.fade-in,
#registration-container.fade-in {
    display: block;
    opacity: 1;
}

.form-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background-color: white;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--blue-dark);
    font-size: 24px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: var(--blue-dark);
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input:focus, select:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0px 0px 5px rgba(255, 102, 0, 0.5);
}

.vehicle-info {
    margin-top: 15px;
}

.vehicle-info h4 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.add-vehicle-button {
    background-color: var(--orange);
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    margin-top: 10px;
    transition: var(--transition);
}

.add-vehicle-button:hover {
    background-color: #cc5500;
}

.vehicle-entry {
    background: #e6e6e6;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.remove-vehicle {
    background-color: #d9534f;
    color: white;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    font-size: 14px;
}

.remove-vehicle:hover {
    background-color: #c9302c;
}

.terms-section {
    text-align: center;
    margin-top: 10px;
}

.terms-section label a {
    color: var(--blue-dark);
    font-weight: bold;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 12px;
    background: var(--blue-dark);
    color: white;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 10px;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--orange);
}

/* Responsive Registration */
@media (max-width: 768px) {
    #registration-container {
        max-width: 90%;
    }
}

/* ====== REWARDS SECTION ====== */
.rewards {
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reward-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.reward-card {
    flex: 1 1 250px;
    max-width: 250px;
    background: var(--gray-lighter);
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.reward-card:hover {
    background-color: #e6f7e6;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.reward-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.reward-info h4 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.reward-info p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #666;
}

.reward-status {
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reward-status.locked {
    background-color: #ccc;
    color: white;
}

.reward-status.unlocked {
    background-color: var(--green);
    color: white;
}

/* ====== DASHBOARD SECTION ====== */
.dashboard-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px;
}


.card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    padding: 20px 20px 30px 20px; /* more bottom padding */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
    margin-bottom: 15px;
    color: #003366;
}

.card p, .card label, .card select, .card button {
    margin-bottom: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.dashboard-section {
    padding-bottom: 30px;
}

.card h3 i {
    margin-right: 10px;
    color: var(--blue-dark);
}

/* Full-width reschedule card */
.card.reschedule-section {
    grid-column: 1 / -1;
}

/* Save Schedule Button */
#save-schedule-btn {
    background-color: var(--blue-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    transition: var(--transition);
}

#save-schedule-btn:hover {
    background-color: #003f7f;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr; /* ✅ Stack vertically on small screens */
  }
}


/* ====== CONTACT STAFF SECTION ====== */
.contact-staff-section {
    text-align: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: var(--gray-lighter);
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.contact-staff-section h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-staff-section p {
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
}

.contact-link {
    color: #007bff;
    font-weight: bold;
    text-decoration: underline;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: none;
}

/* ====== SOCIAL MEDIA BUTTONS ====== */
.social-container {
    text-align: center;
    margin-top: 20px;
}

.social-container p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.social-button.instagram { background-color: #E1306C; }
.social-button.facebook { background-color: #4267B2; }
.social-button.twitter { background-color: #1DA1F2; }

.social-button:hover {
    opacity: 0.8;
}

/* ====== STEPS SECTION ====== */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step-box {
    flex: 1 1 200px;
    max-width: 250px;
    min-width: 200px;
    height: 250px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 80px;
}

.step-icon {
    font-size: 2em;
    color: var(--orange);
}

.step-box h3 {
    font-size: 1.1em;
    color: var(--blue-dark);
    margin: 0;
    min-height: 50px;
}

.step-box p {
    font-size: 0.95em;
    color: #555;
    margin: 0;
    min-height: 50px;
}

/* ====== GENERAL SECTION CONTAINERS ====== */
.section-container {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--blue-dark);
    border-bottom: 3px solid var(--orange);
    display: inline-block;
    padding-bottom: 10px;
}

/* Background colors for specific sections */
.section-light { background-color: var(--white); }

.section-dark {
    background-color: var(--blue-dark);
    color: var(--white);
}

.section-dark p,
.section-dark h3 {
    color: var(--white);
}

/* Separator Line */
hr.separator {
    border: none;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--blue-dark));
    margin: 40px 0;
}

/* ====== REFERRAL & STATUS ====== */
.referral-code {
    display: flex;
    align-items: center;
    background-color: var(--gray-lighter);
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    color: #333;
}

.referral-code button {
    background-color: var(--orange);
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    transition: var(--transition);
}

.referral-code button:hover {
    background-color: #e55b00;
}

.referral-status {
    background-color: #e6f7e6;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
}

.rewards-row {
    display: flex;
    flex-wrap: wrap; /* Responsive */
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.reward-card {
    flex: 1 1 250px; /* All cards same width */
    max-width: 300px;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
}

.reward-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.reward-title {
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;
}

.reward-desc {
    font-size: 0.9em;
    color: #666;
}

.reward-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.reward-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-card:hover {
    background-color: #e6f7e6;
}

.reward-status.locked {
    background-color: #ccc;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
}

.reward-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.reward-info p {
    font-size: 14px;
    color: #777;
}

.dashboard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.dashboard-box {
    flex: 1 1 calc(50% - 20px); /* 2 per row, minus gap */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 300px; /* prevent too small */
    max-width: 500px;
}

/* Optional: for smaller screens */
@media (max-width: 768px) {
    .dashboard-box {
        flex: 1 1 100%;
    }
}

.subscription-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.plan-item {
    width: 320px;
    min-height: 750px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    position: relative;
}

.plan-option {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.plan-benefits {
    flex-grow: 1;
}
button.plan-button {
    margin-top: auto;
}

.plan-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

.logout-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #ff6600;
    color: white;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.orange-action-button {
    padding: 10px 15px;
    background-color: #ff6600;
    color: white;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.orange-action-button:hover {
    background-color: #cc5500;
}

/* Standard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Force two-column layout for mobile */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep two columns on mobile */
    }
    .dashboard-section {
        padding: 0 10px;
    }
    .card {
        margin: 5px;
        padding: 15px;
    }
    .reschedule-section, .rewards, .loyalty-card {
        padding: 15px;
    }
    .reward-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .reward-info h4 {
        font-size: 16px;
    }
}

/* Fix Logout + Navbar buttons alignment */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.navbar .orange-button {
    margin-top: 10px;
}

/* Optional: Fix reschedule spacing */
.reschedule-section p {
    margin-bottom: 3px;
    line-height: 1.3;
}

button, .orange-button, .register-button, .floating-contact-button, .btn-primary, input[type="submit"] {
    background-color: #003366; /* Default blue */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

button:hover, .orange-button:hover, .register-button:hover, .floating-contact-button:hover, .btn-primary:hover, input[type="submit"]:hover {
    background-color: #ff6600; /* Orange on hover */
    transform: scale(1.05); /* Zoom effect */
}

.register-promo-container {
    background-color: #f0f8ff; /* Soft light blue */
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    margin: 40px auto;
    text-align: center;
    max-width: 700px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

.register-promo-text {
    font-size: 1.1em;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.6;
}

.register-promo-button {
    background-color: #ff6600;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.register-promo-button:hover {
    background-color: #cc5500;
    transform: scale(1.05);
}

.register-promo-container {
    text-align: center;
    margin-top: 30px;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #007bff;
    padding: 10px 15px;
    border-radius: 8px;
}

.styled-list i {
    color: #007bff;
    font-size: 1.5em;
    margin-top: 2px;
}

.styled-list strong {
    color: #003366;
    font-size: 1.05em;
    line-height: 1.4;
}

.nested-list {
    list-style: none;
    margin: 0;
    padding-left: 25px; /* Indent all subpoints equally */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between subitems */
}

.nested-list li {
    position: relative;
    font-size: 1em;
    color: #555;
}

.nested-list li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FF6600;
    margin-right: 8px;
    position: absolute;
    left: -20px; /* Align all icons in same vertical line */
}

/* General styling for schedule section */
.schedule-section {
    padding: 20px;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.schedule-section h2 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.schedule-section p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Styling for the schedule table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.schedule-table th {
    background-color: #003366;
    color: white;
}

.schedule-table td:first-child {
    background-color: #FF6600;
    color: white;
    font-weight: bold;
}

.schedule-table tr:nth-child(even) td:not(:first-child) {
    background-color: #f2f2f2;
}

/* Responsive design */
@media (max-width: 768px) {
    .schedule-table th,
    .schedule-table td {
        padding: 8px;
        font-size: 0.9em;
    }
}

.header-text strong {
    color: #FFCC00; /* Amarillo */
}

/* ====== FLOATING CONTACT BUTTON ====== */
.floating-contact-button {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background-color: #ff6600 !important;
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  width: auto !important;
  max-width: 260px !important;
  cursor: pointer !important;
}

.floating-contact-button i {
  font-size: 16px !important;
}

/* ====== INSTALL BANNER FOR iOS ====== */
/* Install Banner - AutoCuidado Club */
#install-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ff6600;
  color: white;
  padding: 18px 10px;
  font-size: 18px;
  text-align: center;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

#install-banner strong {
  font-weight: bold;
  text-decoration: underline;
}

#close-banner {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


#install-banner button {
    background: var(--white);
    color: var(--blue-dark);
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 15px;
  }
}

.form-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.form-container h2 {
    text-align: center;
    color: var(--blue-dark);
    font-size: 24px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.login-section {
  transition: opacity 0.4s ease;
}

header {
    background-color: #002b5c; /* Dark blue for branding */
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.header-text h1 {
    font-size: 2rem;
    margin: 0;
}

.header-text p {
    font-size: 1.2rem;
    margin-top: 5px;
}

.header-text {
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 1.8rem;
    }

    .header-text p {
        font-size: 1rem;
    }
}

/* ================= SUBSCRIPTION TABLE STYLES ================= */
.subscription-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.subscription-table th, .subscription-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.subscription-table th {
    background: var(--orange);
    color: white;
    font-weight: bold;
}

.highlight-cell {
    font-weight: bold;
    color: var(--orange);
}

.warning-text {
    color: red;
    font-weight: bold;
}

.benefits-list {
    background: var(--gray-lighter);
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

/* ================= DISCOUNT BADGE & PRICE ================= */
.discount-badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: var(--orange);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.discounted-price {
    color: var(--orange);
    font-weight: bold;
    font-size: 1.2em;
}

/* ================= LIMITED-TIME MESSAGE ================= */
.limited-time {
    color: var(--orange);
    font-size: 0.95em;
    font-style: italic;
    margin-top: 10px;
}

/* ====== REGRESAR BUTTON FOR TERMS PAGE ====== */
.button-container {
    text-align: center;
    margin-top: 30px;
}

.regresar-button {
    background-color: var(--blue-dark);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.regresar-button:hover {
    background-color: var(--blue-darker);
}

.centered-value-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background-color: var(--gray-lighter);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.centered-value-section h2 {
    color: var(--blue-dark);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.centered-value-section p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.centered-value-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.centered-value-section ul li {
    font-size: 1.1em;
    margin: 10px 0;
    color: var(--green);
    font-weight: bold;
}

/* Reduce spacing in tab content section */
.tab-content ul {
    padding-left: 20px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.4;
}

.tab-content li {
    margin-bottom: 6px;
    font-size: 1em;
}

.nested-list {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 20px;
    list-style-type: disc;
}

.tab-content strong {
    font-weight: 600;
}

.tab-content i {
    margin-right: 6px;
    color: #007bff;
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
}

.styled-list, .nested-list {
    max-width: 850px;
    margin: 0 auto;
}

.bullet-subpoints {
    list-style: none;
    padding-left: 0;
    margin-top: 5px;
}

.bullet-subpoints li {
    font-size: 0.95em;
    color: #444;
    margin: 4px 0;
    position: relative;
    padding-left: 20px;
}

.bullet-subpoints li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.styled-box {
    background-color: #f9f9f9;
    border-left: 5px solid #339CFF; /* Light blue border */
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 850px;
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Centrado de textos en secciones */
.section-container {
  text-align: center;
}

/* Asegura que los párrafos y listas también se centren */
.section-container p,
.section-container ul,
.section-container ol,
.section-container h3 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 800px;
}

/* Opcional: centra botones de pestañas de revisión */
.inspection-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}


/* Opcional: mejora la separación de contenido */
#inspection-content {
  margin-top: 10px;
}

    /* Install Button Styling */
    #install-button {
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        display: none;  /* Initially hidden */
    }

    #install-button:hover {
        background-color: #0056b3;
    }

    /* iOS Banner Styling */
    #ios-message {
        background-color: #f7f7f7;
        border: 1px solid #ccc;
        padding: 10px;
        font-size: 14px;
        color: #333;
    }

/* Flexbox layout for the image container */
.image-container {
  display: flex;
  justify-content: space-between; /* Space between images */
  gap: 20px; /* Add space between the images */
  margin-top: 20px;
}

.schedule-confirmation {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--orange);
    text-align: center;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}

.dashboard-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

.dashboard-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .dashboard-card {
    width: 48%;
  }
}

.dashboard-card h3 {
  margin-top: 0;
  font-size: 16px;
  color: #0a2442;
}

.dashboard-card p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.btn, button {
  background-color: #ff5c00;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  width: 100%;
}

.btn:hover {
  background-color: #e04e00;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal overflow */
}

  html {
    scroll-padding-top: 140px;
  }

.main-wrapper, .dashboard-container, .dashboard-grid {
  box-sizing: border-box;
  width: 100vw;
  max-width: 100%;
}


section, .pricing-table, .info-block {
  padding: 24px 16px;
  margin-bottom: 20px;
}

h2, h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

#smart-install-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ff9800;
  color: white;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  z-index: 999;
}
#smart-install-banner button {
  margin-left: 10px;
  border-radius: 5px;
  padding: 8px 12px;
}
#how-to-install-btn {
  background: white;
  color: #ff9800;
  font-weight: bold;
  border: none;
}
#smart-install-banner button:last-of-type {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.floating-contact-button.left-button {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.floating-contact-button.left-button:hover {
  background-color: #003893;
  color: #fff;
}

/* ====== GLOBAL CTA INSTALL MENU ====== */
#cta-install-bar {
  position: fixed;
  bottom: 100px; /* Just above Contactar Staff */
  right: 20px;
  background: #ff9800;
  color: white;
  padding: 14px 18px;
  font-size: 14px;
  z-index: 9500;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  border-radius: 16px;
  width: 280px;
  max-width: 90%;

    #reopen-cta-btn {
  z-index: 9600;
}


  /* 💥 Important fix to remove centering from any inherited flex or grid */
  margin: 0 !important;
  left: auto !important;
  transform: none !important;
  display: block !important;
  text-align: left !important;

  /* 💣 Remove any unintended flex container behavior */
  align-self: auto !important;
  justify-self: auto !important;
}

.cta-message {
  font-size: 13px;
  margin-bottom: 10px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-buttons button,
.cta-buttons a {
  background: white;
  color: #ff6600;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
  text-align: center;
  font-size: 14px;
}

.cta-buttons button:hover,
.cta-buttons a:hover {
  background: #003893;
  color: white;
}


.cta-buttons .close-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  flex: 1 1 100%;
}

/* ✅ Prevent invisible CTA from blocking clicks */
#cta-install-bar[style*="display: none"] {
  pointer-events: none !important;
  visibility: hidden !important;
}

#rotate-device-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ff6600;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.button-spaced {
    margin-top: 12px;
}



