/* ==========================================================================
   MaxWebSales Hosting Style Sheet
   ========================================================================== */

/* Design Variables & Root Tokens */
:root {
    --primary-teal: #01D1C1;
    --primary-teal-rgb: 1, 209, 193;
    --accent-coral: #FF7575;
    --accent-coral-rgb: 255, 117, 117;
    --dark-slate: #121C1B;
    --body-bg: #EDF7F6;
    --card-bg: #FFFFFF;
    --text-muted-color: #6C757D;
    --text-dark: #121C1B;
    --white: #FFFFFF;
    
    /* Typography */
    --font-headings: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(18, 28, 27, 0.04);
    --shadow-medium: 0 15px 35px rgba(18, 28, 27, 0.08);
    --shadow-premium: 0 20px 45px rgba(1, 209, 193, 0.12);
}

/* Base Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--dark-slate);
    font-size: 16px;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-headings);
    color: var(--dark-slate);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary-teal);
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--accent-coral);
}

/* Custom Text and Utility Classes */
.text-teal {
    color: var(--primary-teal) !important;
}
.bg-teal {
    background-color: var(--primary-teal) !important;
}
.bg-soft-teal {
    background-color: rgba(var(--primary-teal-rgb), 0.08) !important;
}
.text-coral {
    color: var(--accent-coral) !important;
}
.bg-coral {
    background-color: var(--accent-coral) !important;
}
.text-dark-slate {
    color: var(--dark-slate) !important;
}

/* Button Custom Styles */
.btn-primary-teal {
    background-color: var(--primary-teal);
    color: var(--white) !important;
    border: 1px solid var(--primary-teal);
    font-family: var(--font-headings);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.btn-primary-teal:hover {
    background-color: #00b3a5;
    border-color: #00b3a5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 209, 193, 0.3);
}

.btn-outline-teal {
    background-color: transparent;
    color: var(--primary-teal) !important;
    border: 1.5px solid var(--primary-teal);
    font-family: var(--font-headings);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.btn-outline-teal:hover {
    background-color: var(--primary-teal);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 209, 193, 0.2);
}

/* Header & Navbar Replicating MaxWebSales */
.site-header {
    background-color: rgba(237, 247, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(1, 209, 193, 0.1);
    z-index: 1030;
    transition: var(--transition-smooth);
}

.navbar-brand .logo-img {
    max-height: 42px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link {
    font-family: var(--font-headings);
    color: var(--dark-slate) !important;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--accent-coral) !important;
}

/* Custom Register Button - double-border styling matching inspiration */
.btn-register {
    font-family: var(--font-headings);
    color: var(--dark-slate) !important;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 15px;
    background-color: transparent;
    border: 4.8px double var(--primary-teal) !important;
    border-radius: 4px;
    padding: 6px 20px !important;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

.btn-register:hover {
    border-color: var(--accent-coral) !important;
    color: var(--accent-coral) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 209, 193, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(237, 247, 246, 1) 0%, rgba(213, 237, 235, 0.8) 100%);
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-radius: 50%;
    background: radial-gradient(circle, rgba(1, 209, 193, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted-color);
    margin-bottom: 30px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.section-tag {
    font-family: var(--font-headings);
    color: var(--accent-coral);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted-color);
    max-width: 650px;
    margin: 0 auto 50px;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(1, 209, 193, 0.12);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(1, 209, 193, 0.3);
}

/* Popular Badge Card Styling */
.pricing-card.popular {
    border: 2px solid var(--primary-teal);
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-coral));
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-coral));
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(1, 209, 193, 0.2);
    letter-spacing: 0.05em;
}

/* Plan Details Inside Card */
.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    margin-bottom: 25px;
    height: 40px;
    display: flex;
    align-items: center;
}

.plan-price-wrapper {
    margin-bottom: 25px;
}

.plan-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

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

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

.plan-features-list {
    margin: 25px 0 35px;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.plan-features-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.plan-features-list li i {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
}

.plan-features-list li.dimmed {
    color: #A0A5A8;
}

.plan-features-list li.dimmed i {
    color: #D1D5D8;
}

/* Specifications Grid */
.specs-section {
    background-color: var(--white);
    padding: 80px 0;
}

.spec-box {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--body-bg);
    border: 1px solid rgba(1, 209, 193, 0.05);
    height: 100%;
    transition: var(--transition-smooth);
}

.spec-box:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-medium);
    border-color: rgba(1, 209, 193, 0.15);
    transform: translateY(-3px);
}

