/* ============================================
   WALLEX HOSTING - MAIN STYLESHEET
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --primary-color: #0066FF;
    --secondary-color: #00D4FF;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gradient: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* === NAVIGATION === */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.logo-primary {
    color: var(--primary-color);
}

.logo-secondary {
    color: var(--dark-color);
}

.logo-tagline {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
}

.btn-nav {
    background: var(--gradient);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--primary-color);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* === HERO SECTION === */
.hero {
    padding: 180px 0 100px;
    background: var(--gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="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;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* === FEATURES SECTION === */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 36px;
    color: #fff;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === SERVICES SECTION === */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* === PRICING SECTION === */
.pricing-preview {
    padding: 100px 0;
    background: var(--light-color);
}

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

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.price {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-light);
    align-self: flex-end;
    margin-bottom: 10px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 18px;
}

/* === CTA SECTION === */
.cta {
    padding: 100px 0;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* === FOOTER === */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

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

.footer-col a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* === CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}
/* ============================================
   ADDITIONAL STYLES FOR WALLEX HOSTING
   Mobile-First Responsive Design
   ============================================ */

/* === PAGE HEADERS === */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.domains-header,
.email-header,
.vps-header,
.support-header,
.about-header {
    position: relative;
    overflow: hidden;
}

/* === DOMAIN SEARCH === */
.domain-search-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.domain-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.domain-search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
}

.domain-search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.domain-search-form .btn {
    padding: 15px 30px;
    white-space: nowrap;
}

.popular-extensions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.popular-extensions span {
    color: var(--text-light);
    font-weight: 600;
}

