/* ===========================
   SMM.BZ - Global Styles
   Future Tech + Bold Classy Design
   =========================== */

:root {
    --primary-color: #00D4FF;
    --primary-dark: #0099CC;
    --secondary-color: #A100F2;
    --accent-color: #FF006E;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --card-bg: #1a1f3a;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8D4;
    --border-color: #2a3157;
    --success-color: #00D97E;
    --warning-color: #FF9500;
    --error-color: #FF4757;
    --gradient-1: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    --gradient-2: linear-gradient(135deg, #A100F2 0%, #FF006E 100%);
    --gradient-3: linear-gradient(135deg, #00D4FF 0%, #A100F2 50%, #FF006E 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

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

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

.btn-light {
    background: var(--primary-color);
    color: var(--darker-bg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.navbar-brand {
    flex-shrink: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

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

.hero {
    margin-top: 80px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    margin: 0;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.gradient-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.blob-1 {
    background: var(--primary-color);
    width: 300px;
    height: 300px;
    top: 0;
    right: 50px;
    animation: blob 8s infinite;
}

.blob-2 {
    background: var(--secondary-color);
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 200px;
    animation: blob 8s infinite 2s;
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(0, 30px); }
    75% { transform: translate(-30px, 0); }
}

.dashboard-preview {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.preview-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
}

.preview-content {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: 4px;
    transition: var(--transition);
}

.chart-bar:hover {
    background: var(--gradient-2);
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-visual {
        height: 300px;
    }
}

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

.features {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(161, 0, 242, 0.05) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--darker-bg);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    margin: 0;
}

/* ===========================
   Services Overview
   =========================== */

.services-overview {
    padding: 80px 0;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* ===========================
   Pricing Section
   =========================== */

.pricing-preview {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gradient-1);
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

/* ===========================
   Page Header
   =========================== */

.page-header {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(161, 0, 242, 0.1) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    margin: 0;
}

/* ===========================
   Services Table
   =========================== */

.service-category {
    padding: 60px 0;
}

.service-category.alt {
    background: rgba(26, 31, 58, 0.5);
}

.category-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.category-info h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.services-table {
    overflow-x: auto;
}

.services-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.services-table thead {
    background: rgba(0, 212, 255, 0.1);
}

.services-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.services-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.services-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* ===========================
   Contact Section
   =========================== */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0.25rem 0;
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ===========================
   FAQ Section
   =========================== */

.faq-section {
    padding: 60px 0;
    background: rgba(26, 31, 58, 0.5);
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===========================
   Authentication Pages
   =========================== */

.auth-page {
    background: var(--dark-bg);
}

.auth-section {
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.auth-container.login-container {
    grid-template-columns: 1fr 1fr;
}

.auth-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form fieldset {
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.auth-form legend {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    flex: 1;
    margin: 0;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--primary-color);
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: var(--error-color);
    transition: var(--transition);
}

.strength-bar.weak::after {
    width: 33%;
    background: var(--error-color);
}

.strength-bar.medium::after {
    width: 66%;
    background: var(--warning-color);
}

.strength-bar.strong::after {
    width: 100%;
    background: var(--success-color);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-group.checkbox label {
    margin: 0 0 0 0.75rem;
    font-weight: 400;
}

.error-message,
.success-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.error-message {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.success-message {
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.error-hint {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 16px;
}

.captcha-placeholder {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.divider {
    text-align: center;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-social:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-social.google:hover {
    border-color: #EA4335;
    color: #EA4335;
}

.btn-social.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-link {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

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

.auth-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.benefit-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

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

.stat-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

.security-box {
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.security-box h4 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.security-box p {
    margin: 0;
    font-size: 0.9rem;
}

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

    .auth-side {
        display: none;
    }

    .auth-box {
        padding: 1.5rem;
    }

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

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

.cta-section {
    padding: 80px 0;
    background: var(--gradient-2);
    text-align: center;
    color: var(--darker-bg);
}

.cta-section h2 {
    color: var(--darker-bg);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(10, 14, 39, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Contact Form
   =========================== */

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    margin: 0;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

/* ===========================
   Utilities
   =========================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .features-grid,
    .services-showcase,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-table {
        font-size: 0.9rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.75rem 0.5rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
