:root {
    /* Color Palette - Cyber Blue & Emerald Green */
    --bg-dark: #030305;
    --bg-card: rgba(18, 18, 20, 0.6);
    --accent-primary: #007aff;
    --accent-success: #00ff88;
    --accent-secondary: #00e5ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a5;
    --gradient-1: linear-gradient(135deg, #007aff 0%, #00ff88 100%);
    --gradient-2: linear-gradient(45deg, #00ff88 0%, #00e5ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    
    /* Layout */
    --container-width: 1200px;
    --nav-height: 80px;
    --section-padding: 80px;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    color-scheme: dark;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-success);
}

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

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    padding: 10px 28px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-success);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.logo:hover {
    transform: scale(1.02);
}

.logo span {
    color: var(--accent-primary);
    margin-left: 2px;
}

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

.nav-links li {
    position: relative;
}

.nav-links a:not(.btn-primary):not(.btn-secondary) {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn-primary):hover::after,
.nav-links a.active:not(.btn-primary)::after {
    width: 100%;
}

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

.nav-links a.active {
    font-weight: 700;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

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

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.2) translate(10px, -20px); }
    100% { transform: scale(1) translate(0, 0); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #080808;
}

.section-header {
    margin-bottom: 60px;
}

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

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-group h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-primary);
    padding-left: 15px;
}

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

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

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

.btn-text {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 12px;
}

.btn-text i {
    font-size: 0.8rem;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-list i {
    color: #4ade80;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
}

input, select, textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid var(--glass-border);
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
}

select option {
    background-color: #1a1a1a;
    color: white;
}

select option:checked {
    background-color: var(--accent-primary);
    color: white;
}

select optgroup {
    background-color: #050505;
    color: var(--accent-primary);
    font-weight: 600;
    padding: 10px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #252525;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #020202;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 24px;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-contact i {
    width: 25px;
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-text.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .quote-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-btns, .hero-content p {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        transition: height 0.4s ease;
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
        display: flex;
        visibility: hidden;
    }

    .nav-links.active {
        height: calc(100vh - var(--nav-height));
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
    }

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

/* Contact Page Specific */
.contact-section {
    padding: 140px 0 60px;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header p {
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-success);
    background: rgba(255, 255, 255, 0.08);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent-success);
    background: rgba(0, 255, 136, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.info-card h4 {
    margin-bottom: 8px;
    color: white;
}

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

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
/* Services Page Specific */
.services-hero {
    padding: 140px 0 30px;
    background: radial-gradient(circle at top right, rgba(0,122,255,0.05), transparent 40%);
}

.services-hero h1 {
    font-size: 3.2rem; /* Slightly smaller for elegance */
    margin-bottom: 15px;
}

.services-hero p {
    max-width: 700px;
    margin: 0 auto;
}

.services-page-content {
    padding-top: 20px;
    padding-bottom: 80px;
}

.service-group-horizontal {
    margin-bottom: 60px;
}

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

.group-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.group-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    .service-group-horizontal {
        margin-bottom: 60px;
    }
}

/* Service Detail Pages */
.service-hero-mini {
    padding: 140px 0 30px;
    background: linear-gradient(to bottom, rgba(5,5,5,1), rgba(0,122,255,0.05));
    text-align: center;
}

.service-hero-mini p {
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding-bottom: 80px;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features-list {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: var(--accent-success);
    background: rgba(255, 255, 255, 0.08);
}

.feature-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-nav-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-top: 30px;
}

.service-nav-card h4 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.service-nav-card ul {
    list-style: none;
}

.service-nav-card li {
    margin-bottom: 12px;
}

.service-nav-card a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.service-nav-card a:hover {
    color: var(--accent-primary);
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Page */
.portfolio-section {
    padding-bottom: 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 25px;
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Quote Page Specific */
.get-quote-section {
    padding: 120px 0 60px;
}

.quote-page-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

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

.quote-form-main {
    padding: 40px;
    border-radius: 30px;
}

@media (max-width: 992px) {
    .quote-page-wrapper {
        grid-template-columns: 1fr;
    }
    .quote-benefits {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .benefit-card {
        flex: 1 1 250px;
    }
}

/* Blog Page */
.blog-filters-section {
    padding: 40px 0;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.blog-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-success);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--accent-primary);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card h3 a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--accent-primary);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 0 100px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover, .page-link.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

@media (max-width: 768px) {
    .blog-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .filter-btn {
        white-space: nowrap;
    }
}

/* Toolbox Marquee */
.toolbox-section {
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, rgba(0, 122, 255, 0.03), transparent);
}

.toolbox-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.toolbox-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.toolbox-track:hover {
    animation-play-state: paused;
}

.tool-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.tool-item i {
    font-size: 2.22rem;
    color: var(--accent-primary);
}

.tool-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.tool-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * (280px * 8 + 30px * 8)));
    }
}

