:root {
    /* Soft Color System - Admin Customizable */
    --color-primary: #5b8def;
    --color-primary-light: #8bb4f7;
    --color-primary-dark: #3d6bc7;
    --color-secondary: #f8f9fc;
    --color-secondary-light: #ffffff;
    --color-secondary-dark: #eef0f5;
    --color-accent: #e8927c;
    --color-accent-light: #f4b8a8;
    --color-accent-dark: #d67a63;
    --color-success: #7dd3a8;
    --color-warning: #f5d08c;
    --color-danger: #e78b8b;
    --color-text: #2d3748;
    --color-text-muted: #64748b;
    --color-text-dark: #1a202c;
    --color-border: rgba(91, 141, 239, 0.15);
    --color-card-bg: #ffffff;
    --color-gradient-start: #5b8def;
    --color-gradient-end: #8bb4f7;
    --color-glow: rgba(91, 141, 239, 0.25);
    --shadow-sm: 0 2px 8px rgba(91, 141, 239, 0.08);
    --shadow-md: 0 4px 20px rgba(91, 141, 239, 0.12);
    --shadow-lg: 0 8px 32px rgba(91, 141, 239, 0.15);
    --shadow-glow: 0 0 30px rgba(91, 141, 239, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--color-secondary);
    color: var(--color-text);
}

.app-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(91, 141, 239, 0.08);
}

.hero-section {
    min-height: 88vh;
    background:
        radial-gradient(circle at top right, var(--color-glow), transparent 45%),
        radial-gradient(circle at bottom left, rgba(232, 146, 124, 0.12), transparent 50%),
        linear-gradient(135deg, #f8f9fc 0%, #eef4ff 50%, #fef5f2 100%);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0.08;
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.1); opacity: 0.12; }
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.15), rgba(91, 141, 239, 0.08));
    border: 1px solid rgba(0, 102, 255, 0.6);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Cards with Images */
.service-card,
.blog-card,
.content-card {
    display: block;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--color-text);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before,
.blog-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.service-card:hover i {
    color: var(--color-accent-light);
}

/* Service Card Image */
.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

/* Hero Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.7));
    z-index: 0;
}

.stats {
    background: linear-gradient(180deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat-box strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box span {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.cta {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.site-footer {
    background: linear-gradient(180deg, #eef4ff 0%, #f0f7ff 100%);
    border-top: 1px solid rgba(91, 141, 239, 0.15);
}

.floating-whatsapp,
.floating-call {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(91, 141, 239, 0.3);
    transition: all var(--transition-fast);
}

.floating-whatsapp:hover,
.floating-call:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 141, 239, 0.35);
}

.floating-whatsapp {
    bottom: 92px;
    background: linear-gradient(135deg, #7dd3a8, #5bb48a);
}

.floating-call {
    bottom: 24px;
    background: linear-gradient(135deg, #5b8def, #e8927c);
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(91, 141, 239, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(91, 141, 239, 0.15);
}

.cookie-banner p {
    margin: 0;
    color: #2d3748;
    font-size: 14px;
}

.content-card iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 10px;
    display: block;
}

/* Full Width Map in Contact Page */
.map-fullwidth iframe {
    width: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 16px;
    display: block;
}

@media (max-width: 768px) {
    .map-fullwidth iframe {
        min-height: 350px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .map-fullwidth iframe {
        min-height: 300px;
        border-radius: 8px;
    }
}

.service-gallery-item {
    width: 100%;
    border-radius: 10px;
    min-height: 220px;
    object-fit: cover;
}
