/* ===================== */
/* ULTRA MODERN DESIGN   */
/* ===================== */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0f0f1e;
    --dark-secondary: #1a1a2e;
    --text-light: #e0e0ff;
    --text-muted: #a0a0c0;
    --glow: rgba(102, 126, 234, 0.4);
    
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.mobile-call-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--secondary-gradient);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.35);
    z-index: 2000;
}

.mobile-call-fab i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .mobile-call-fab {
        display: inline-flex;
    }
}

/* ===================== */
/* ANIMATIONS           */
/* ===================== */

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

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(245, 87, 108, 0.4), 0 0 20px rgba(245, 87, 108, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(245, 87, 108, 0.8), 0 0 40px rgba(245, 87, 108, 0.4);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(245, 87, 108, 0.3), 0 12px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(245, 87, 108, 0.6), 0 15px 40px rgba(245, 87, 108, 0.2);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================== */
/* SHOP                  */
/* ===================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(79, 172, 254, 0.15);
    color: #9ed8ff;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.shop-hero {
    padding: 110px 0 70px;
    background: radial-gradient(circle at 15% 10%, rgba(79, 172, 254, 0.18), transparent 40%),
                radial-gradient(circle at 85% 15%, rgba(244, 144, 251, 0.16), transparent 42%),
                linear-gradient(180deg, #0f0f1e 0%, #0b0b18 100%);
    border-bottom: 1px solid rgba(79, 172, 254, 0.12);
}

.shop-hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: center;
}

.shop-hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 16px 0 12px;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.shop-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-hero-highlight {
    display: grid;
    gap: 15px;
}

.highlight-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.35);
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.highlight-card i {
    color: #4facfe;
    font-size: 1.4rem;
}

.highlight-label {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.highlight-value {
    color: var(--text-light);
    margin: 0;
    font-weight: 700;
}

.shop-content {
    padding: 70px 0 100px;
    background: #0b0b18;
}

.shop-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.shop-main {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.9), rgba(16, 18, 36, 0.8));
    border: 1px solid rgba(79, 172, 254, 0.18);
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(79, 172, 254, 0.06);
    border: 1px solid rgba(79, 172, 254, 0.18);
    border-radius: 14px;
}

.filter-btn {
    border: 1px solid rgba(79, 172, 254, 0.25);
    background: rgba(79, 172, 254, 0.08);
    color: var(--text-light);
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
}

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

.product-card {
    background: linear-gradient(150deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.7));
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(244, 144, 251, 0.18);
    color: #f6c1ff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(244, 144, 251, 0.35);
    z-index: 1;
}

.status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid transparent;
    z-index: 1;
}

.status-badge.is-available {
    background: rgba(74, 222, 128, 0.18);
    color: #86efac;
    border-color: rgba(74, 222, 128, 0.35);
}

.status-badge.is-sold {
    background: rgba(248, 113, 113, 0.2);
    color: #fca5a5;
    border-color: rgba(248, 113, 113, 0.35);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.08), transparent 40%);
    transform: rotate(8deg);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(79, 172, 254, 0.18);
    border-color: rgba(102, 126, 234, 0.4);
}

.product-card.is-sold {
    opacity: 0.55;
    filter: grayscale(0.4);
}

.product-card.is-sold:hover {
    transform: none;
    box-shadow: none;
}

.product-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.product-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(79, 172, 254, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.product-thumb.placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.12), rgba(244, 144, 251, 0.12));
}

.price-chip {
    background: var(--secondary-gradient);
    color: #fff;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 10px;
}

.chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    background: rgba(244, 144, 251, 0.12);
    color: #f093fb;
}

.product-name {
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.product-price {
    font-weight: 700;
    color: #f093fb;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.product-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-pill {
    background: rgba(244, 144, 251, 0.12);
    color: #f093fb;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.product-actions small {
    color: var(--text-muted);
}

.product-action-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.product-card button {
    border: none;
    background: var(--secondary-gradient);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.product-card button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.4);
}

.product-card .ghost-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 144, 251, 0.25);
}

.cart-panel {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.9), rgba(20, 22, 40, 0.85));
    border: 1px solid rgba(118, 75, 162, 0.4);
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 20px;
    height: fit-content;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-header i {
    color: #f093fb;
    font-size: 1.4rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item {
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item span {
    color: var(--text-light);
}

.cart-item button {
    border: none;
    background: transparent;
    color: #f093fb;
    cursor: pointer;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total strong {
    font-size: 1.2rem;
    color: #f093fb;
}

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

.cart-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Product modal */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 18, 0.65);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.product-modal.hidden {
    display: none;
}

.product-modal .modal-card {
    background: linear-gradient(135deg, rgba(17, 20, 37, 0.95), rgba(11, 15, 28, 0.95));
    border: 1px solid rgba(79, 172, 254, 0.28);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    max-width: 1080px;
    width: 100%;
    padding: 24px;
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.product-modal .modal-card::after {
    content: "";
    position: absolute;
    inset: -30% -50% auto auto;
    height: 220px;
    width: 220px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.18), transparent 55%);
    pointer-events: none;
}

