 :root {
            --blue: #2f6bff;
            --blue-dark: #1b4fd1;
            --black: #1a2a52;
            --black-soft: #23376a;
            --white: #ffffff;
            --text: #1f3568;
            --muted: #4f67a1;
            --line: rgba(47, 107, 255, 0.22);
            --header-height: 78px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--text);
            line-height: 1.6;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background:
                radial-gradient(circle at 10% -20%, rgba(47, 107, 255, 0.18), transparent 40%),
                radial-gradient(circle at 90% 0%, rgba(47, 107, 255, 0.14), transparent 30%),
                linear-gradient(180deg, #f7faff 0%, #f2f7ff 45%, #ffffff 100%);
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid var(--line);
        }

        .header-inner {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 16px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--blue-dark);
            text-decoration: none;
            font-weight: 700;
        }

        .brand img {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            object-fit: contain;
            background: #fff;
            border: 1px solid rgba(47, 107, 255, 0.45);
            padding: 4px;
        }

        .menu {
            display: flex;
            gap: 28px;
            justify-content: center;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .menu a {
            text-decoration: none;
            color: var(--blue-dark);
            font-weight: 600;
            transition: color 0.2s ease, transform 0.2s ease;
            white-space: nowrap;
        }

        .menu a:hover {
            color: var(--blue);
            transform: translateY(-1px);
        }

        .header-contact {
            justify-self: end;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            color: var(--blue-dark);
            background: rgba(47, 107, 255, 0.1);
            border: 1px solid rgba(47, 107, 255, 0.2);
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 13px;
            line-height: 1.35;
        }

        .header-contact a {
            color: var(--blue-dark);
            text-decoration: none;
            font-weight: 600;
            display: grid;
            grid-template-columns: 18px auto;
            align-items: center;
            column-gap: 6px;
            word-break: break-word;
        }

        .header-contact a:hover {
            color: var(--blue);
        }

        .header-contact .icon {
            width: 18px;
            text-align: center;
            opacity: 0.85;
        }

        .section {
            scroll-margin-top: calc(var(--header-height) + 14px);
            padding: 84px 20px;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .hero {
            min-height: 62vh;
            display: flex;
            align-items: center;
            background:
                linear-gradient(110deg, rgba(17, 40, 95, 0.78), rgba(47, 107, 255, 0.58)),
                url("{{ asset('assets/img/backgrounds/back.jpeg') }}") center/cover no-repeat;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .hero .section-inner {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 255, 0.98));
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 34px;
            box-shadow: 0 22px 60px rgba(47, 107, 255, 0.14);
        }

        h2,
        .hero h1,
        .content-block h3,
        .footer-title {
            color: var(--blue-dark);
        }

        .hero h1 {
            margin: 0 0 10px;
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: 0.3px;
        }

        .hero p {
            margin: 0;
            color: var(--muted);
            max-width: 720px;
        }

        .cards,
        .profile-grid {
            margin-top: 22px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 14px;
        }

        .card,
        .profile-item,
        .content-block,
        .contact-form,
        .contact-meta {
            background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.94));
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 18px;
            box-shadow: 0 10px 30px rgba(47, 107, 255, 0.11);
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .card:hover,
        .profile-item:hover,
        .content-block:hover {
            transform: translateY(-2px);
            border-color: rgba(47, 107, 255, 0.6);
        }

        .card h3 {
            margin: 0 0 8px;
            color: var(--blue-dark);
        }

        .card p,
        .profile-item .label,
        .content-block ul,
        .content-block p,
        .contact-meta p,
        .footer-brand p,
        .footer-bottom {
            color: var(--muted);
        }

        .profile-item .value,
        .about-info-value,
        .contact-meta strong {
            color: var(--blue-dark);
            font-weight: 600;
        }

        .about-header {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .owner-photo {
            width: 140px;
            border-radius: 10px;
            border: 1px solid rgba(47, 107, 255, 0.55);
            box-shadow: 0 14px 36px rgba(47, 107, 255, 0.2);
            object-fit: cover;
        }

        .about-info {
            flex: 1;
            min-width: 280px;
        }

        .about-info-grid {
            margin: 0px 0 0;
            border: 1px solid var(--line);
            border-radius: 10px;
            overflow: hidden;
        }

        .about-info-row {
            display: grid;
            grid-template-columns: 180px 1fr;
            border-bottom: 1px solid var(--line);
        }

        .about-info-row:last-child {
            border-bottom: none;
        }

        .about-info-label,
        .about-info-value {
            padding: 8px 12px;
            font-size: 14px;
        }

        .about-info-label {
            background: rgba(239, 245, 255, 0.8);
            color: var(--muted);
            font-weight: 600;
        }

        .about-profile-text {
            margin-top: 14px !important;
        }

        .contact-grid {
            margin-top: 18px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .contact-meta {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 255, 0.95));
            min-height: 260px;
        }

        .contact-meta::after {
            content: "";
            position: absolute;
            right: 6px;
            bottom: 0;
            width: 220px;
            height: 220px;
            background: url("{{ asset('assets/img/illustrations/man-with-laptop-light.png') }}") no-repeat center/contain;
            opacity: 0.42;
            pointer-events: none;
            z-index: 1;
        }

        .contact-meta p {
            position: relative;
            z-index: 2;
            max-width: calc(100% - 140px);
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: var(--blue-dark);
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            border: 1px solid rgba(158, 176, 209, 0.35);
            border-radius: 10px;
            padding: 10px 12px;
            font: inherit;
            color: var(--text);
            background: #ffffff;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(47, 107, 255, 0.9);
            box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.25);
        }

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

        .submit-btn {
            border: none;
            border-radius: 10px;
            color: var(--white);
            padding: 10px 18px;
            font-weight: 600;
            cursor: pointer;
            background: linear-gradient(135deg, var(--blue), var(--blue-dark));
            box-shadow: 0 10px 26px rgba(47, 107, 255, 0.3);
        }

        .submit-btn:hover {
            filter: brightness(1.08);
        }

        .site-footer {
            border-top: 1px solid var(--line);
            background: linear-gradient(180deg, #f4f8ff, #edf4ff);
            padding: 36px 20px 20px;
            margin-top: 26px;
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            gap: 20px;
        }

        .footer-brand {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-brand img {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            object-fit: contain;
            border: 1px solid rgba(47, 107, 255, 0.6);
            background: #fff;
            padding: 5px;
            flex-shrink: 0;
        }

        .footer-title {
            margin: 0 0 8px;
            font-size: 16px;
        }

        .footer-links,
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a,
        .footer-social a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover,
        .footer-social a:hover {
            color: var(--blue-dark);
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 18px auto 0;
            padding-top: 14px;
            border-top: 1px solid var(--line);
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }

        @media (max-width: 900px) {
            .header-inner {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 10px;
                padding-top: 8px;
                padding-bottom: 8px;
            }

            .site-header {
                height: auto;
                position: static;
            }

            .section {
                scroll-margin-top: 12px;
                padding: 64px 16px;
            }

            .hero .section-inner {
                padding: 24px;
            }

            .menu {
                gap: 16px;
                flex-wrap: wrap;
            }

            .header-contact {
                align-items: center;
                text-align: center;
            }

            .header-contact a {
                grid-template-columns: 16px minmax(0, 1fr);
            }

            .about-header {
                flex-direction: column;
                align-items: center;
            }

            .about-info {
                min-width: 0;
                width: 100%;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

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

            .footer-inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .section {
                padding: 52px 12px;
            }

            .hero {
                min-height: auto;
            }

            .hero .section-inner {
                padding: 18px;
                border-radius: 14px;
            }

            .hero h1 {
                font-size: clamp(1.5rem, 8vw, 2rem);
                line-height: 1.25;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .cards,
            .profile-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .card,
            .profile-item,
            .content-block,
            .contact-form,
            .contact-meta {
                padding: 14px;
            }

            .brand span {
                font-size: 0.95rem;
                text-align: center;
            }

            .menu {
                width: 100%;
                justify-content: center;
                gap: 12px;
            }

            .owner-photo {
                width: min(100%, 220px);
            }

            .about-info-label,
            .about-info-value {
                padding: 8px 10px;
                font-size: 13px;
            }

            .contact-meta {
                min-height: auto;
            }

            .contact-meta::after {
                display: none;
            }

            .contact-meta p {
                max-width: 100%;
            }

            .submit-btn {
                width: 100%;
                padding: 11px 14px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }
        /* slider code */
        /* SCOPE EVERYTHING INSIDE .homeSection */
.homeSection {
    overflow: hidden;
}

.homeSection .slider {
    position: relative;
    height: 500px;
}

.homeSection .slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.homeSection .slide {
    min-width: 100%;
    height: 600px;
    position: relative;
}

.homeSection .slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* RIGHT SIDE CONTENT */
.homeSection .section-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    /*! height: 100%; */

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px;
    color: #fff;

    background: linear-gradient(to right, rgba(144, 144, 144, 0.75), #0000006e);

    /* animation start */
    opacity: 0;
    transform: translateX(120px);
    transition: all 0.8s ease;
    border-radius: 12px;
    margin: 30px 20px;
}

/* ACTIVE ANIMATION */
.homeSection .slide.active .section-inner {
    opacity: 1;
    transform: translateX(0);
}
.section-inner h1 {
    margin: 0 0px;
}
/* NAV BUTTONS */
.homeSection .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.homeSection .prev { left: 10px; }
.homeSection .next { right: 10px; }

.homeSection .nav:hover {
    background: rgba(0,0,0,0.8);
}