.ext-btn {
    padding: 8px 16px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.ext-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* === DOMAIN PRICING TABLE === */
.domain-pricing {
    padding: 80px 0;
    background: var(--light-color);
}

.pricing-table {
    width: 100%;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table thead {
    background: var(--gradient);
    color: #fff;
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
    background: var(--light-color);
}

.pricing-table .featured-row {
    background: rgba(0, 102, 255, 0.05);
}

.badge-small {
    background: var(--success-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 8px;
}

/* === EMAIL SPECIFIC === */
.email-example {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

.email-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-domain {
    color: #fff;
}

.volume-pricing {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.volume-pricing h3 {
    margin-bottom: 15px;
}

/* === EMAIL COMPARISON === */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    padding: 20px;
    background: var(--dark-color);
    color: #fff;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.text-success {
    color: var(--success-color);
    font-size: 20px;
}

.text-danger {
    color: var(--danger-color);
    font-size: 20px;
}

/* === VPS SPECIFIC === */
.header-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.header-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.vps-card {
    position: relative;
}

.vps-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.spec-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.spec-details strong {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
}

.spec-details span {
    font-size: 13px;
    color: var(--text-light);
}

.custom-vps {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.custom-vps h3 {
    margin-bottom: 15px;
}

/* === OS & CONTROL PANELS === */
.os-section,
.control-panels {
    padding: 80px 0;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.os-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.os-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.os-card h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

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

.panel-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.panel-card img {
    margin-bottom: 20px;
}

.panel-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.panel-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.panel-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

/* === USE CASES === */
.use-cases {
    padding: 80px 0;
    background: var(--light-color);
}

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

.use-case-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.use-case-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.use-case-card h3 {
    margin-bottom: 15px;
}

/* === SUPPORT PAGE === */
.contact-options {
    padding: 80px 0;
}

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

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 36px;
    color: #fff;
}

.response-time {
    margin: 15px 0;
    color: var(--text-light);
}

.response-time strong {
    color: var(--primary-color);
}

/* === CONTACT FORM === */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* === KNOWLEDGE BASE === */
.knowledge-base {
    padding: 80px 0;
}

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

.kb-category {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.kb-category i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.kb-category h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.kb-category ul {
    list-style: none;
}

.kb-category li {
    margin-bottom: 12px;
}

.kb-category a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.kb-category a:hover {
    color: var(--primary-color);
}

.kb-category a::before {
    content: '→';
    color: var(--primary-color);
}

/* === SUPPORT HOURS === */
.support-hours {
    padding: 80px 0;
    background: var(--light-color);
}

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

.hours-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hours-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.availability {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

/* === LOCATION === */
.location-section {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.location-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: var(--primary-color);
}

/* === ABOUT PAGE === */
.company-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

/* === MISSION & VALUES === */
.mission-values {
    padding: 80px 0;
    background: var(--light-color);
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* === CLOUD SECURITY === */
.cloud-security {
    padding: 80px 0;
}

.security-features {
    display: grid;
    gap: 30px;
}

.security-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.security-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon i {
    font-size: 32px;
    color: #fff;
}

.security-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.security-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.security-certifications {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
    text-align: center;
}

.security-certifications h3 {
    margin-bottom: 30px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.cert-badge {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cert-badge i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cert-badge p {
    font-size: 14px;
    font-weight: 600;
}

/* === STATISTICS === */
.statistics {
    padding: 80px 0;
    background: var(--gradient);
    color: #fff;
}

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

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* === WHY CHOOSE === */
.why-choose {
    padding: 80px 0;
}

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

.reason-item {
    position: relative;
    padding: 30px 30px 30px 90px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.reason-number {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.1);
}

.reason-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === TEAM === */
.team-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.member-photo {
    margin-bottom: 20px;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    font-size: 14px;
}

/* === LOGIN PAGE === */
.login-section {
    padding: 120px 0 80px;
    background: var(--light-color);
    min-height: calc(100vh - 200px);
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.login-form label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 18px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: var(--text-light);
}

.quick-links {
    display: grid;
    gap: 15px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

.quick-link-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.05);
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    margin-bottom: 10px;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.security-note {
    font-size: 13px;
    color: var(--text-light);
}

.login-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.login-info h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
}

.help-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.help-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.help-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.help-item p {
    color: var(--text-light);
    font-size: 14px;
}

.support-contact {
    margin-top: 40px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.support-contact h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.support-contact p {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.support-contact i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* ============================================
   MOBILE RESPONSIVE DESIGN
   Mobile-First Approach
   ============================================ */

/* Tablets and below (768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
        background: var(--light-color);
        border-radius: 10px;
    }
    
    .btn-nav {
        background: var(--gradient) !important;
        color: #fff !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
    
    /* Page Headers */
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 28px !important;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Grid */
    .pricing-grid,
    .pricing-grid-full {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none !important;
    }
    
    /* Domain Search */
    .domain-search-form {
        flex-direction: column;
    }
    
    .domain-search-form .btn {
        width: 100%;
    }
    
    /* Email Example */
    .email-example {
        font-size: 18px;
        padding: 12px 20px;
    }
    
    /* VPS Specs */
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    /* OS Grid */
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Panels Grid */
    .panels-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Story Grid */
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    /* Security Items */
    .security-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Cert Grid */
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Login Wrapper */
    .login-wrapper {
        grid-template-columns: 1fr;
    }
    
    .login-card,
    .login-info {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    /* Pricing Table */
    .pricing-table {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
    }
    
    /* Header Features */
    .header-features {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

/* ... Previous CSS continues ... */

/* Small Mobile (480px and below) - CONTINUED */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 26px !important;
    }
    
    .section-header h2 {
        font-size: 24px !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .feature-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i,
    .contact-icon i {
        font-size: 28px;
    }
    
    .price .amount {
        font-size: 42px;
    }
    
    .os-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-search-box {
        padding: 20px;
    }
    
    .popular-extensions {
        justify-content: center;
    }
}

/* === ADDITIONAL UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

/* === LOADING ANIMATION === */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === FADE IN ANIMATION === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === PRICING GRID FULL === */
.pricing-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 40px;
}

/* === SETUP SECTION === */
.email-setup,
.setup-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.setup-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.setup-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.setup-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.setup-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.setup-card li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.setup-card li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
}

.setup-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.setup-link:hover {
    gap: 12px;
}

/* === ADDONS SECTION === */
.addons-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.addons-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.addon-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.addon-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.addon-card h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* === FEATURES COMPARISON === */
.features-comparison {
    padding: 80px 0;
    background: var(--light-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.comparison-item i {
    font-size: 24px;
    color: var(--success-color);
    flex-shrink: 0;
}

.comparison-item h4 {
    color: var(--dark-color);
    font-size: 16px;
}

/* === DOMAIN TRANSFER === */
.domain-transfer {
    padding: 80px 0;
}

.transfer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.transfer-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.benefits-list i {
    color: var(--success-color);
    font-size: 20px;
}

.transfer-steps {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.transfer-steps h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

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

/* === EMAIL PLANS SPECIFIC === */
.email-plans {
    padding: 80px 0;
}

.email-features {
    padding: 80px 0;
    background: var(--light-color);
}

.email-comparison {
    padding: 80px 0;
}

/* === VPS PLANS === */
.vps-plans {
    padding: 80px 0;
    background: var(--light-color);
}

.vps-features {
    padding: 80px 0;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .transfer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .setup-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   HOME PAGE IMPROVEMENTS & $4 PACKAGE STYLES
   ============================================ */

/* === HERO ENHANCEMENTS === */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.old-price {
    display: block;
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 10px;
}

.new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 15px 0;
}

.new-price .currency {
    font-size: 32px;
    font-weight: 700;
}

.new-price .amount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin: 0 5px;
}

.new-price .period {
    font-size: 18px;
    align-self: flex-end;
    margin-bottom: 15px;
}

.price-detail {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.price-includes {
    text-align: left;
}

.price-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-includes ul {
    list-style: none;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

.price-includes i {
    color: #4ade80;
    font-size: 18px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 20px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 15px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === PACKAGE HIGHLIGHT SECTION === */
.package-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.package-banner {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.banner-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-banner h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-tagline {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* === PACKAGE COMPARISON === */
.package-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin: 50px 0;
}

.comparison-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
}

.comparison-box.featured {
    background: var(--gradient);
    color: #fff;
    border-color: #fff;
    transform: scale(1.05);
    position: relative;
}

.best-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: var(--dark-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.comparison-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.price-old span {
    font-size: 36px;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
}

.price-new span {
    font-size: 56px;
    font-weight: 900;
}

.vs-arrow {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
}

.vs-arrow span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

/* === PACKAGE FEATURES GRID === */
.package-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.package-feature {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.package-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-feature i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.package-feature p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.package-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* === WHY SO CHEAP SECTION === */
.why-cheap {
    padding: 80px 0;
    background: #fff;
}

.cheap-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === CLOUD SECURITY HOME === */
.cloud-security-home {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
}

.security-header {
    text-align: center;
    margin-bottom: 60px;
}

.security-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.security-header i {
    margin-right: 15px;
}

.security-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.security-feature-home {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.security-feature-home:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.security-badge {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.security-badge i {
    font-size: 32px;
}

.security-feature-home h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.security-feature-home p {
    font-size: 15px;
    opacity: 0.9;
}

.security-certifications-home {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 40px;
}

.security-certifications-home h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.certs-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert-item i {
    font-size: 36px;
}

.cert-item span {
    font-size: 14px;
    font-weight: 600;
}

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

.security-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* === SERVICE CARDS === */
.service-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* === PRICE COMPARISON TABLE === */
.price-comparison {
    padding: 80px 0;
}

.price-comparison-table {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.price-comparison-table thead {
    background: var(--dark-color);
    color: #fff;
}

.price-comparison-table th,
.price-comparison-table td {
    padding: 20px;
    text-align: center;
}

.price-comparison-table th:first-child,
.price-comparison-table td:first-child {
    text-align: left;
}

.price-comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.highlight-col {
    background: rgba(0, 102, 255, 0.05);
    font-weight: 600;
}

.total-row {
    background: var(--light-color);
    font-weight: 700;
}

.total-row .highlight-col {
    background: var(--gradient);
    color: #fff;
}

.comparison-cta {
    text-align: center;
    margin-top: 50px;
}

.comparison-cta h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

/* === CTA ENHANCEMENTS === */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-guarantee {
    font-size: 16px;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-guarantee i {
    margin-right: 5px;
}

/* ============================================
   RESPONSIVE DESIGN FOR HOME PAGE
   ============================================ */

@media (max-width: 768px) {
    .hero-price-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .new-price .amount {
        font-size: 56px;
    }
    
    .package-banner {
        padding: 30px 20px;
    }
    
    .package-banner h2 {
        font-size: 28px;
    }
    
    .package-comparison {
        grid-template-columns: 1fr;
    }
    
    .vs-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .comparison-box.featured {
        transform: none;
    }
    
    .package-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cheap-reasons {
        grid-template-columns: 1fr;
    }
    
    .security-grid-home {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .certs-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-comparison-table {
        font-size: 13px;
    }
    
    .price-comparison-table th,
    .price-comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .new-price .amount {
        font-size: 48px;
    }
    
    .btn-large,
    .btn-xl {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .package-features-grid {
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-guarantee {
        flex-direction: column;
        gap: 10px;
    }
}
/* ============================================
   HOSTING PAGE SPECIFIC STYLES
   ============================================ */

/* === PAGE HEADER ENHANCEMENTS === */
.page-header {
    background: var(--gradient);
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.header-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
    font-size: 15px;
}

.header-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === SPECIAL OFFER SECTION === */
.special-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-banner {
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
    position: relative;
}

.offer-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.offer-banner h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--dark-color);
    text-align: center;
}

.offer-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.offer-price-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin: 40px 0;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.offer-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crossed-price {
    margin-bottom: 20px;
}

.crossed-price span {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.crossed-price del {
    font-size: 32px;
    color: #ef4444;
}

.special-price {
    background: var(--gradient);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

.price-label {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
}

.price-display .currency {
    font-size: 36px;
    font-weight: 700;
}

.price-display .amount {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin: 0 10px;
}

.price-display .period {
    font-size: 20px;
    align-self: flex-end;
    margin-bottom: 15px;
}

.price-subtext {
    display: block;
    font-size: 16px;
    opacity: 0.95;
}

.offer-right h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.offer-right h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.offer-features {
    list-style: none;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features i {
    color: var(--success-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-note {
    margin-top: 15px;
    font-size: 15px;
    color: var(--text-light);
}

.offer-testimonial {
    margin-top: 40px;
    padding: 30px;
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
}

.testimonial-content .stars {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-content strong {
    color: var(--dark-color);
}

/* === WHY CHEAP SECTION === */
.why-cheap-section {
    padding: 80px 0;
    background: #fff;
}

.why-cheap-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cheap-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.reason-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reason-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* === PLANS COMPARISON === */
.plans-comparison {
    padding: 80px 0;
    background: var(--light-color);
}

.comparison-table-full {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table-full thead {
    background: var(--dark-color);
    color: #fff;
}

.comparison-table-full th,
.comparison-table-full td {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.comparison-table-full th:first-child,
.comparison-table-full td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table-full tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table-full tbody tr:hover {
    background: var(--light-color);
}

.comparison-table-full .highlight-col {
    background: rgba(0, 102, 255, 0.08);
    font-weight: 700;
}

/* === TRUST SIGNALS === */
.trust-signals {
    padding: 80px 0;
}

.trust-signals h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
}

.trust-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .offer-banner {
        padding: 40px 20px;
    }
    
    .offer-banner h2 {
        font-size: 28px;
    }
    
    .offer-price-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .price-display .amount {
        font-size: 60px;
    }
    
    .cheap-reasons-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-full {
        font-size: 13px;
    }
    
    .comparison-table-full th,
    .comparison-table-full td {
        padding: 12px 8px;
    }
}