:root {
    --brand-navy: #0b1f5f;
    --brand-blue: #155dfc;
    --brand-sky: #4cc9f0;
    --brand-accent: #ff7b54;
    --brand-white: #f7fbff;
    --brand-text: #10213c;
    --brand-muted: #5f6e89;
    --brand-border: rgba(16, 33, 60, 0.08);
    --brand-shadow: 0 24px 60px rgba(11, 31, 95, 0.12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--brand-text);
    background: linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

.navbar {
    padding: 1rem 0;
    background: rgba(247, 251, 255, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(21, 93, 252, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--brand-navy);
}

.brand-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-blue));
    box-shadow: 0 0 0 8px rgba(76, 201, 240, 0.14);
}

.nav-link { font-weight: 600; color: var(--brand-text); }

.btn-brand {
    background: linear-gradient(135deg, var(--brand-blue), #1b7fff);
    color: #fff;
    border: none;
    box-shadow: 0 12px 30px rgba(21, 93, 252, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    transform: translateY(-1px);
}

.hero-section,
.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background:
        radial-gradient(circle at top left, rgba(76, 201, 240, 0.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 123, 84, 0.18), transparent 30%),
        linear-gradient(135deg, #09153f 0%, #0d2f89 70%, #1463ff 100%);
    color: #fff;
}

.hero-section h1,
.inner-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-copy,
.inner-hero p {
    max-width: 640px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--brand-sky);
    margin-bottom: 1rem;
}

.hero-actions,
.contact-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stats div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong { display: block; font-size: 1.6rem; }
.hero-stats span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); }

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

.glass-card {
    position: absolute;
    width: min(100%, 280px);
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    box-shadow: var(--brand-shadow);
    animation: floatCard 6s ease-in-out infinite;
}

.dashboard-card h3 { font-size: 3rem; font-weight: 800; }
.offset-card { right: 1rem; bottom: 3rem; animation-delay: -2s; }

.orb { position: absolute; border-radius: 50%; filter: blur(14px); }
.orb-one { width: 160px; height: 160px; top: 0; right: 6rem; background: rgba(76, 201, 240, 0.38); }
.orb-two { width: 120px; height: 120px; left: 1rem; bottom: 0; background: rgba(255, 123, 84, 0.28); }

.section-padding { padding: 5.5rem 0; }
.section-muted { background: rgba(255, 255, 255, 0.72); }
.section-dark { background: linear-gradient(180deg, #f2f7ff 0%, #e8f0ff 100%); }

.section-heading { max-width: 720px; margin-bottom: 2.5rem; }

.section-heading h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0.75rem;
}

.service-card,
.testimonial-card,
.value-card,
.reason-card,
.blog-card,
.portfolio-card,
.contact-info-card,
.contact-form-card,
.admin-panel-card,
.admin-stat-card,
.detailed-service-card,
.portfolio-mini {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--brand-border);
    border-radius: 28px;
    box-shadow: var(--brand-shadow);
}

.service-card,
.testimonial-card,
.value-card,
.reason-card,
.blog-card,
.contact-info-card,
.contact-form-card,
.admin-panel-card,
.admin-stat-card,
.detailed-service-card { padding: 2rem; }

.service-card { height: 100%; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover,
.portfolio-card:hover,
.blog-card:hover { transform: translateY(-8px); }

.service-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21, 93, 252, 0.12), rgba(76, 201, 240, 0.28));
    color: var(--brand-blue);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.service-link,
.link-accent { font-weight: 700; color: var(--brand-blue); }
.feature-list { padding-left: 1.1rem; color: var(--brand-muted); }

.portfolio-mini { overflow: hidden; }
.portfolio-mini img { border-radius: 28px 28px 0 0; }
.portfolio-mini h3,
.portfolio-mini p { padding: 0 1.25rem; }
.portfolio-mini h3 { margin-top: 1rem; }
.portfolio-mini p { padding-bottom: 1.25rem; color: var(--brand-muted); }

.testimonial-card p,
.blog-card p,
.contact-info-card p,
.contact-form-card p,
.reason-card p,
.value-card p,
.detailed-service-card p { color: var(--brand-muted); }

.contact-banner { padding-bottom: 5rem; }

.contact-banner-inner {
    padding: 2.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #0c266f, #1560ff 75%, #29b6f6);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 28px 70px rgba(10, 27, 86, 0.24);
}

.site-footer {
    padding: 4rem 0 2rem;
    background: #081634;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer h3,
.site-footer h4,
.site-footer a { color: #fff; }

.footer-links li { margin-bottom: 0.65rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card { overflow: hidden; height: 100%; }
.portfolio-card img { aspect-ratio: 16 / 11; object-fit: cover; }
.portfolio-card-body { padding: 1.5rem; }
.blog-meta { display: inline-block; margin-bottom: 0.75rem; color: var(--brand-blue); font-weight: 700; }
.about-visual { width: 100%; border-radius: 30px; box-shadow: var(--brand-shadow); }
.map-embed iframe { width: 100%; min-height: 280px; border: 0; border-radius: 22px; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; font-weight: 700; }

.floating-action {
    position: fixed;
    right: 1.2rem;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    z-index: 1000;
    box-shadow: 0 20px 45px rgba(8, 22, 52, 0.3);
}

.whatsapp-btn { bottom: 1.2rem; background: #25d366; }
.call-btn { bottom: 5.5rem; background: var(--brand-accent); }

.admin-body,
.admin-login-body { background: linear-gradient(180deg, #eef4ff, #f8fbff); }

.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { padding: 2rem; background: linear-gradient(180deg, #09153f, #0d2e87); color: #fff; }
.admin-brand { font-size: 1.5rem; color: #fff; font-weight: 800; }
.admin-subtext { margin: 1rem 0 1.5rem; color: rgba(255, 255, 255, 0.76); }
.admin-content { padding: 2rem; }
.admin-header { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 2rem; }
.admin-stat-card span { display: block; color: var(--brand-muted); }
.admin-stat-card strong { font-size: 2rem; }
.admin-login-section { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; }
.admin-login-card { width: min(100%, 480px); padding: 2.5rem; background: rgba(255, 255, 255, 0.96); border-radius: 30px; box-shadow: var(--brand-shadow); }
.form-control,
.form-select { border-radius: 16px; padding: 0.85rem 1rem; border-color: rgba(16, 33, 60, 0.12); }

.reveal-up { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 991px) {
    .admin-shell { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-visual { min-height: 320px; }
    .glass-card,
    .offset-card {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-bottom: 1rem;
    }
    .contact-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
    .hero-section,
    .inner-hero,
    .section-padding { padding: 4rem 0; }
    .footer-bottom,
    .admin-header { flex-direction: column; align-items: flex-start; }
    .admin-content { padding: 1rem; }
}
