/* ============================================
   SCREEN OTT - CUSTOM STYLES
   Dark + Gold Theme
   ============================================ */

:root {
    --dark-bg: #1a2947;
    --dark-card: #2d3e5f;
    --gold: #d4af37;
    --gold-hover: #e5c158;
    --text-light: #f5f5f5;
    --text-muted: #b0b8c8;
}

/* ============================================
   GENERAL
   ============================================ */

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

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #253347 100%);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-custom {
    background: rgba(26, 41, 71, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--gold-hover) !important;
    transform: scale(1.05);
}

.logo img {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 1px solid var(--gold) !important;
}

.navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(38%) saturate(1411%) hue-rotate(2deg) brightness(104%) contrast(106%);
}

.nav-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--dark-bg);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: var(--dark-bg);
}

.btn-gold-outline {
    background: var(--dark-card);
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.swiper.heroSwiper {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 41, 71, 0.6) 0%, rgba(212, 175, 55, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 8px rgba(0, 0, 0, 0.95),
        0 6px 12px rgba(0, 0, 0, 0.9),
        0 8px 16px rgba(0, 0, 0, 0.85),
        1px 1px 2px rgba(0, 0, 0, 1),
        -1px -1px 2px rgba(0, 0, 0, 1);
    line-height: 1.4;
    letter-spacing: 0.5px;
    border: 2px solid var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    display: inline-block;
}

.hero-slide .btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

.swiper-pagination {
    bottom: 30px;
}

.swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.badge-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.badge-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   STATS
   ============================================ */

.section-stats {
    background: linear-gradient(135deg, rgba(45, 62, 95, 0.3) 0%, transparent 100%);
}

.stat-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-24 {
    font-size: 2.2rem;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 3rem;
}

.section-features {
    background: linear-gradient(135deg, rgba(45, 62, 95, 0.3) 0%, transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-pricing {
    background: transparent;
}

.section-faq {
    background: linear-gradient(135deg, rgba(45, 62, 95, 0.3) 0%, transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ============================================
   FEATURES
   ============================================ */

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.pricing-featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.pricing-card.pricing-featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.pricing-badge,
.trial-badge,
.savings-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-badge {
    background: var(--gold);
    color: var(--dark-bg);
}

.trial-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.savings-badge {
    background: #ef4444;
    color: white;
    top: 15px;
    right: 15px;
}

.pricing-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price-original {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.price-original s {
    text-decoration: line-through;
}

.price {
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: bold;
    margin: 0.5rem 0 1rem 0;
}

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

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-card .btn {
    margin-top: auto;
}

/* ============================================
   FAQ & ACCORDION
   ============================================ */

.accordion-custom .accordion-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.accordion-custom .accordion-button {
    background: var(--dark-card);
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-hover);
}

.accordion-custom .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
    background: rgba(212, 175, 55, 0.02);
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
}

/* ============================================
   FORM CONTROLS
   ============================================ */

.form-control-custom {
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: var(--dark-bg);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control-custom::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.section-how-it-works {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
}

.step-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 1.3rem;
}

.step-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.step-card h3 {
    color: var(--gold);
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.how-it-works-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.how-it-works-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.how-it-works-image:hover img {
    transform: scale(1.05);
}

.rounded-lg {
    border-radius: 15px;
}

/* ============================================
   GALLERY
   ============================================ */

.section-gallery {
    background: linear-gradient(135deg, rgba(45, 62, 95, 0.3) 0%, transparent 100%);
}

.swiper.contentSwiper {
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 1.2rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    background: rgba(10, 14, 39, 0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold-hover);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.section-about {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
}

.about-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.about-card h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-card p strong {
    color: var(--gold);
}

.why-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.number-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.number-card:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.number-value {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promise-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.02);
    border-left: 4px solid var(--gold);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.promise-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.promise-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--dark-bg);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.promise-item h5 {
    color: var(--gold);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.promise-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.section-contact {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
}

.contact-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-card h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.contact-item h5 {
    color: var(--gold);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.contact-item .btn {
    margin-top: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.section-testimonials {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
}

.swiper.testimonialsSwiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--dark-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   TRIAL DRAWER
   ============================================ */

.trial-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--dark-card);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.trial-drawer.active {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.trial-drawer.active ~ .drawer-overlay,
.trial-drawer.active + .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

.drawer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.drawer-header {
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h4 {
    color: var(--gold);
    margin: 0;
    font-weight: 600;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    color: var(--gold-hover);
}

.drawer-body {
    overflow-y: auto;
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

.form-control-custom {
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 5px;
}

.form-control-custom:focus {
    background: var(--dark-bg);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.2) !important;
}

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

.footer {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(45, 62, 95, 0.8) 100%),
                url('assets/images/footer-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    margin-top: auto;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-slide .btn-lg {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        min-width: 150px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .pricing-card.pricing-featured {
        transform: scale(1);
    }

    .pricing-card:hover {
        transform: translateY(-3px);
    }

    .pricing-card.pricing-featured:hover {
        transform: translateY(-3px) scale(1);
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .price {
        font-size: 2rem;
    }

    .trial-drawer {
        max-width: 100%;
    }

    .step-card {
        margin-bottom: 1rem;
    }

    .gallery-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .gradient-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .badge-item {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-img {
        height: 280px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .trial-drawer {
        max-width: 100%;
    }

    .drawer-body {
        padding: 1.5rem 1rem;
    }

    .contact-card,
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-item {
        padding: 1rem 0;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem;
    }

    .nav-right {
        gap: 0.25rem;
    }

    .nav-right .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .about-card,
    .why-card {
        padding: 1.5rem 1rem;
    }

    .promise-item {
        padding: 1rem;
        gap: 1rem;
    }

    .promise-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .number-card {
        padding: 1.5rem 0.75rem;
    }

    .number-value {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gold {
    color: var(--gold);
}

.text-muted-custom {
    color: var(--text-muted);
}

.bg-dark-custom {
    background: var(--dark-card);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}