/* ============================================
   XTREAM PREMIUM - MAIN STYLES
   ============================================ */

/* Bootstrap CDN Fallback - Using CDN but adding base styles */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Base Variables */
:root {
    --primary-color: #253fe9;
    --secondary-color: #1a2bb8;
    --success-color: #4caf50;
    --warning-color: #ffd700;
    --danger-color: #ff4444;
    --dark-color: #1a1a1a;
    --light-color: #f5f7fa;
    --text-color: #333;
    --border-radius: 10px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --deep-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Body Overlay */
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header-section {
    position: relative;
    z-index: 999;
    background: #fff;
}

.topbar {
    background: transparent;
    padding: 0;
}

.header-nav {
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    padding: 10px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-wrapper nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-wrapper nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nav-wrapper nav ul li a:hover {
    color: var(--primary-color);
}

.nav-wrapper nav ul li a i {
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-style-1 {
    position: relative;
}

.hero-area {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero1-content-wrap {
    position: relative;
    z-index: 2;
}

.review-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.brand-logo {
    height: 30px;
    width: auto;
}

.star-rating {
    height: 20px;
    width: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.icon-activation {
    font-size: 18px;
}

.display-font {
    font-family: 'Urbanist', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.display-font mark {
    background: var(--warning-color);
    color: #000;
    padding: 0 10px;
    border-radius: 5px;
}

.text-hero-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-benefit {
    display: block;
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--warning-color);
    border-radius: 5px;
}

/* Buttons */
.template-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 63, 233, 0.4);
}

.secondary-btn {
    background: #6c757d;
    color: white;
}

.secondary-btn:hover {
    background: #5a6268;
    color: white;
}

.cta-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* Promo Area */
.promo-area {
    padding: 60px 0;
    background: var(--light-color);
}

.promo-item {
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-5px);
}

.promo-top {
    margin-bottom: 15px;
}

.promo-top h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

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

.pricing-tab-section {
    padding: 80px 0;
    position: relative;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.savings-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 20px 0;
}

.pricing-wrapper {
    position: relative;
    padding: 40px 0;
}

.pricing-column {
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-column:hover {
    transform: translateY(-10px);
}

.pricing-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.pricing-badge {
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
}

.popular-badge {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: #000;
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 25px;
    z-index: 10;
}

.pricing-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.monthly-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.monthly-price span {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-color);
}

.feature-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: 60px 0;
}

.trust-badge-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-badge-item h5 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   CUSTOM PLAN SECTION
   ============================================ */

.hm7-custom-plan {
    padding: 60px 0;
}

.custom-plan-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-plan-content h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-plan-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.rs-primary-btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.rs-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   APPLICATION/CHANNELS SECTION
   ============================================ */

.application-area {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.app_lists {
    margin-top: 50px;
}

.app_list_item {
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.app_list_item:hover {
    transform: translateY(-5px);
}

.app_list_item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ============================================
   FEEDBACK/TESTIMONIALS SECTION
   ============================================ */

.hm2-feedback {
    padding: 100px 0;
    background: var(--light-color);
}

.hm2-feedback-item {
    padding: 40px;
    border-radius: var(--border-radius);
    height: 100%;
}

.quote-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.clients-info {
    margin-top: 20px;
}

.clients-designation h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.clients-designation span {
    font-size: 14px;
    color: #666;
}

/* ============================================
   CONSULT/HOW IT WORKS SECTION
   ============================================ */

.consult-area {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.consult-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.consult-list {
    list-style: none;
    padding: 0;
}

.consult-list li {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    flex-shrink: 0;
}

.list-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.list-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   DOMAIN SEARCH / FINAL CTA
   ============================================ */

.domain-area {
    padding: 60px 0;
}

.domain-search-box {
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.domain-search-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.domain-search-box mark {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
}

/* ============================================
   FAQ SECTION
   ============================================ */

.card-header-faq {
    cursor: pointer;
    border: none;
    background: transparent;
}

.text-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.card-header-faq[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

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

.footer {
    background: #1a1a1a;
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.payment-list {
    list-style: none;
    padding: 0;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-list li {
    padding: 10px;
    border-radius: 5px;
}

.payment-list img {
    max-height: 30px;
    width: auto;
}

.footer-copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-txt p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.copyright-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.copyright-links a:hover {
    color: white;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.primary-shadow {
    box-shadow: var(--box-shadow);
}

.deep-shadow {
    box-shadow: var(--deep-shadow);
}

.rounded-10 {
    border-radius: var(--border-radius);
}

.rounded-2 {
    border-radius: 8px;
}

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

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-40 { margin-top: 40px; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-30 { margin-bottom: 30px; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }

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

@media (max-width: 768px) {
    .display-font {
        font-size: 32px;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
    
    .monthly-price {
        font-size: 32px;
    }
    
    .pricing-column {
        margin-bottom: 30px;
    }
    
    .nav-wrapper nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-area {
        padding: 60px 0 40px;
    }
}

@media (max-width: 576px) {
    .display-font {
        font-size: 24px;
    }
    
    .template-btn {
        width: 100% !important;
        text-align: center;
    }
}

