/* NEXT Host - Main Stylesheet */
/* HostGator-inspired Clean UI */

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #ff6600;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --whatsapp-color: #25d366;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Notice Bar */
.top-notice {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.top-notice i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    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-whatsapp {
    background: var(--whatsapp-color);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-block {
    display: block;
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.hero-notice {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

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

/* Features Section */
.features {
    padding: 80px 0;
}

.features.alt-bg {
    background: var(--light-color);
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

.feature-card p {
    color: var(--gray-color);
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.plan-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.plan-card.popular {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 12px 0 15px;
}

.plan-header {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plan-price .currency {
    font-size: 24px;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
}

.plan-price .period {
    font-size: 16px;
    opacity: 0.8;
}

.plan-features {
    padding: 30px;
}

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

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

.plan-features i {
    color: var(--success-color);
}

.plan-card .btn {
    margin: 0 30px 30px;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Services Full Grid */
.services-section {
    padding: 80px 0;
}

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

.service-full-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-full-card:hover {
    transform: translateY(-3px);
}

.service-full-card .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-full-card .service-icon i {
    font-size: 40px;
}

.service-full-card .service-content {
    padding: 25px;
}

.service-full-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-full-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.service-full-card ul {
    margin-bottom: 20px;
}

.service-full-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray-color);
}

.service-full-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

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

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

.about-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    font-size: 30px;
    color: var(--primary-color);
    width: 50px;
}

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.highlight-item p {
    margin: 0;
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.mission-card p {
    color: var(--gray-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-info-card,
.quick-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-card h2,
.quick-info-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-method.whatsapp-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid var(--whatsapp-color);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.whatsapp-highlight .method-icon {
    background: var(--whatsapp-color);
}

.method-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.method-details .big-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
    margin-bottom: 10px;
}

.method-details p {
    color: var(--gray-color);
    margin: 3px 0;
}

.notice-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
    margin-top: 30px;
}

.notice-box i {
    font-size: 24px;
    color: #856404;
}

.notice-box strong {
    display: block;
    margin-bottom: 5px;
}

.notice-box p {
    margin: 0;
    font-size: 14px;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

.info-section p {
    color: var(--gray-color);
    margin: 5px 0;
}

.info-section ul {
    padding-left: 20px;
}

.info-section ul li {
    padding: 5px 0;
    color: var(--gray-color);
    position: relative;
}

.info-section ul li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--success-color);
}

.cta-box {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h4 {
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Auth Section */
.auth-section {
    padding: 80px 0;
    background: var(--light-color);
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

.auth-header i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.auth-header h2 {
    font-size: 24px;
    color: var(--dark-color);
}

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

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

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

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

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

.auth-form small {
    display: block;
    margin-top: 5px;
    color: var(--gray-color);
    font-size: 13px;
}

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

.auth-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.admin-link {
    margin-top: 15px;
    font-size: 14px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-large {
    padding: 30px;
    flex-direction: column;
    text-align: center;
}

.alert-large i {
    font-size: 50px;
    margin-bottom: 15px;
}

.alert-large h3 {
    margin-bottom: 10px;
}

.alert-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-secondary {
    background: #e9ecef;
    color: #6c757d;
}

/* Dashboard */
.dashboard-header {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 40px 0;
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-welcome h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

.dashboard-stats {
    padding: 40px 0 20px;
}

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

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.bg-primary { background: var(--primary-color); }
.bg-success { background: var(--success-color); }
.bg-warning { background: var(--warning-color); }
.bg-info { background: #17a2b8; }

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
}

.stat-card .stat-label {
    color: var(--gray-color);
    font-size: 14px;
}

/* Dashboard Content */
.dashboard-content {
    padding: 20px 0 60px;
}

.content-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h2 i {
    color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-color);
}

.empty-state i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Services List */
.services-list {
    padding: 20px;
}

.service-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.service-domain {
    color: var(--gray-color);
    font-size: 14px;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    gap: 10px;
}

.detail-item .label {
    color: var(--gray-color);
    min-width: 100px;
}

.detail-item .value {
    font-weight: 500;
}

.cpanel-details {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.cpanel-details h4 {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cpanel-details h4 i {
    color: var(--primary-color);
}

.cpanel-grid {
    display: grid;
    gap: 10px;
}

.cpanel-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cpanel-link {
    color: var(--primary-color);
    font-weight: 500;
}

.cpanel-value {
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
}

.password-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
}

.pending-notice {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.pending-notice i {
    color: #856404;
    font-size: 20px;
}

.pending-notice p {
    margin: 0;
    color: #856404;
}

/* Quick Contact */
.quick-contact .contact-content {
    padding: 30px;
    text-align: center;
}

.quick-contact p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

/* Order Section */
.order-section {
    padding: 60px 0;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-form-card,
.order-summary-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.order-form-card h2,
.order-summary-card h2 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-form-card h2 i,
.order-summary-card h2 i {
    color: var(--primary-color);
}

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

.order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.order-form input,
.order-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

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

.order-form small {
    display: block;
    margin-top: 8px;
    color: var(--gray-color);
    font-size: 13px;
}

.plan-summary {
    margin-bottom: 30px;
}

.summary-header {
    background: linear-gradient(135deg, var(--dark-color), #16213e);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-header h3 {
    margin-bottom: 10px;
}

.summary-price .amount {
    font-size: 32px;
    font-weight: 700;
}

.summary-features {
    padding: 0 10px;
}

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

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

.summary-features i {
    color: var(--success-color);
}

.select-plan-prompt {
    text-align: center;
    padding: 40px;
    color: var(--gray-color);
}

.select-plan-prompt i {
    font-size: 40px;
    margin-bottom: 15px;
}

.whatsapp-help {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.whatsapp-help p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 10px;
}

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

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

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

.footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.contact-info li i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .order-grid {
        grid-template-columns: 1fr;
    }
    
    .services-full-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .dashboard-header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .service-full-card {
        flex-direction: column;
    }
    
    .service-full-card .service-icon {
        min-width: 100%;
        padding: 30px;
    }
}

/* Billing Cycle Options */
.billing-cycle-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.billing-option {
    cursor: pointer;
}

.billing-option input[type="radio"] {
    display: none;
}

.billing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
}

.billing-option input[type="radio"]:checked + .billing-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f7ff, #fff);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15);
}

.billing-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.billing-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.billing-period {
    font-size: 13px;
    color: var(--gray-color);
}

.billing-savings {
    background: var(--success-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .billing-cycle-options {
        grid-template-columns: 1fr;
    }
}

/* Expiry Warning Styles */
.expiry-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.expiry-warning.danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-color: #dc3545;
}

.expiry-warning i {
    font-size: 24px;
    color: #856404;
}

.expiry-warning.danger i {
    color: #721c24;
}

.expiry-warning-content h4 {
    margin-bottom: 5px;
    color: #856404;
}

.expiry-warning.danger .expiry-warning-content h4 {
    color: #721c24;
}

.expiry-warning-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Invoices Table */
.invoices-section {
    margin-top: 40px;
}

.invoices-table {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.invoices-table th,
.invoices-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.invoices-table th {
    background: var(--dark-color);
    color: #fff;
    font-weight: 600;
}

.invoices-table tbody tr:hover {
    background: #f8f9fa;
}

.status-paid {
    color: var(--success-color);
    font-weight: 600;
}

.status-unpaid {
    color: var(--danger-color);
    font-weight: 600;
}

.status-pending {
    color: var(--warning-color);
    font-weight: 600;
}

/* Renewal Page Styles */
.renew-section {
    padding: 60px 0;
}

.renew-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.renew-form-card,
.renew-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.renew-form-card h2 {
    margin-bottom: 25px;
    color: var(--dark-color);
}

.service-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.service-summary h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-summary p {
    margin: 5px 0;
}

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

.renew-info-card ul {
    list-style: disc;
    padding-left: 20px;
}

.renew-info-card li {
    margin: 10px 0;
    color: var(--gray-color);
}

.text-warning {
    color: var(--warning-color) !important;
    font-weight: 600;
}

.text-danger {
    color: var(--danger-color) !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .renew-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Plan Cards - Modern Clean Style */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.toggle-label {
    font-weight: 600;
    color: var(--dark-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

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

/* Modern Plan Cards - Used on both Home and Hosting Plans pages */
.plans-grid.modern-cards,
.plans-grid.bootstrap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.plans-grid.modern-cards .plan-card,
.plans-grid.bootstrap-cards .plan-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.plans-grid.modern-cards .plan-card:hover,
.plans-grid.bootstrap-cards .plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.plans-grid.modern-cards .plan-card.popular,
.plans-grid.bootstrap-cards .plan-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0,102,204,0.2);
}

.plans-grid.modern-cards .plan-card.popular:hover,
.plans-grid.bootstrap-cards .plan-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,102,204,0.25);
}

.plans-grid.modern-cards .popular-badge,
.plans-grid.bootstrap-cards .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
    z-index: 10;
}

.plans-grid.modern-cards .plan-header,
.plans-grid.bootstrap-cards .plan-header {
    background: #fff;
    padding: 40px 30px 25px;
    text-align: center;
    border-bottom: none;
}

.plans-grid.modern-cards .plan-card.popular .plan-header,
.plans-grid.bootstrap-cards .plan-card.popular .plan-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding-top: 50px;
    border-radius: 17px 17px 0 0;
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #4d94ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0,102,204,0.25);
}

.plan-icon i {
    font-size: 28px;
    color: #fff;
}

.plans-grid.modern-cards .plan-card.popular .plan-icon,
.plans-grid.bootstrap-cards .plan-card.popular .plan-icon {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.plans-grid.modern-cards .plan-header h3,
.plans-grid.bootstrap-cards .plan-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.plans-grid.modern-cards .plan-card.popular .plan-header h3,
.plans-grid.bootstrap-cards .plan-card.popular .plan-header h3 {
    color: #fff;
}

.plans-grid.modern-cards .plan-price,
.plans-grid.bootstrap-cards .plan-price {
    margin-top: 5px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plans-grid.modern-cards .plan-price .currency,
.plans-grid.bootstrap-cards .plan-price .currency {
    font-size: 26px;
    font-weight: 700;
    vertical-align: top;
    color: var(--primary-color);
}

.plans-grid.modern-cards .plan-card.popular .plan-price .currency,
.plans-grid.bootstrap-cards .plan-card.popular .plan-price .currency {
    color: #fff;
}

.plans-grid.modern-cards .plan-price .amount,
.plans-grid.bootstrap-cards .plan-price .amount {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: var(--dark-color);
}

.plans-grid.modern-cards .plan-card.popular .plan-price .amount,
.plans-grid.bootstrap-cards .plan-card.popular .plan-price .amount {
    color: #fff;
}

.plans-grid.modern-cards .plan-price .period,
.plans-grid.bootstrap-cards .plan-price .period {
    font-size: 15px;
    color: var(--gray-color);
    font-weight: 500;
    margin-left: 5px;
}

.plans-grid.modern-cards .plan-card.popular .plan-price .period,
.plans-grid.bootstrap-cards .plan-card.popular .plan-price .period {
    color: rgba(255,255,255,0.8);
}

.plan-body {
    padding: 30px;
    flex-grow: 1;
    background: #fff;
}

.plans-grid.modern-cards .plan-features,
.plans-grid.bootstrap-cards .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plans-grid.modern-cards .plan-features li,
.plans-grid.bootstrap-cards .plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.plans-grid.modern-cards .plan-features li:last-child,
.plans-grid.bootstrap-cards .plan-features li:last-child {
    border-bottom: none;
}

.plans-grid.modern-cards .plan-features i,
.plans-grid.bootstrap-cards .plan-features i {
    color: var(--success-color);
    font-size: 16px;
}

.plan-footer {
    padding: 0 30px 30px;
    background: #fff;
    border-radius: 0 0 17px 17px;
}

.plans-grid.modern-cards .plan-footer .btn,
.plans-grid.bootstrap-cards .plan-footer .btn {
    width: 100%;
    padding: 16px 25px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plans-grid.modern-cards .plan-card.popular .plan-footer .btn,
.plans-grid.bootstrap-cards .plan-card.popular .plan-footer .btn {
    background: linear-gradient(135deg, var(--secondary-color), #ff8533);
    box-shadow: 0 6px 20px rgba(255,102,0,0.35);
}

.plans-grid.modern-cards .plan-card.popular .plan-footer .btn:hover,
.plans-grid.bootstrap-cards .plan-card.popular .plan-footer .btn:hover {
    background: linear-gradient(135deg, #e65c00, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.4);
}

@media (max-width: 992px) {
    .plans-grid.modern-cards,
    .plans-grid.bootstrap-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .plans-grid.modern-cards .plan-card.popular,
    .plans-grid.bootstrap-cards .plan-card.popular {
        transform: none;
    }
    
    .plans-grid.modern-cards .plan-card.popular:hover,
    .plans-grid.bootstrap-cards .plan-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 650px) {
    .plans-grid.modern-cards,
    .plans-grid.bootstrap-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.plans-grid.bootstrap-cards .plan-features i {
    color: var(--success-color);
    font-size: 16px;
}

.plan-footer {
    padding: 0 25px 25px;
}

.plan-footer .btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .plans-grid.bootstrap-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid.bootstrap-cards .plan-card.popular {
        transform: none;
    }
    
    .plans-grid.bootstrap-cards .plan-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .plans-grid.bootstrap-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-toggle {
        flex-wrap: wrap;
    }
}
