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

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --dark: #1f2937;
    --light: #f8fafc;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

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

/* TOP STRIP + HEADER - NEW DESIGN */
.top-strip {
    background: linear-gradient(120deg, #0f172a 0%, #0b4a6f 55%, #0ea5e9 100%);
    color: #e6f5ff;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.top-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.12), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.7rem 0;
    position: relative;
    z-index: 2;
}

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.strip-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.2);
    color: #ffe7bd;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.strip-meta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.strip-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.top-strip-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.strip-cta,
.strip-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strip-cta {
    background: #f59e0b;
    color: #1f2937;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.strip-quote {
    background: rgba(255,255,255,0.12);
    color: #e6f5ff;
    border: 1px solid rgba(255,255,255,0.2);
}

.strip-cta:hover,
.strip-quote:hover {
    transform: translateY(-2px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--dark);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0ea5e9, #1e3a8a);
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 12px 25px rgba(14, 165, 233, 0.35);
}

.brand-text strong {
    font-size: 1.35rem;
    display: block;
    letter-spacing: 0.3px;
}

.brand-text span {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-actions {
    margin-left: auto;
    margin-right: 1.5rem;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.1rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.service-badge i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

.service-badge small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.service-badge strong {
    display: block;
    font-size: 0.95rem;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

.menu-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.menu-link:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.menu-cta {
    background: #0ea5e9;
    color: white;
}

.menu-cta:hover {
    background: #0284c7;
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #0f172a;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 980px) {
    .header-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-strip-right {
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .site-menu {
        position: fixed;
        top: 120px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: min(320px, 85vw);
        height: calc(100vh - 120px);
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
        border-left: 1px solid #e2e8f0;
        transition: right 0.35s ease;
        align-items: stretch;
    }

    .site-menu.active {
        right: 0;
    }

    .menu-link {
        width: 100%;
        text-align: left;
        padding: 0.85rem 1.1rem;
    }

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

@media (max-width: 480px) {
    .strip-chip {
        font-size: 0.75rem;
    }

    .strip-meta span {
        font-size: 0.75rem;
    }
}

/* HERO SECTION - NEW LAYOUT */
.hero-new {
    position: relative;
    padding: 140px 0 120px;
    color: white;
    background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(14, 165, 233, 0.5)),
                      url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 45%),
                radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1), transparent 55%);
    pointer-events: none;
}

.hero-new-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-copy p {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 600;
}

.hero-panel {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: min(420px, 100%);
    background: white;
    color: var(--dark);
    padding: 2.2rem;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.hero-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.hero-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-divider path {
    fill: #f8fafc;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* SERVICES SECTION - NEW LAYOUT */
.services-new {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.services-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.services-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-bottom: 0.9rem;
}

.services-head h2 {
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    line-height: 1.15;
    color: #0f172a;
}

.services-head p {
    color: #475569;
    font-size: 1.05rem;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-tile {
    background: white;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.tile-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.service-tile h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.service-tile p {
    color: #475569;
    margin-bottom: 1.1rem;
}

.tile-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.85rem;
}

.services-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* ABOUT SECTION - NEW LAYOUT */
.about-new {
    padding: 110px 0;
    background: #ffffff;
}

.about-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
}

.about-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.about-intro p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.about-card {
    padding: 1.8rem 1.6rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.about-card i {
    font-size: 1.4rem;
    color: #0ea5e9;
    margin-bottom: 0.8rem;
}

.about-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.about-card p {
    color: #475569;
    font-size: 0.98rem;
}

/* CONTACT SECTION - NEW LAYOUT */
.contact-new {
    padding: 110px 0;
    background: #0f172a;
    color: white;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-new h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-info-new p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.2rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}

.contact-card i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
    font-size: 1.2rem;
}

.contact-card h4 {
    margin-bottom: 0.2rem;
}

.contact-card a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: var(--gray);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-new {
        padding: 120px 0 100px;
    }

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

    .hero-panel {
        justify-content: flex-start;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-head {
        grid-template-columns: 1fr;
    }

    .services-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-cta {
        justify-content: flex-start;
    }

    .about-shell {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-copy h1 {
        font-size: 2.1rem;
    }

    .hero-card {
        padding: 1.8rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
}

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

.service-card,
.stat,
.contact-item,
.about-text {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