.product-modal .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(245, 87, 108, 0.24);
    border: 1px solid rgba(245, 87, 108, 0.55);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    transition: var(--transition);
    z-index: 3;
}

.product-modal .close-btn:hover {
    transform: scale(1.06);
    background: rgba(245, 87, 108, 0.4);
}

.modal-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 6px;
    padding-right: 56px;
}

.modal-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.modal-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: #f093fb;
    margin: 2px 0 8px;
    white-space: nowrap;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 8px;
}

.modal-info-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
}

.modal-info-item .label {
    display: block;
    font-size: 0.78rem;
    color: #b7b7c9;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-info-item strong {
    color: #fff;
    font-size: 0.98rem;
}

.modal-spec-title {
    margin-top: 10px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #e8e8f3;
}

.modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.modal-actions .add-to-cart,
.modal-actions .ghost-btn,
.modal-actions .btn-secondary {
    border: 0;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-actions .add-to-cart {
    background: var(--secondary-gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(245, 87, 108, 0.28);
}

.modal-actions .add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(245, 87, 108, 0.34);
}

.modal-actions .btn-secondary {
    background: rgba(79, 172, 254, 0.15);
    color: var(--text-light);
    border: 1px solid rgba(79, 172, 254, 0.45);
}

.modal-actions .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(79, 172, 254, 0.24);
}

.modal-actions .ghost-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-actions .ghost-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.modal-actions button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.product-modal .modal-body .product-desc {
    color: var(--text-light);
    line-height: 1.65;
}

.product-modal .modal-body #modalSpecs {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 6px;
}

.spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    margin-top: 4px;
}

.spec-list li {
    list-style: none;
    position: relative;
    padding-left: 14px;
}

.spec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4facfe;
}

@media (max-width: 720px) {
    .product-modal {
        padding: 14px;
    }
    .product-modal .modal-card {
        grid-template-columns: 1fr;
        padding: 18px;
        max-height: 88vh;
        overflow-y: auto;
    }
    .modal-image {
        min-height: 240px;
        height: 240px;
    }
    .modal-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal-info-grid {
        grid-template-columns: 1fr;
    }
    .modal-actions {
        flex-direction: column;
    }
    .modal-actions .add-to-cart,
    .modal-actions .btn,
    .modal-actions .ghost-btn {
        width: 100%;
    }
}

/* ===================== */
/* ADMIN AREA            */
/* ===================== */

.hidden {
    display: none !important;
}

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

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-subtitle {
    color: var(--text-muted);
    margin-top: 6px;
}

.admin-card {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.9), rgba(16, 18, 36, 0.8));
    border: 1px solid rgba(79, 172, 254, 0.18);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.admin-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    border: 1px solid rgba(79, 172, 254, 0.25);
    background: rgba(79, 172, 254, 0.08);
    color: var(--text-light);
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
}

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

.admin-form .form-group label {
    text-transform: none;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.25);
}