@media (max-width: 768px) {
    .tool-item {
        min-width: 220px;
        padding: 15px 20px;
    }
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-1 * (220px * 8 + 30px * 8)));
        }
    }
}

/* Futuristic Background & Particles */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: glow-float 20s infinite alternate-reverse;
}

.glow-1 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-primary);
    top: -10%;
    right: -10%;
}

.glow-2 {
    width: 40vw;
    height: 40vw;
    background: #7000ff;
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

.glow-3 {
    width: 30vw;
    height: 30vw;
    background: #00d4ff;
    top: 40%;
    left: 40%;
    animation-direction: alternate;
    animation-duration: 30s;
}

@keyframes glow-float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, 50px) scale(1.1);
    }
    100% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Professional Motion Utilities */
.reveal-text, .reveal-card, .reveal-blur, .reveal-zoom, .reveal-slide-left, .reveal-slide-right {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.reveal-text { transform: translateY(30px); }
.reveal-card { transform: translateY(50px) scale(0.95); }
.reveal-blur { filter: blur(20px); transform: translateY(20px); }
.reveal-zoom { transform: scale(0.8); }
.reveal-slide-left { transform: translateX(-50px); }
.reveal-slide-right { transform: translateX(50px); }

.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(0) scale(1) !important;
    filter: blur(0) !important;
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Interactive Hover Effects */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover-glow {
    position: relative;
    z-index: 1;
}

.hover-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-glow:hover::after {
    opacity: 0.5;
    filter: blur(15px);
}

/* Scroll Parallax */
.parallax-bg {
    transform: translateY(calc(var(--scroll-y) * 0.1px));
}

.parallax-fg {
    transform: translateY(calc(var(--scroll-y) * -0.05px));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0088ff;
}

/* Global Section Spacing */
section, header:not(.navbar) {
    padding: 90px 0;
}

.service-hero-mini {
    padding: 120px 0 60px;
}

/* Section Spacing System */
.about-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr; /* Text on top */
    gap: 40px;
    text-align: center;
}

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

.section-badge {
    background: rgba(0, 122, 255, 0.1);
    color: var(--accent-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding: 35px;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.stat-item {
    padding: 10px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--glass-border);
}

.stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-item::after { display: none; }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Modernized Services */
.home-blog-section {
    padding: 50px 0;
}

.services {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.service-group h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-primary);
    background: linear-gradient(to right, rgba(0, 122, 255, 0.1), transparent);
    padding: 10px 20px;
    border-radius: 4px;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1.5px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 136, 0.1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card i {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.btn-text {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 12px;
}

/* Quote Section Homepage */
.quote-section {
    padding: 50px 0 100px;
    background: linear-gradient(to top, rgba(0, 122, 255, 0.05), transparent);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.quote-form-container {
    padding: 40px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}


@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    .about-section, .services, .home-blog-section, .toolbox-section, .quote-section {
        padding: 60px 0;
    }
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) rotate(8deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

/* Client Login Header Link */
.client-login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    transition: var(--transition-smooth);
}

.client-login-link i {
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.client-login-link:hover {
    color: var(--text-main) !important;
}

/* AI Evaluator Section */
.ai-evaluator-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(0, 122, 255, 0.05), transparent);
}

.evaluator-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.domain-input-group {
    display: flex;
    max-width: 700px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px;
    transition: var(--transition-smooth);
}

.domain-input-group:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.2);
}

.domain-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.btn-analyze {
    background: var(--gradient-1);
    border: none;
    padding: 0 35px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-analyze:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.analysis-loading {
    display: none;
    margin-top: 30px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 122, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 122, 255, 0); }
}

