:root {
    /* Color Palette */
    --primary-color: #FD7D00; /* BVS Orange */
    --primary-glow: rgba(253, 125, 0, 0.2);
    --primary-dark: #cc6400;
    --secondary-color: #FB0012; /* BVS Red */
    --bg-dark: #ffffff; /* Changed to White */
    --bg-darker: #f5f5f7; /* Changed to Light Gray */
    --text-light: #1d1d1f; /* Changed to Dark Text */
    --text-muted: #6e6e73;
    
    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.w-100 { width: 100%; }
.mt-3 { margin-top: 1rem; }
.text-center { text-align: center; }
.d-block { display: block; }
.text-info { color: #0A84FF; }
.text-success { color: #32d74b; }
.text-warning { color: #ffd60a; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(253, 125, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 125, 0, 0.5);
}

.btn-secondary {
    background: var(--glass-border);
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

.brand-logo:hover {
    filter: drop-shadow(0 0 8px rgba(253, 125, 0, 0.3));
}

.brand-logo-footer {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Partners Section */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    width: 120px;
}

.partner-item i {
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.partner-item span {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.partner-item:hover span {
    opacity: 1;
    color: var(--text-light);
}

/* Footer Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 1) 100%), url('../assets/hero_bg_light.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
}

.server-status {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.server-status:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.status-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-divider {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0 4px;
    border-top: 1px solid var(--glass-border);
    margin-top: 6px;
}

.stat-val {
    font-weight: 600;
    font-family: var(--font-heading);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(253, 125, 0, 0.04);
    transform: translateY(-10px);
    border-color: rgba(253, 125, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 125, 0, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Interactive Tools */
.bg-dark {
    background-color: var(--bg-darker);
    position: relative;
}

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

.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.tool-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.tool-body {
    padding: 30px 20px;
}

.tool-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
}

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

.tool-result {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.tool-result.success {
    display: block;
    background: rgba(50, 215, 75, 0.1);
    color: #32d74b;
    border: 1px solid rgba(50, 215, 75, 0.2);
}

.tool-result.error {
    display: block;
    background: rgba(255, 69, 58, 0.1);
    color: #ff453a;
    border: 1px solid rgba(255, 69, 58, 0.2);
}

/* Speedtest Mock */
.speedtest-body {
    text-align: center;
}

.speedtest-meter {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: conic-gradient(var(--primary-color) 0%, transparent 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(253, 125, 0, 0.2);
    transition: background 0.1s linear;
}

.speedtest-meter::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: var(--bg-dark);
    border-radius: 50%;
}

.meter-circle {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

#speedValue {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.unit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.speedtest-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.stat {
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    background: rgba(253, 125, 0, 0.04);
}

.price-card.popular {
    background: linear-gradient(180deg, rgba(253, 125, 0, 0.1) 0%, var(--glass-bg) 100%);
    border-color: rgba(253, 125, 0, 0.3);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-light);
}

.currency {
    font-size: 1rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
}

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

.footer-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

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

.footer-links h4, .footer-contact h4 {
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

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

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    background: var(--bg-darker);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-light);
}

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

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f5f5f7;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
}

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

.form-group select {
    appearance: none;
}

.form-group select option {
    background: #ffffff;
    color: var(--text-light);
}

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

.forgot-pwd {
    color: var(--primary-color);
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Live Dot */
.live-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #32d74b;
    margin-left: auto;
    box-shadow: 0 0 6px #32d74b;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, rgba(253, 125, 0, 0.12) 0%, rgba(251, 0, 18, 0.06) 100%);
    border-top: 1px solid rgba(253, 125, 0, 0.15);
    border-bottom: 1px solid rgba(253, 125, 0, 0.15);
    padding: 50px 0;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile Nav Dropdown */
.mobile-nav {
    display: none; /* always hidden on desktop */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.3s ease;
    width: 100%;
}

.mobile-nav.open {
    max-height: 400px;
    padding: 10px 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

.mobile-nav ul li a i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.mobile-nav ul li a:hover {
    background: rgba(253, 125, 0, 0.08);
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-portal-link {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* WhatsApp Float Button */
.wa-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 900;
    transition: var(--transition);
    animation: wa-bounce 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 125, 0, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 125, 0, 0.6);
}

/* Modal Icon */
.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 125, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.6rem;
    color: var(--primary-color);
}

/* btn-link style */
.btn-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.8;
    transition: var(--transition);
}

.btn-link:hover {
    opacity: 1;
}

/* =============================================
   TESTIMONIAL SECTION
============================================= */
.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(253, 125, 0, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd60a;
    font-size: 0.9rem;
}

.testimonial-rating i.empty {
    color: rgba(0, 0, 0, 0.12);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-meta i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.tNav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.tNav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.t-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   TEAM SECTION
============================================= */
.team {
    background: var(--bg-dark);
}

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

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 125, 0, 0.3);
    box-shadow: 0 20px 40px rgba(253, 125, 0, 0.12);
}

.team-photo-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    display: block;
}

.team-card:hover .team-photo-wrap img {
    transform: scale(1.06);
}

.team-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: rgba(253, 125, 0, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    gap: 10px;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE STYLES
============================================= */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .server-status {
        transform: none;
        max-width: 400px;
        width: 100%;
    }
    
    .price-card.popular {
        transform: none;
    }
    
    .price-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        padding: 14px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    /* Hide the Client Portal button text on mobile, show only icon */
    .nav-actions .btn-outline span {
        display: none;
    }

    /* Hide Client Portal button entirely on small mobile */
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255,255,255,0.07);
        border: 1px solid var(--glass-border);
        margin-left: 0;
        font-size: 1.2rem;
    }

    /* --- Hero --- */
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .badge {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

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

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .server-status {
        transform: none;
    }

    /* --- Sections --- */
    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* --- Services Grid --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }

    /* --- Team --- */
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .team-info p {
        display: none;
    }

    /* --- Tools --- */
    .tools-container {
        grid-template-columns: 1fr;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        width: 100%;
        text-align: center;
    }

    /* --- Pricing --- */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 30px 24px;
    }

    .price-card.popular {
        transform: none;
        order: -1; /* bring popular card to top on mobile */
    }

    .price {
        font-size: 2rem;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding-top: 50px;
    }

    /* --- Modals --- */
    .modal-content {
        max-width: 100%;
        width: calc(100% - 32px);
        padding: 28px 20px;
        border-radius: 16px;
        margin: 0 16px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }
}

/* Extra small mobile (420px and below) */
@media (max-width: 420px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }
}
