/* =========================================
   PREMIUM HERO SECTION
========================================= */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(20,20,50,0.82), rgba(20,20,50,0.9)),
        url('https://images.unsplash.com/photo-1557426272-fc759fdf7a8d?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(246,142,31,0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 30%);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 120px;
}

/* LEFT */

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 22px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 78px;
    line-height: 1;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg,#F68E1F,#ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: rgba(255,255,255,0.82);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-outline-btn {
    color: white !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.hero-outline-btn:hover {
    background: white;
    color: #273578 !important;
}

/* TRUST */

.hero-trust {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item h3 {
    font-size: 38px;
    color: #F68E1F;
    margin-bottom: 5px;
}

.trust-item span {
    color: rgba(255,255,255,0.75);
}

/* RIGHT IMAGE */

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 35px;
    object-fit: cover;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

/* FLOATING CARDS */

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.25);
    animation: floatHero 4s ease-in-out infinite;
}

.hero-floating-card i {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg,#273578,#F68E1F);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hero-floating-card h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.hero-floating-card p {
    margin: 0;
    font-size: 13px;
    color: var(--black);
}

/* CARD POSITIONS */

.card-1 {
    top: 8%;
    left: -40px;
}

.card-2 {
    bottom: 18%;
    right: -30px;
}

.card-3 {
    bottom: -30px;
    left: 70px;
}

@keyframes floatHero {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width: 1100px){

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-btns,
    .hero-trust {
        justify-content: center;
    }

    .hero h1 {
        font-size: 60px;
    }

}

@media(max-width: 768px){

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-floating-card {
        display: none;
    }

    @media(max-width: 768px){

    .hero{
        min-height: auto;
        padding: 110px 0 60px;
    }

    .hero-wrapper{
        gap: 20px;
        padding-top: 20px;
    }

    .hero-content{
        margin-bottom: 0;
    }

    .hero-badge{
        margin-bottom: 18px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero h1{
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .hero p{
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .hero-btns{
        margin-bottom: 25px;
        gap: 14px;
    }

    .hero-trust{
        gap: 25px;
    }

    .trust-item h3{
        font-size: 28px;
    }

    .hero-image{
        margin-top: 10px;
    }

    .hero-image-wrapper img{
        border-radius: 22px;
        max-height: 380px;
        object-fit: cover;
    }

    .hero-floating-card{
        display: none;
    }

}

}


/* =========================================
   PREMIUM HOME EXPERIENCE SECTION
========================================= */

.brand-experience-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(246,142,31,0.08), transparent 25%),
        radial-gradient(circle at bottom right, rgba(39,53,120,0.08), transparent 25%),
        #ffffff;
    overflow: hidden;
    position: relative;
}

/* TITLE */

.premium-title {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
}

.premium-subtitle {
    display: inline-block;
    background: rgba(246,142,31,0.1);
    color: #F68E1F;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.premium-title h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #273578;
    margin-bottom: 20px;
}

.premium-title p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* SERVICES */

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-bottom: 120px;
}

.premium-service-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 45px 35px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.05);
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#273578,#F68E1F);
}

.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 60px rgba(39,53,120,0.15);
}

.premium-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg,#273578,#F68E1F);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    margin-bottom: 30px;
}

.premium-service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #273578;
}

.premium-service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.premium-service-card span {
    color: #F68E1F;
    font-weight: 700;
    font-size: 14px;
}

/* PROCESS */

.premium-process-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.process-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(39,53,120,0.08);
    color: #273578;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-left h2 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #273578;
}

.process-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.process-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.process-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg,#273578,#F68E1F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item span {
    font-weight: 600;
    color: #444;
}

/* FLOATING CARDS */

.process-right {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 28px;
    padding: 35px;
    width: 250px;
    box-shadow:
        0 20px 50px rgba(39,53,120,0.12);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 42px;
    margin-bottom: 20px;
    color: #F68E1F;
}

.floating-card h3 {
    font-size: 40px;
    color: #273578;
    margin-bottom: 10px;
}

.floating-card p {
    color: #666;
}

.card-one {
    top: 0;
    left: 40px;
}

.card-two {
    right: 0;
    top: 130px;
}

.card-three {
    left: 120px;
    bottom: 0;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.value-box {
    background: white;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.5s ease;
    box-shadow:
        0 10px 35px rgba(0,0,0,0.05);
}

.value-box:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg,#273578,#1a2458);
}

.value-box:hover h4,
.value-box:hover p,
.value-box:hover i {
    color: white;
}

.value-box i {
    font-size: 46px;
    color: #F68E1F;
    margin-bottom: 24px;
    transition: 0.5s ease;
}

.value-box h4 {
    font-size: 24px;
    color: #273578;
    margin-bottom: 15px;
    transition: 0.5s ease;
}

.value-box p {
    color: #666;
    line-height: 1.7;
    transition: 0.5s ease;
}

/* RESPONSIVE */

@media(max-width: 1100px){

    .premium-services-grid,
    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .premium-process-wrapper {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px){

    .premium-title h2,
    .process-left h2 {
        font-size: 38px;
    }

    .premium-services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-right {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .floating-card {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

}

/* =========================
   SERVICE SUB PAGES NAVBAR
========================= */

header.scrolled .nav-link,
header.scrolled .dropdown-toggle,
header.scrolled .dropdown-menu li a {
    color: var(--white) !important;
}

header.scrolled .nav-link:hover,
header.scrolled .dropdown-toggle:hover,
header.scrolled .dropdown-menu li a:hover {
    color: var(--accent) !important;
}

/* MOBILE MENU */

@media(max-width:768px){

    .nav-menu{
        background: var(--primary);
    }

    .nav-menu .nav-link,
    .nav-menu .dropdown-toggle,
    .nav-menu .dropdown-menu li a{
        color: var(--white) !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .dropdown-toggle:hover,
    .nav-menu .dropdown-menu li a:hover{
        color: var(--accent) !important;
    }
}