/* Industry Carousel Styles */
.industries-carousel {
    width: 100%;
    margin-top: 50px;
    position: relative;
    padding: 30px 0;
}

.industries-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-industries 40s linear infinite;
}

.industries-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-industries {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 5 - 30px * 5)); }
}

.industries-carousel .industry-box {
    width: 350px;
    flex-shrink: 0;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.industries-carousel .industry-box:hover {
    border-color: var(--accent-success);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.industry-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.industry-box ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.industry-box ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-box ul li i {
    color: var(--accent-success);
    font-size: 0.8rem;
}

.industry-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.industry-quote-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: scale(1.05);
}
/* --- COMPREHENSIVE RESPONSIVITY SYSTEM --- */

@media (max-width: 1200px) {
    :root { --container-width: 95%; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-btns { justify-content: center; }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-info { text-align: center; }
    .benefit-list { display: inline-block; text-align: left; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--nav-height));
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 50px 20px;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border-left: 1px solid var(--glass-border);
        align-items: flex-start;
        z-index: 999;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links li { width: 100%; }
    
    .nav-links a {
        font-size: 1.2rem !important;
        display: block;
        padding: 15px 0 !important;
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    
    .about-stats {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-track {
        animation: scroll-industries 20s linear infinite;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .magnetic-wrap, .hero-btns a { width: 100%; }
    
    .section-header h2 { font-size: 2rem; }
    
    .evaluator-card { padding: 30px 20px; }
    
    .domain-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .domain-input-group input {
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .btn-analyze {
        width: 100%;
        justify-content: center;
        padding: 18px;
        border-radius: 15px;
    }
}

/* --- PREMIUM CONVERSION ECOSYSTEM --- */

/* Glass Popups */
.premium-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.premium-popup-card {
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.95), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 40px;
    width: 90%;
    max-width: 600px;
    padding: 60px;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 136, 0.1);
}

.premium-popup-overlay.active .premium-popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: #4a4a4a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover { color: white; }

.subscribe-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    margin-top: 30px;
    transition: border-color 0.3s ease;
}

.subscribe-input-group:focus-within {
    border-color: #00ff88;
}

.subscribe-input-group input {
    background: transparent;
    border: none;
    flex-grow: 1;
    color: white;
    padding: 0 20px;
    font-size: 1rem;
}

.btn-subscribe {
    background: #00ff88;
    color: #030303;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Slide-in Notification */
.slide-in-notification {
    position: fixed;
    bottom: 30px;
    right: -400px;
    width: 350px;
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-in-notification.active {
    right: 30px;
}

.slide-in-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007aff;
    font-size: 1.2rem;
}

.slide-in-content p {
    font-size: 0.85rem;
    color: #a0a0a5;
    margin-top: 5px;
}

/* --- PREMIUM WHATSAPP ECOSYSTEM --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-button {
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-chat-window {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 320px;
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.95), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.whatsapp-chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(90deg, #128c7e, #25d366);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-agent-thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-agent-info h4 {
    font-size: 0.95rem;
    color: white;
    font-family: 'Outfit';
    margin: 0;
}

.chat-agent-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.chat-body {
    padding: 25px;
    background: #e5ddd5 url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-blend-mode: overlay;
}

.chat-bubble {
    background: white;
    padding: 12px 15px;
    border-radius: 0 15px 15px 15px;
    color: #4a4a4a;
    font-size: 0.85rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    max-width: 90%;
}

.chat-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    border: 10px solid transparent;
    border-top-color: white;
}

.chat-footer {
    padding: 15px 25px 25px;
}

.btn-whatsapp-start {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-whatsapp-start:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .premium-popup-card { padding: 40px 20px; }
    .subscribe-input-group { flex-direction: column; gap: 15px; padding: 0; background: transparent; border: none; }
    .subscribe-input-group input { background: rgba(255,255,255,0.05); padding: 18px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
    .btn-subscribe { width: 100%; padding: 18px; }
    .slide-in-notification { width: calc(100% - 40px); left: 20px; right: 20px !important; bottom: -200px; }
    .slide-in-notification.active { bottom: 20px; }
    .whatsapp-widget { left: 20px; bottom: 20px; }
    .whatsapp-chat-window { width: 280px; }
}

/* --- PREMIUM BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007aff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #007aff;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}