.admin-item small {
    color: var(--text-muted);
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-actions button {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.admin-actions .danger {
    border-color: rgba(248, 113, 113, 0.4);
    color: #fca5a5;
}

@media (max-width: 720px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .product-modal .modal-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .cart-panel {
        position: relative;
        top: 0;
    }
}

/* ===================== */
/* PARTICLE CANVAS       */
/* ===================== */

/* Removed - particle system disabled */

/* ===================== */
/* 3D TECH GRID ANIMATION */
/* ===================== */

@keyframes circuitPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

@keyframes electricFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes dotPulse {
    0%, 100% { r: 2px; opacity: 0.4; }
    50% { r: 4px; opacity: 1; }
}

@keyframes lineGlow {
    0%, 100% { stroke-width: 1.5; filter: drop-shadow(0 0 2px rgba(79, 172, 254, 0.3)); }
    50% { stroke-width: 2.5; filter: drop-shadow(0 0 8px rgba(79, 172, 254, 0.8)); }
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

@keyframes nodePulseAdvanced {
    0% { r: 3px; fill-opacity: 0.4; filter: drop-shadow(0 0 3px rgba(79, 172, 254, 0.5)); }
    50% { r: 6px; fill-opacity: 1; filter: drop-shadow(0 0 15px rgba(79, 172, 254, 1)); }
    100% { r: 3px; fill-opacity: 0.4; filter: drop-shadow(0 0 3px rgba(79, 172, 254, 0.5)); }
}

.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.circuit-line {
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: lineGlow 3s ease-in-out infinite;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: lineGlow 3s ease-in-out infinite, drawLine 6s ease-in-out forwards;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

.circuit-line:nth-child(1) { animation: lineGlow 3s ease-in-out infinite, drawLine 4s ease-in-out forwards; }
.circuit-line:nth-child(2) { animation: lineGlow 3s ease-in-out infinite 0.5s, drawLine 4s ease-in-out forwards 0.5s; }
.circuit-line:nth-child(3) { animation: lineGlow 3s ease-in-out infinite 1s, drawLine 4s ease-in-out forwards 1s; }
.circuit-line:nth-child(4) { animation: lineGlow 3s ease-in-out infinite 1.5s, drawLine 4s ease-in-out forwards 1.5s; }
.circuit-line:nth-child(5) { animation: lineGlow 3s ease-in-out infinite 2s, drawLine 4s ease-in-out forwards 2s; }
.circuit-line:nth-child(6) { animation: lineGlow 3s ease-in-out infinite 2.5s, drawLine 4s ease-in-out forwards 2.5s; }

.node {
    fill: #4facfe;
    animation: nodePulseAdvanced 2.5s ease-in-out infinite;
}

.node:nth-child(1) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0s; fill: #4facfe; }
.node:nth-child(2) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.2s; fill: #667eea; }
.node:nth-child(3) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.4s; fill: #764ba2; }
.node:nth-child(4) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.6s; fill: #4facfe; }
.node:nth-child(5) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.8s; fill: #667eea; }
.node:nth-child(6) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1s; fill: #764ba2; }
.node:nth-child(7) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.2s; fill: #4facfe; }
.node:nth-child(8) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.4s; fill: #667eea; }
.node:nth-child(9) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.6s; fill: #764ba2; }
.node:nth-child(10) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.8s; fill: #4facfe; }
.node:nth-child(11) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.3s; fill: #667eea; }
.node:nth-child(12) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.5s; fill: #764ba2; }
.node:nth-child(13) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.7s; fill: #4facfe; }
.node:nth-child(14) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 0.9s; fill: #667eea; }
.node:nth-child(15) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.1s; fill: #764ba2; }
.node:nth-child(16) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.3s; fill: #4facfe; }
.node:nth-child(17) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.5s; fill: #667eea; }
.node:nth-child(18) { animation: nodePulseAdvanced 2.5s ease-in-out infinite 1.7s; fill: #764ba2; }



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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* ===================== */
/* ANIMATIONS GLOBALES   */
/* ===================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--glow), 0 0 40px rgba(102, 126, 234, 0.2); }
    50% { box-shadow: 0 0 30px var(--glow), 0 0 60px rgba(102, 126, 234, 0.3); }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(245, 87, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0);
    }
}

/* Smooth animated gradient sweep across hero section */
@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Aurora-style moving radial gradients across the hero */
@keyframes auroraMove {
    0% {
        background-position:
            0% 0%,
            100% 0%,
            0% 100%,
            100% 100%;
    }
    50% {
        background-position:
            100% 0%,
            0% 100%,
            100% 100%,
            0% 0%;
    }
    100% {
        background-position:
            0% 0%,
            100% 0%,
            0% 100%,
            100% 100%;
    }
}

/* High-visibility rotating conic gradient */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pan an animated grid overlay diagonally */
@keyframes gridPan {
    0% { background-position: 0 0, 0 0, 0 0; }
    50% { background-position: 200px 200px, -200px 200px, 150px -150px; }
    100% { background-position: 0 0, 0 0, 0 0; }
}

/* Shimmer animated gradient for titles */
@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gentle breathing for CTA button */
@keyframes breathe {
    0% { box-shadow: 0 10px 30px rgba(245, 87, 108, 0.25); transform: translateY(0); }
    50% { box-shadow: 0 18px 40px rgba(245, 87, 108, 0.35); transform: translateY(-2px); }
    100% { box-shadow: 0 10px 30px rgba(245, 87, 108, 0.25); transform: translateY(0); }
}

/* ===================== */
/* LAYOUT               */
/* ===================== */

.container {
    margin: 0 auto;
    padding: 0 30px;
}

/* ===================== */
/* NAVBAR               */
/* ===================== */

.navbar {
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.logo:hover .logo-img {
    filter: brightness(1.2);
}

.logo i {
    font-size: 1.8rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: var(--transition);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a.active {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    background: var(--secondary-gradient) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 50px;
    color: #fff !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================== */
/* BUTTONS              */
/* ===================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-gradient);
    color: #fff;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    animation: breathe 6s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(245, 87, 108, 0.5), 0 0 30px rgba(245, 87, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(245, 87, 108, 0.5);
    animation: pulse-glow 2s;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gradient);
    border-image: var(--accent-gradient) 1;
}

.btn-secondary:hover {
    background: rgba(79, 172, 254, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.35);
    animation: pulse-glow 2s;
}

/* ===================== */
/* HERO SECTION         */
/* ===================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 120px 30px 80px 30px;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    align-items: center;
    gap: 4rem;
    padding: 8rem 30px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Aurora-style animated radial gradients */
    background:
        radial-gradient(40% 60% at 20% 30%, rgba(79, 172, 254, 0.16), transparent 60%),
        radial-gradient(60% 40% at 80% 25%, rgba(102, 126, 234, 0.14), transparent 60%),
        radial-gradient(50% 50% at 25% 80%, rgba(118, 75, 162, 0.12), transparent 60%),
        radial-gradient(55% 55% at 85% 80%, rgba(245, 87, 108, 0.12), transparent 60%);
    background-size:
        140% 140%,
        160% 160%,
        180% 180%,
        150% 150%;
    animation: auroraMove 28s ease-in-out infinite;
    will-change: background-position;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border-radius: 50%;
    background: conic-gradient(from 0deg at 50% 50%,
        rgba(79, 172, 254, 0.30) 0deg,
        rgba(102, 126, 234, 0.28) 90deg,
        rgba(118, 75, 162, 0.26) 180deg,
        rgba(240, 147, 251, 0.24) 270deg,
        rgba(245, 87, 108, 0.26) 360deg
    );
    opacity: 0.25;
    filter: blur(60px);
    animation: rotateSlow 25s linear infinite;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(45deg, rgba(79,172,254,0.08) 0px, rgba(79,172,254,0.08) 1px, transparent 1px, transparent 30px);
    background-size: 100% 100%, 100% 100%, 120% 120%;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    animation: gridPan 40s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideInLeft 0.8s ease-out;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: slideInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 10s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 20px rgba(245, 87, 108, 0.3));
    text-shadow: 0 0 30px rgba(245, 87, 108, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-trust-line {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(79, 172, 254, 0.35);
    background: rgba(79, 172, 254, 0.12);
    color: #c6e7ff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    transition: var(--transition);
}

.hero-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(245, 87, 108, 0.6);
}

.hero-text {
    flex: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-image i {
    font-size: 20rem;
    background: linear-gradient(135deg,
        #4facfe 0%,
        #667eea 25%,
        #764ba2 50%,
        #f093fb 75%,
        #f5576c 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(79, 172, 254, 0.3));
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* ===================== */
/* INTRO SECTION        */
/* ===================== */

.intro {
    padding: 6rem 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
    position: relative;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.intro .btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    width: auto;
}

.intro .btn i {
    margin-left: 0.5rem;
    font-size: 0.9em;
    transition: transform 0.25s ease;
}

.intro .btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .intro .btn {
        min-width: 200px;
    }
}

/* ===================== */
/* FEATURES SECTION     */
/* ===================== */

.features {
    padding: 6rem 30px;
    text-align: center;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 0 20px rgba(245, 87, 108, 0.3));
    animation: fadeInUp 0.8s ease;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(240, 147, 251, 0.08) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.25);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 126, 234, 0.5);
}

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

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 4rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

/* ===================== */
/* PAGE HEADER          */
/* ===================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
    color: #fff;
    padding: 6rem 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    animation: slideInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* ===================== */
/* SERVICES SECTION     */
/* ===================== */

.services-section {
    padding: 6rem 30px;
    text-align: center;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 0 20px rgba(245, 87, 108, 0.3));
    animation: fadeInUp 0.8s ease;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(240, 147, 251, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -100%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::after {
    opacity: 0.1;
    top: -50%;
    right: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(245, 87, 108, 0.5);
    box-shadow: 0 20px 50px rgba(245, 87, 108, 0.15);
}

.service-icon {
    font-size: 3rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-benefits i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.7rem;
    font-weight: 700;
}

/* ===================== */
/* ABOUT SECTION        */
/* ===================== */

.about-section {
    padding: 6rem 30px;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: slideInLeft 0.8s ease-out;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    padding: 1rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: var(--transition);
}

.about-list li:hover {
    padding-left: 1rem;
    color: var(--text-light);
}

.about-list strong {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    animation: slideInRight 0.8s ease-out;
}

.about-profile-card {
    position: relative;
    isolation: isolate;
    flex-direction: column;
    gap: 0.85rem;
}

.about-profile-card::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 197, 255, 0.24) 0%, rgba(142, 197, 255, 0) 72%);
    filter: blur(8px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.about-portrait {
    width: min(100%, 320px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.18) inset;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-identity-badge {
    margin: 0;
    color: #d5dbeb;
    text-align: center;
    line-height: 1.35;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 11px 14px;
    display: inline-flex;
    flex-direction: column;
    gap: 0.38rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-identity-badge strong {
    color: #fff;
    font-size: 1.04rem;
    letter-spacing: 0.24px;
}

.about-identity-badge .role-line {
    font-size: 0.9rem;
    opacity: 0.92;
}

.about-identity-badge .location-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    opacity: 0.95;
}

.about-identity-badge .location-line i {
    color: #8ec5ff;
}

.about-identity-badge .availability-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    font-size: 0.82rem;
    color: #cce7ff;
    background: rgba(142, 197, 255, 0.12);
    border: 1px solid rgba(142, 197, 255, 0.24);
    border-radius: 999px;
    padding: 4px 10px;
    margin-top: 2px;
}

.about-identity-badge .availability-line i {
    font-size: 0.85rem;
    background: none;
    -webkit-text-fill-color: currentColor;
    animation: none;
    filter: none;
    color: #95d0ff;
}

.about-profile-card:hover .about-portrait {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(142, 197, 255, 0.55);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 0, 0, 0.18) inset;
}

.about-profile-card:hover .about-identity-badge {
    transform: translateY(-3px);
    border-color: rgba(142, 197, 255, 0.45);
    background: linear-gradient(180deg, rgba(142, 197, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.about-image > i {
    font-size: 18rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(102, 126, 234, 0.3));
}

/* ===================== */
/* INTERVENTION ZONE    */
/* ===================== */

.intervention-zone {
    padding: 6rem 30px;
}

.intervention-zone h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.zone-card {
    background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
    color: #fff;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.2);
    animation: slideInUp 0.8s ease-out;
}

.zone-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.zone-card > * {
    position: relative;
    z-index: 1;
}

.zone-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.zone-card p {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

.zone-info {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
}

/* ===================== */
/* WHY CHOOSE SECTION   */
/* ===================== */

.why-choose {
    padding: 6rem 30px;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.reason-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    text-align: center;
    transition: var(--transition);
    animation: slideInUp 0.8s ease-out;
}

.reason-card:hover {
    transform: translateY(-15px);
    border-color: rgba(79, 172, 254, 0.6);
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.15);
}

.reason-icon {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.reason-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================== */
/* CONTACT SECTION      */
/* ===================== */

.contact-section {
    padding: 6rem 30px;
}

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

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: slideInUp 0.8s ease-out;
}

/* ===================== */
/* FORM STYLES          */
/* ===================== */

.contact-form {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(240, 147, 251, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background: rgba(15, 15, 30, 0.5);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.3rem;
    color-scheme: dark;
}

.form-group select option {
    background-color: #12182b;
    color: #f5f7ff;
}

.form-group select option[value=""] {
    color: #aab3cc;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(245, 87, 108, 0.6);
    box-shadow: 0 0 0 3px rgba(245, 87, 108, 0.1), inset 0 0 20px rgba(245, 87, 108, 0.05);
    background: rgba(15, 15, 30, 0.8);
}

.contact-form button {
    width: 100%;
    margin-top: 1.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
}

.form-message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    animation: slideInUp 0.5s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(245, 87, 108, 0.15) 100%);
    color: #ff6b9d;
    border: 1px solid rgba(245, 87, 108, 0.3);
}

/* ===================== */
/* CONTACT INFO         */
/* ===================== */

.info-card {
    display: flex;
    gap: 1.8rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
    border-radius: 15px;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: var(--transition);
    animation: slideInRight 0.8s ease-out;
}

.info-card:hover {
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.1);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-light);
}

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

.info-content a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-content a:hover {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-social {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-social h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

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

.social-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    transition: var(--transition);
    z-index: 0;
}

.social-btn > * {
    position: relative;
    z-index: 1;
}

.social-btn:hover::before {
    left: 0;
}

.social-btn.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.social-btn.whatsapp:hover {
    color: #fff;
    transform: scale(1.15) rotate(5deg);
}

.social-btn.email {
    border-color: var(--text-light);
    color: var(--text-light);
}

.social-btn.email:hover {
    color: #fff;
    transform: scale(1.15) rotate(-5deg);
}

.social-btn.phone {
    border-color: #fbbf24;
    color: #fbbf24;
}

.social-btn.phone:hover {
    color: #fff;
    transform: scale(1.15) rotate(5deg);
}

/* ===================== */
/* FAQ SECTION          */
/* ===================== */

.faq-section {
    padding: 6rem 30px;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(240, 147, 251, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: var(--transition);
    animation: slideInUp 0.8s ease-out;
}

.faq-item:hover {
    border-color: rgba(240, 147, 251, 0.5);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.1);
    transform: translateY(-10px);
}

.faq-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item i {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.8rem;
}

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

/* ===================== */
/* STATS SECTION        */
/* ===================== */

.stats-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 5rem 30px;
    position: relative;
    overflow: hidden;
}

.stats-context {
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: #4facfe;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
    color: #f5576c;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* ===================== */
/* GOOGLE REVIEWS       */
/* ===================== */

.google-reviews-section {
    padding: 5rem 30px;
    background: linear-gradient(180deg, rgba(13, 16, 33, 0.6) 0%, rgba(10, 13, 27, 0.9) 100%);
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.google-reviews-header h2 {
    margin: 0;
}

.google-reviews-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.google-reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border: 1px solid rgba(79, 172, 254, 0.2);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.rating-main {
    min-width: 88px;
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-meta {
    flex: 1;
}

.rating-label,
.rating-count {
    margin: 0;
}

.rating-label {
    color: var(--text-light);
    font-weight: 700;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.google-review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(240, 147, 251, 0.2);
    border-radius: 14px;
    padding: 1rem;
    min-height: 175px;
}

.google-review-head {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.google-review-author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.google-review-stars {
    color: #ffd166;
    letter-spacing: 1px;
}

.google-review-date {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0.55rem;
}

.google-review-text {
    color: #d8d8e8;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.google-review-card.skeleton {
    position: relative;
    overflow: hidden;
}

.google-review-card.skeleton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: googleReviewShimmer 1.6s infinite;
}

@keyframes googleReviewShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 980px) {
    .google-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== */
/* WHY CHOOSE US         */
/* ===================== */

.why-choose-us {
    padding: 6rem 30px;
    background: var(--dark-primary);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 800;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(102, 126, 234, 0.06);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================== */
/* TESTIMONIALS          */
/* ===================== */

.testimonials-section {
    padding: 6rem 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 800;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-stars i {
    color: #FFD700;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(102, 126, 234, 0.15);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.author-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===================== */
/* CTA SECTION          */
/* ===================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-gradient) 0%, var(--secondary-gradient) 100%);
    color: #fff;
    padding: 6rem 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 1.8rem;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-strip i {
    font-size: 0.9rem;
}

.cta-section .btn-primary {
    position: relative;
    z-index: 1;
    background: #fff;
    color: #f5576c;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

/* ===================== */
/* PRICING CTA           */
/* ===================== */

.pricing-cta {
    padding: 6rem 30px;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.pricing-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* ===================== */
/* FOOTER               */
/* ===================== */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1e 100%);
    color: var(--text-light);
    padding: 5rem 30px 2rem;
    border-top: 1px solid rgba(79, 172, 254, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    animation: fadeInUp 0.8s ease;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 10px rgba(245, 87, 108, 0.2));
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section a:hover::after {
    width: 100%;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(79, 172, 254, 0.15);
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: #4facfe;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(102, 126, 234, 0.15);
    padding-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    margin: 0;
    transition: var(--transition);
}

.footer-bottom p:hover {
    color: var(--text-light);
}

/* ===================== */
/* RESPONSIVE DESIGN    */
/* ===================== */

@media (max-width: 768px) {
    /* Hide 3D canvas on tablets */
    .hero-canvas {
        display: none !important;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--dark-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 12px 0;
    }

    .nav-menu li {
        padding: 12px 0;
    }

    .nav-menu li a {
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px 20px;
        min-height: 70vh;
        background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(244, 144, 251, 0.1), transparent 50%),
                    linear-gradient(180deg, #0f0f1e 0%, #0b0b18 100%);
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px 20px;
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
        gap: 1.5rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.4;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 1.02rem;
        line-height: 1.6;
        color: var(--text-muted);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Containers */
    .container {
        padding: 0 20px;
    }

    /* Sections */
    section {
        padding: 50px 0 !important;
        border-top: 1px solid rgba(79, 172, 254, 0.08);
    }

    section:first-of-type {
        border-top: none;
    }

    section h2 {
        font-size: 1.9rem;
        margin-bottom: 32px;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
        border: 1px solid rgba(102, 126, 234, 0.25);
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(16, 18, 36, 0.6));
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 180px;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    }

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

    .service-card {
        border: 1px solid rgba(102, 126, 234, 0.25);
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(16, 18, 36, 0.6));
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    }

    /* Pricing */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        border: 1px solid rgba(102, 126, 234, 0.25);
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(16, 18, 36, 0.6));
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    }

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

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

    .footer-section ul {
        justify-content: center;
    }

    /* Text Sizes */
    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* About Page Mobile Optimization */
    .about-section {
        padding: 3rem 20px;
    }

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

    .about-text h2 {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .about-list li {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .about-image {
        min-height: 300px;
        order: -1;
    }

    .about-portrait {
        width: min(100%, 280px);
    }

    .about-identity-badge {
        width: min(100%, 280px);
        padding: 10px 12px;
    }

    .about-image > i {
        font-size: 10rem;
    }

    .intervention-zone {
        padding: 3rem 20px;
    }

    .intervention-zone h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .zone-card {
        padding: 2rem;
    }

    .zone-card h3 {
        font-size: 1.4rem;
    }

    .zone-card p {
        font-size: 0.95rem;
    }

    .why-choose {
        padding: 3rem 20px;
    }

    .why-choose h2 {
        font-size: 1.9rem;
        margin-bottom: 2.5rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-card {
        padding: 1.8rem;
    }

    .reason-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .reason-card h3 {
        font-size: 1.15rem;
    }

    .reason-card p {
        font-size: 0.92rem;
    }

    /* Contact Page Mobile Optimization */
    .contact-section {
        padding: 3rem 20px;
    }

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

    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.6rem;
        margin-bottom: 1.8rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

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

    .form-group label {
        font-size: 0.88rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 16px;
        min-height: 44px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .info-card {
        flex-direction: row;
        gap: 1.2rem;
        padding: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .info-icon {
        font-size: 2rem;
    }

    .info-content h3 {
        font-size: 1.05rem;
    }

    .info-content p {
        font-size: 0.92rem;
    }

    .contact-social {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .social-buttons {
        justify-content: center;
    }

    .social-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .faq-section {
        padding: 3rem 20px;
    }

    .faq-section h2 {
        font-size: 1.9rem;
        margin-bottom: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.8rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .faq-item p {
        font-size: 0.92rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    /* Base sizes for small screens */
    html {
        font-size: 14px;
    }

    body {
        line-height: 1.6;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo span {
        display: none;
    }

    .nav-menu {
        top: 60px;
        padding: 15px 0;
    }

    .nav-menu li {
        padding: 12px 20px;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        padding: 80px 16px 50px 16px;
        min-height: 60vh;
        background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(244, 144, 251, 0.1), transparent 50%),
                    linear-gradient(180deg, #0f0f1e 0%, #0b0b18 100%);
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 18px;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 24px;
        line-height: 1.6;
        color: var(--text-muted);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.95rem;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sections */
    section {
        padding: 50px 0 !important;
        border-top: 1px solid rgba(79, 172, 254, 0.08);
    }

    section:first-of-type {
        border-top: none;
    }

    section h2 {
        font-size: 1.7rem;
        margin-bottom: 32px;
        line-height: 1.35;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Cards */
    .feature-card,
    .service-card,
    .pricing-card {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 16px;
        border: 1px solid rgba(102, 126, 234, 0.25);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(16, 18, 36, 0.6));
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover,
    .service-card:hover,
    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    }

    .feature-card,
    .service-card {
        min-height: 180px;
    }

    .feature-icon,
    .service-icon,
    .pricing-icon {
        font-size: 2.4rem;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
        font-weight: 700;
    }

    h4 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    p {
        font-size: 0.92rem;
        line-height: 1.6;
        color: var(--text-muted);
    }

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

    .footer-section {
        padding-bottom: 10px;
    }

    .footer-section h4 {
        margin-bottom: 10px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(79, 172, 254, 0.1);
    }

    /* Forms */
    input,
    select,
    textarea {
        font-size: 16px;
        padding: 12px 14px;
        min-height: 44px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    label {
        font-size: 0.95rem;
        margin-bottom: 6px;
        display: block;
    }

    /* Pricing Cards */
    .pricing-card {
        padding: 20px 16px;
        min-height: auto;
    }

    .price {
        font-size: 1.8rem;
    }

    /* Calendar */
    .calendar-container {
        padding: 30px 15px;
    }

    .calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .day {
        min-height: 35px;
        font-size: 0.85rem;
    }

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

    .reserve-btn {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* About Page Small Mobile Optimization */
    .about-section {
        padding: 2.5rem 16px;
    }

    .about-text h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .about-text h3 {
        font-size: 1.2rem;
        margin-top: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .about-text p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .about-list li {
        padding: 0.7rem 0;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .about-image {
        min-height: 250px;
    }

    .about-image > i {
        font-size: 8rem;
    }

    .intervention-zone {
        padding: 2.5rem 16px;
    }

    .intervention-zone h2 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .zone-card {
        padding: 1.8rem 1.5rem;
    }

    .zone-card h3 {
        font-size: 1.3rem;
    }

    .zone-card p {
        font-size: 0.92rem;
    }

    .zone-info {
        padding: 1.2rem;
        font-size: 0.92rem;
    }

    .why-choose {
        padding: 2.5rem 16px;
    }

    .why-choose h2 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .reasons-grid {
        gap: 1.2rem;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .reason-icon {
        font-size: 2.2rem;
    }

    .reason-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }

    /* Contact Page Small Mobile Optimization */
    .contact-section {
        padding: 2.5rem 16px;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 1.3rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .form-note {
        font-size: 0.78rem;
        margin-top: 1rem;
    }

    .form-message {
        padding: 1.2rem;
        font-size: 0.92rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.3rem;
        margin-bottom: 1rem;
    }

    .info-card:hover {
        transform: translateX(0) translateY(-5px);
    }

    .info-icon {
        font-size: 2.5rem;
        margin: 0 auto;
    }

    .info-content h3 {
        font-size: 1.02rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    .info-note {
        font-size: 0.78rem;
    }

    .contact-social {
        margin-top: 1.8rem;
        padding-top: 1.3rem;
    }

    .contact-social h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .social-buttons {
        gap: 0.8rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .faq-section {
        padding: 2.5rem 16px;
    }

    .faq-section h2 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .faq-grid {
        gap: 1.2rem;
    }

    .faq-item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .faq-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Extra small screens (very small phones) */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .hero {
        padding: 60px 12px 35px 12px;
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        min-height: 40px;
    }

    section {
        padding: 35px 0 !important;
    }

    section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 12px;
    }

    .feature-card,
    .service-card,
    .pricing-card {
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .feature-icon,
    .service-icon,
    .pricing-icon {
        font-size: 2rem;
    }

    h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    h4 {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    input,
    select,
    textarea {
        font-size: 16px;
        padding: 10px 12px;
        min-height: 40px;
    }

    .pricing-card {
        padding: 15px 12px;
    }

    .price {
        font-size: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* About Page Extra Small Mobile */
    .about-section {
        padding: 2rem 12px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .about-text p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .about-list li {
        padding: 0.6rem 0;
        font-size: 0.88rem;
    }

    .about-image {
        min-height: 200px;
    }

    .about-image > i {
        font-size: 7rem;
    }

    .intervention-zone {
        padding: 2rem 12px;
    }

    .intervention-zone h2 {
        font-size: 1.5rem;
    }

    .zone-card {
        padding: 1.5rem;
    }

    .zone-card h3 {
        font-size: 1.2rem;
    }

    .zone-card p {
        font-size: 0.88rem;
    }

    .zone-info {
        padding: 1rem;
    }

    .why-choose {
        padding: 2rem 12px;
    }

    .why-choose h2 {
        font-size: 1.5rem;
    }

    .reason-card {
        padding: 1.3rem;
    }

    .reason-icon {
        font-size: 2rem;
    }

    .reason-card h3 {
        font-size: 1rem;
    }

    .reason-card p {
        font-size: 0.88rem;
    }

    /* Contact Page Extra Small Mobile */
    .contact-section {
        padding: 2rem 12px;
    }

    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.3rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-icon {
        font-size: 2rem;
    }

    .info-content h3 {
        font-size: 0.98rem;
    }

    .info-content p {
        font-size: 0.88rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 2rem 12px;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-item {
        padding: 1.3rem;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item i {
        font-size: 0.9rem;
    }

    .faq-item p {
        font-size: 0.88rem;
    }
}

/* ===================== */
/* ADMIN INLINE EDITING  */
/* ===================== */

.admin-login-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(102, 126, 234, 0.6);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.admin-login-icon:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.6);
    color: rgba(102, 126, 234, 0.9);
    transform: scale(1.1);
}

.admin-login-icon.logged-in {
    background: rgba(79, 172, 254, 0.15);
    border-color: rgba(79, 172, 254, 0.5);
    color: #4facfe;
}

#adminEditButton {
    border: 2px solid rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease;
}

#adminEditButton:hover {
    border-color: rgba(79, 172, 254, 0.6) !important;
    background-color: rgba(79, 172, 254, 0.15) !important;
}

#adminEditButton.logged-in {
    border-color: #ff7a9c !important;
    background-color: rgba(255, 122, 156, 0.1) !important;
}

.admin-login-zone {
    display: none;
}

.admin-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.admin-login-modal.show {
    display: flex;
}

.admin-login-modal-content {
    background: var(--dark-secondary);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.admin-login-modal-title {
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 24px;
    text-align: center;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-login-form input {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-login-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.7);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.admin-login-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-login-btn {
    padding: 8px 16px;
    background: var(--secondary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

.admin-user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.admin-user-info i {
    color: #4facfe;
}

.admin-logout-btn {
    padding: 6px 12px;
    background: rgba(245, 87, 108, 0.2);
    color: #ff7a9c;
    border: 1px solid rgba(245, 87, 108, 0.5);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.admin-logout-btn:hover {
    background: rgba(245, 87, 108, 0.3);
    border-color: #ff7a9c;
}

/* Edit buttons on content */
.edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    margin-left: 8px;
    background: rgba(79, 172, 254, 0.15);
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.4);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.editable-section:hover .edit-btn {
    opacity: 1;
}

.edit-btn:hover {
    background: rgba(79, 172, 254, 0.3);
    border-color: rgba(79, 172, 254, 0.8);
}

.edit-btn.visible {
    opacity: 1;
}

/* Edit modal */
.edit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.edit-modal.show {
    display: flex;
}

.edit-modal-content {
    background: var(--dark-secondary);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 28px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

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

.edit-modal-header {
    margin-bottom: 20px;
}

.edit-modal-title {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.edit-modal-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.edit-modal-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.7);
    box-shadow: 0 0 12px rgba(102, 126, 234, 0.2);
}

.edit-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.edit-modal-save {
    padding: 10px 20px;
    background: var(--secondary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.edit-modal-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

.edit-modal-cancel {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.edit-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Product edit buttons */
.product-card {
    position: relative;
}

.product-edit-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-edit-actions {
    opacity: 1;
}

.product-edit-actions.visible {
    opacity: 1;
}

.product-edit-btn,
.product-delete-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-edit-btn {
    background: rgba(79, 172, 254, 0.15);
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.4);
}

.product-edit-btn:hover {
    background: rgba(79, 172, 254, 0.3);
    border-color: #4facfe;
}

.product-delete-btn {
    background: rgba(245, 87, 108, 0.15);
    color: #ff7a9c;
    border: 1px solid rgba(245, 87, 108, 0.4);
}

.product-delete-btn:hover {
    background: rgba(245, 87, 108, 0.3);
    border-color: #ff7a9c;
}