.spec-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(var(--primary-teal-rgb), 0.1);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.spec-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.spec-desc {
    font-size: 0.92rem;
    color: var(--text-muted-color);
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(1, 209, 193, 0.08);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(1, 209, 193, 0.2);
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.98rem;
    color: var(--dark-slate);
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--primary-teal-rgb), 0.15);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-headings);
    font-size: 18px;
    margin-right: 15px;
    border: 2px solid var(--primary-teal);
}

.author-name {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-meta {
    font-size: 0.82rem;
    color: var(--text-muted-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid rgba(1, 209, 193, 0.08) !important;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(18, 28, 27, 0.01);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    box-shadow: 0 6px 18px rgba(18, 28, 27, 0.03);
}

.accordion-button {
    font-family: var(--font-headings);
    font-weight: 500;
    color: var(--dark-slate);
    background-color: var(--white);
    padding: 20px 25px;
    box-shadow: none !important;
    border: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-teal);
    background-color: rgba(var(--primary-teal-rgb), 0.02);
}

.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-body {
    padding: 20px 25px 25px;
    color: var(--text-muted-color);
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: rgba(var(--primary-teal-rgb), 0.01);
    border-top: 1px solid rgba(1, 209, 193, 0.05);
}

/* Elegant Call-to-Action (CTA) */
.cta-section {
    background: linear-gradient(135deg, var(--dark-slate) 0%, #1c2e2c 100%);
    position: relative;
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(1, 209, 193, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 117, 117, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.05rem;
}

/* WhatsApp Floating/Custom Button styles */
.btn-whatsapp-footer {
    background-color: #25D366;
    border: 1px solid #25D366;
    border-radius: 4px;
    transition: var(--transition-smooth);
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 14px;
}

.btn-whatsapp-footer:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta {
    background-color: #25D366;
    color: var(--white) !important;
    border: 1px solid #25D366;
    font-family: var(--font-headings);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp-cta:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Footer Section */
.site-footer {
    background-color: #121C1B;
    color: rgba(255, 255, 255, 0.7);
    border-top: 2px solid var(--primary-teal);
    font-size: 15px;
}

.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.site-footer .footer-contact a.text-muted:hover,
.site-footer .footer-terms a.text-muted:hover {
    color: var(--primary-teal) !important;
}

.site-footer .footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.site-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-teal);
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition-smooth);
}

.site-footer .footer-links a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.site-footer .filter-grayscale {
    filter: brightness(0) invert(1) opacity(0.85);
}

.site-footer .footer-desc {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.92rem;
    line-height: 1.6;
}

.site-footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-teal);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Reusable Contact Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modal-header-accent {
    background: linear-gradient(135deg, var(--dark-slate) 0%, #1c2e2c 100%);
    color: var(--white);
    border-bottom: 3px solid var(--primary-teal);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.25rem rgba(1, 209, 193, 0.2);
}

.badge-plan-indicator {
    background-color: rgba(var(--primary-teal-rgb), 0.1);
    color: var(--primary-teal);
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* Responsive fixes */
@media (max-width: 991.98px) {
    .site-header {
        padding: 10px 0 !important;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        margin: 15px -15px -15px -15px;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-top: 1.5px solid rgba(var(--primary-teal-rgb), 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-register {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
    
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* Razorpay Custom Button Styles to integrate beautifully into our design system */
.pricing-card form {
    width: 100%;
}
.razorpay-payment-button {
    width: 100% !important;
    padding: 14px 24px !important;
    font-family: var(--font-headings) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
    transition: var(--transition-smooth) !important;
    display: block !important;
    text-align: center !important;
    outline: none !important;
    box-shadow: none !important;
}
.pricing-card.popular .razorpay-payment-button {
    background-color: var(--primary-teal) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary-teal) !important;
}
.pricing-card.popular .razorpay-payment-button:hover {
    background-color: #00b3a5 !important;
    border-color: #00b3a5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(1, 209, 193, 0.3) !important;
}
.pricing-card:not(.popular) .razorpay-payment-button {
    background-color: transparent !important;
    color: var(--primary-teal) !important;
    border: 1.5px solid var(--primary-teal) !important;
}
.pricing-card:not(.popular) .razorpay-payment-button:hover {
    background-color: var(--primary-teal) !important;
    color: var(--white) !important;
    border-color: var(--primary-teal) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(1, 209, 193, 0.2) !important;
}

/* Pricing Toggle Switch Custom Styles */
.pricing-switch .form-check-input {
    width: 3.5em !important;
    height: 1.85em !important;
    background-color: rgba(1, 209, 193, 0.15) !important;
    border-color: rgba(1, 209, 193, 0.3) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
}
.pricing-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(1, 209, 193, 0.25) !important;
    border-color: var(--primary-teal) !important;
}
.pricing-switch .form-check-input:checked {
    background-color: var(--primary-teal) !important;
    border-color: var(--primary-teal) !important;
}


