/* AC Rental CMS – Public Site Styles */
:root {
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --accent-light: #38bdf8;
    --accent-glow: rgba(14, 165, 233, 0.25);
    --bg-dark: #0f172a;
    --bg-dark-2: #1e293b;
    --bg-dark-3: #334155;
    --bg-card: rgba(30, 41, 59, 0.8);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(148, 163, 184, 0.1);
    --success: #22c55e;
    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--accent-light);
}

::selection {
    background: var(--accent);
    color: white;
}

.btn-accent {
    background: var(--gradient-1);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    color: white;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

#mainNav {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    z-index: 1050;
}

#mainNav .navbar-brand {
    font-size: 1.3rem;
    color: white;
    padding: 0;
}

.navbar-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

#mainNav .navbar-brand i {
    color: var(--accent);
}

#mainNav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

#mainNav .nav-link:hover {
    color: white;
    background: rgba(14, 165, 233, 0.1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    height: 450px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
    color: var(--accent);
}

.card-1 {
    top: 15%;
    left: 10%;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(14, 165, 233, 0.15);
    animation: spin-slow 20s linear infinite;
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(139, 92, 246, 0.1);
    animation-direction: reverse;
}

@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.features-section {
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--accent);
}

.feature-card h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-feature {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), var(--bg-card));
}

.highlight-feature .feature-icon {
    background: var(--accent);
    color: white;
}

.section-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.ac-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s;
}

.ac-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.ac-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-dark-2);
}

.ac-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.ac-card:hover .ac-card-image img {
    transform: scale(1.05);
}

.ac-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-dark-3));
}

.ac-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.ac-card-body {
    padding: 20px;
}

.ac-card-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.ac-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.ac-card-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ac-tag {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.how-it-works {
    background: var(--bg-dark-2);
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
    font-size: 1.6rem;
    color: var(--accent);
}

.step-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-section {
    background: var(--gradient-1);
    padding: 60px 0;
}

/* Model Detail */
.model-hero {
    background: var(--gradient-2);
    padding-top: 100px;
    border-bottom: 1px solid var(--border-color);
}

.model-image-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.model-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.model-image-placeholder {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-dark-3));
}

.model-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.model-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.model-feature {
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* Pricing */
.pricing-section {
    background: var(--bg-dark);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow);
}

.pricing-card-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), var(--bg-card));
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.duration-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.duration-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-amount {
    margin-bottom: 24px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: super;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-details {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.pricing-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.pricing-details i {
    color: var(--success);
}

.pricing-upfront {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 8px;
}

.upfront-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.upfront-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
}

.upfront-breakdown {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Plan label badge (1 Ton / 1.5 Ton / 2 Ton) */
.plan-label-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.12);
    color: var(--accent-light);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    padding: 4px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ── Bumper Offer Section ─────────────────────────────────── */
.bumper-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a1040 100%);
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.bumper-badge {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.pricing-card-bumper {
    background: linear-gradient(160deg, rgba(251, 191, 36, 0.06), var(--bg-card));
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
}

.pricing-card-bumper:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.7);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
}

.bumper-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a1a;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.bumper-label {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
}

.bumper-saving-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.bumper-upfront {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 8px;
}

.bumper-upfront .upfront-amount {
    color: #fbbf24;
}

.bumper-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a1a;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.bumper-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.45);
    color: #1a1a1a;
}

/* Bumper callout box in model hero */
.bumper-callout {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.bumper-callout i {
    color: #fbbf24;
}

/* Feature card small text – more visible than text-muted */
.feature-small {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

/* Modal */
.modal-custom {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.modal-custom .modal-header {
    padding: 24px 28px 8px;
}

.modal-custom .modal-body {
    padding: 20px 28px 28px;
}

.text-accent {
    color: var(--accent) !important;
}

.modal-custom .form-control,
.modal-custom .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.modal-custom .form-control:focus,
.modal-custom .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-dark);
    color: var(--text-primary);
}

.modal-custom .input-group-text {
    background: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.modal-custom .form-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Thank You */
.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    padding-top: 80px;
}

.thankyou-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
}

.thankyou-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
    animation: scale-in 0.6s ease;
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.thankyou-message {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.thankyou-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--accent);
}

/* Error Page */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    padding-top: 80px;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state {
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Map Section */
.map-section { background: var(--bg-dark-2); border-top: 1px solid var(--border-color); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); position: relative; height: 100%; min-height: 480px; }
.map-click-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; cursor: pointer; background: transparent; }
.map-container iframe { width: 100%; height: 100%; min-height: 480px; display: block; filter: none !important; }
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 40px; height: 100%; display: flex; flex-direction: column; }

.info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    width: 44px;
    height: 44px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-row h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.info-row p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer */
.footer-section {
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 24px;
}

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.text-light-muted {
    color: var(--text-muted) !important;
}

/* Forms */
.form-control,
.form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-dark);
    color: var(--text-primary);
}

.input-group-text {
    background: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .model-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
}