/*==================================================
Starlink Setup & Support - Modern Clean Light Theme
File: infotech.net.bd.starlink.light.css
==================================================*/

:root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --accent-blue: #0284c7;
    --accent-dark: #0369a1;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(2, 132, 199, 0.08);
}

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section{
    padding: 100px 0;
}

/*==========================
Hero Section
==========================*/

.starlink-hero-light{
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0284c7, #1d4ed8);
    color: #ffffff;
    overflow: hidden;
}

.starlink-hero-light::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: 0.4;
}

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

.hero-badge-light{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.pulse-dot-light {
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
}

.starlink-hero-light h1{
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.starlink-hero-light h1 span{
    color: #bae6fd;
}

.starlink-hero-light p{
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*==========================
Buttons
==========================*/

.btn{
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.btn-primary-light{
    background: #ffffff;
    color: #0284c7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-light:hover{
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light{
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #ffffff;
}

.btn-outline-light:hover{
    background: #ffffff;
    color: #0284c7;
    border-color: #ffffff;
}

.btn-card-light{
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #f0f9ff;
    color: var(--accent-blue);
    border: 1px solid #bae6fd;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-card-light:hover{
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/*==========================
Section Titles
==========================*/

.section-title-light{
    text-align: center;
    margin-bottom: 60px;
}

.section-title-light h2{
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.section-title-light p{
    color: var(--text-muted);
    max-width: 600px;
    margin: auto;
    font-size: 16px;
}

/*==========================
Statistics
==========================*/

.starlink-stats-light{
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box-light{
    text-align: center;
    padding: 20px;
}

.stat-box-light h2{
    color: var(--accent-blue);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box-light p{
    color: var(--text-muted);
    font-size: 15px;
}

/*==========================
Services / Packages
==========================*/

.starlink-services-light{
    background: var(--bg-main);
}

.package-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card-light{
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: 0.3s ease;
}

.package-card-light:hover{
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.plan-badge-light{
    display: inline-block;
    padding: 4px 12px;
    background: #e0f2fe;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
}

.plan-name-light{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.plan-price-light{
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 25px;
}

.plan-price-light span{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.package-card-light ul{
    list-style: none;
    margin-bottom: 30px;
}

.package-card-light ul li{
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon-light{
    color: var(--accent-blue);
    font-weight: bold;
}

/*==========================
Features
==========================*/

.starlink-features-light{
    background: var(--bg-surface);
}

.feature-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card-light{
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    transition: 0.3s;
}

.feature-card-light:hover{
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.feature-icon{
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-card-light h3{
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card-light p{
    color: var(--text-muted);
    font-size: 15px;
}

/*==========================
Process
==========================*/

.starlink-process-light{
    background: var(--bg-main);
}

.process-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card-light{
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.step-number-light{
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.step-card-light h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-card-light p{
    color: var(--text-muted);
    font-size: 14px;
}

/*==========================
CTA Section
==========================*/

.starlink-cta-light{
    background: linear-gradient(135deg, #0284c7, #1d4ed8);
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.starlink-cta-light h2{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.starlink-cta-light p{
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 17px;
}

/*==========================
Responsive Adjustments
==========================*/

@media(max-width: 768px){
    .starlink-hero-light h1{
        font-size: 36px;
    }
    
    .section-title-light h2{
        font-size: 30px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: stretch;
    }
}