/* WebHostNet.in - Main Stylesheet */
/* Brand: Web Seasoning | GST: 08BFPPS2936J1ZR */

:root {
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --primary-light: #A78BFA;
    --secondary: #5B21B6;
    --accent: #7C3AED;
    --dark: #1F2937;
    --dark-light: #374151;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --bg-gray: #F9FAFB;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; color: var(--gray); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg-gray); transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; font-weight: 700; font-size: 1.25rem; color: var(--dark); }
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
}
.logo-tld { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--gray); font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { width: 25px; height: 2px; background: var(--dark); transition: 0.3s; }

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-gray) 0%, #EDE9FE 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { font-size: 1.25rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-xl); }

/* Trust Badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray); }
.trust-badge span { font-size: 1.25rem; }

/* Stats */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stat-item h3 { font-size: 2rem; color: var(--primary); margin-bottom: 0.25rem; }
.stat-item p { font-size: 0.875rem; margin: 0; }

/* Features Section */
.features { padding: 5rem 0; }
.features.alt-bg { background: var(--bg-gray); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-header p { color: var(--gray); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(91, 33, 182, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { margin: 0; font-size: 0.95rem; }

/* Pricing Section */
.pricing { padding: 5rem 0; background: var(--dark); color: var(--white); }
.pricing .section-header h2 { color: var(--white); }
.pricing .section-header p { color: var(--gray-light); }
.pricing-note { text-align: center; color: var(--gray); font-size: 0.875rem; margin-top: 1.5rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pricing-card {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.pricing-card.featured { border-color: var(--primary); transform: scale(1.05); }
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.pricing-card h3 { color: var(--white); }
.pricing-card .price { font-size: 3rem; font-weight: 700; color: var(--white); margin: 1rem 0; }
.pricing-card .price span { font-size: 1rem; color: var(--gray); }
.pricing-card ul { list-style: none; margin: 1.5rem 0; }
.pricing-card li { padding: 0.5rem 0; color: var(--gray-light); display: flex; align-items: center; gap: 0.5rem; }
.pricing-card li::before { content: '✓'; color: var(--success); font-weight: bold; }
.pricing-card li.disabled { color: var(--gray); }
.pricing-card li.disabled::before { content: '✗'; color: var(--gray); }
.pricing-card .btn { width: 100%; margin-top: 1rem; }
.pricing-card .btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}
.pricing-card .btn-outline:hover {
    background: #FEF3C7;
    color: var(--primary-dark);
    border-color: #FEF3C7;
    transform: translateY(-2px);
}

/* Trust Section (replaces Testimonials) */
.trust-section { padding: 5rem 0; background: var(--bg-gray); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.trust-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trust-card-icon { font-size: 3rem; margin-bottom: 1rem; }
.trust-card h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.trust-card p { color: var(--gray); margin: 0; font-size: 0.9rem; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* CTA Section */
.cta { padding: 5rem 0; background: var(--gradient); text-align: center; color: var(--white); }
.cta h2 { color: var(--white); margin-bottom: 1rem; }
.cta p { color: rgba(255, 255, 255, 0.9); font-size: 1.25rem; margin-bottom: 2rem; }
.cta .btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}
.cta .btn-white:hover {
    background: #FEF3C7;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.cta-trust { margin-top: 1.5rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }

/* Footer */
.footer { background: var(--dark); color: var(--gray-light); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { margin-top: 1rem; color: var(--gray); }
.footer-brand .logo { color: var(--white); }
.footer h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact p { margin-bottom: 0.5rem; color: var(--gray); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--dark-light); text-align: center; }
.footer-bottom p { margin: 0; color: var(--gray); font-size: 0.875rem; }
.footer-legal { margin-top: 0.5rem; }
.footer-legal a { color: var(--gray); margin: 0 0.75rem; font-size: 0.8rem; }
.footer-legal a:hover { color: var(--primary-light); }

/* Page Headers */
.page-hero { padding: 8rem 0 4rem; background: linear-gradient(135deg, var(--bg-gray) 0%, #EDE9FE 100%); text-align: center; }
.page-hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.25rem; max-width: 600px; margin: 0 auto; }

/* Contact Form */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(91, 33, 182, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-item p { margin: 0; font-size: 0.95rem; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* About Page */
.about-content { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.company-details { margin-top: 2rem; }
.company-details table { width: 100%; border-collapse: collapse; }
.company-details td { padding: 0.75rem 0; border-bottom: 1px solid var(--gray-light); }
.company-details td:first-child { font-weight: 600; color: var(--dark); width: 40%; }

/* FAQ Page */
.faq-section { padding: 5rem 0; }
.faq-category { margin-bottom: 3rem; }
.faq-category h3 { color: var(--primary); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-light); }
.faq-item { margin-bottom: 1rem; border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; }
.faq-question {
    padding: 1.25rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-gray); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active .faq-answer { padding: 1.25rem; max-height: 500px; border-top: 1px solid var(--gray-light); }
.faq-answer p { margin: 0; }

/* Legal Pages */
.legal-content { padding: 5rem 0; }
.legal-content h2 { color: var(--primary); margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--gray-light); }
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { color: var(--dark); margin-top: 1.5rem; }
.legal-content ul, .legal-content ol { margin: 1rem 0 1rem 1.5rem; color: var(--gray); }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.legal-content th, .legal-content td { padding: 0.75rem; border: 1px solid var(--gray-light); text-align: left; }
.legal-content th { background: var(--bg-gray); font-weight: 600; }
.legal-updated { color: var(--gray); font-style: italic; margin-bottom: 2rem; }

/* Alerts */
.alert { padding: 1rem 1.5rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.alert-success { background: rgba(16, 185, 129, 0.1); border: 1px solid var(--success); color: #065F46; }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid var(--danger); color: #991B1B; }

/* Services Page Cards */
.services-section { padding: 5rem 0; }
.services-section.alt-bg { background: var(--bg-gray); }
.service-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.service-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); }
.service-card.featured { border-color: var(--primary); position: relative; }
.service-card h3 { color: var(--dark); }
.service-card .price { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin: 1rem 0; }
.service-card .price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.service-card ul { list-style: none; text-align: left; margin: 1.5rem 0; }
.service-card li { padding: 0.5rem 0; color: var(--gray); display: flex; align-items: center; gap: 0.5rem; }
.service-card li::before { content: '✓'; color: var(--success); font-weight: bold; }
.service-card li.disabled::before { content: '✗'; color: var(--gray); }

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { transform: translateX(0); }
    .hero { padding: 6rem 0 3rem; min-height: auto; }
    .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .trust-badges { justify-content: center; }
    .page-hero { padding: 6rem 0 3rem; }
}
