/* =========================
GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* =========================
RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050816;
    overflow-x: hidden;
    color: #ffffff;
}

/* =========================
HEADER
========================= */

.premium-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient( 135deg, rgba(2, 6, 23, 0.88), rgba(8, 15, 40, 0.82));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.10);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* NAV */

.nav-container {
    max-width: 1250px;
    margin: auto;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo span {
    color: #60A5FA;
}

/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: #E5E7EB;
    font-size: 15px;
    font-weight: 500;
    transition: 0.35s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: linear-gradient( 90deg, #2563EB, #60A5FA);
    transition: 0.35s ease;
}

.nav-menu a:hover {
    color: #60A5FA;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ICONS */

.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background: linear-gradient( 145deg, rgba(20, 30, 60, 0.96), rgba(8, 12, 28, 0.96));
    transition: 0.35s ease;
}

.icon-btn:hover {
    transform: translateY(-3px);
    color: #60A5FA;
}

/* MOBILE TOGGLE */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}

/* MOBILE ICONS */

.mobile-icons {
    display: none;
}

/* =========================
BANNER
========================= */

.premium-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 80px 100px;
    overflow: hidden;
    background-image: linear-gradient( 90deg, rgba(5, 10, 25, 0.58) 0%, rgba(5, 10, 25, 0.28) 32%, rgba(5, 10, 25, 0.06) 58%, rgba(5, 10, 25, 0.00) 100%), url("../images/banner-desktop.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* CONTENT */

.banner-content {
    position: relative;
    z-index: 2;
    width: 50%;
}

/* TAG */

.banner-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 30px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.banner-content h1 {
    margin-bottom: 28px;
    font-size: 55px;
    line-height: 1.05;
    color: #ffffff;
}

/* TEXT */

.banner-content p {
    max-width: 680px;
    margin-bottom: 42px;
    font-size: 18px;
    line-height: 1.9;
    color: #ffffff;
}

/* BUTTON AREA */

.banner-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* BUTTON */

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    color: #ffffff;
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* =========================
ABOUT SECTION
========================= */

.exp-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081122 50%, #0B1730 100%);
}

/* GLOW */

.exp-sec::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    filter: blur(120px);
}

/* WRAP */

.exp-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 55px;
    align-items: center;
}

/* IMAGE */

.exp-img {
    position: relative;
}

.exp-img img {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* FLOAT CARD */

.exp-float {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* BOX */

.exp-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 18px;
    background: rgba(10, 15, 35, 0.62);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

/* ICON */

.exp-box i {
    color: #60A5FA;
    font-size: 17px;
}

/* CONTENT */

.exp-con {
    position: relative;
}

/* TAG */

.exp-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.exp-con h2 {
    margin-bottom: 28px;
    font-size: 40px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.exp-con p {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    /* NAV */
    .menu-toggle {
        display: block;
    }
    .nav-icons {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 290px;
        height: calc(100vh - 85px);
        padding: 40px 28px;
        background: linear-gradient( 180deg, #081122, #050816);
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        transition: 0.45s ease;
    }
    .nav-menu.active {
        right: 0;
    }
    .mobile-icons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .mobile-call,
    .mobile-whatsapp {
        width: 100%;
        padding: 15px 20px;
        border-radius: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #ffffff;
    }
    .mobile-call {
        background: linear-gradient( 135deg, #2563EB, #60A5FA);
    }
    .mobile-whatsapp {
        background: linear-gradient( 135deg, #14532d, #22c55e);
    }
    /* BANNER */
    .premium-banner {
        min-height: auto;
        padding: 140px 20px 90px;
        background-image: linear-gradient( rgba(5, 10, 25, 0.42), rgba(5, 10, 25, 0.58)), url("../images/banner-mobile.webp");
        background-size: cover;
        background-position: center top;
    }
    .banner-content {
        width: 100%;
        text-align: center;
    }
    .banner-content h1 {
        font-size: 42px;
    }
    .banner-content p {
        margin: auto auto 32px;
    }
    .banner-actions {
        justify-content: center;
    }
    /* ABOUT */
    .exp-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .exp-con {
        text-align: center;
    }
    .exp-con h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {
    .exp-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .exp-img {
        order: 2;
    }
    .exp-con {
        order: 1;
    }
    .exp-img img {
        height: auto;
        border-radius: 22px;
    }
    .exp-con h2 {
        font-size: 34px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .premium-banner {
        position: relative;
        min-height: 100vh;
        padding: 120px 20px 60px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        background-image: linear-gradient( rgba(5, 10, 25, 0.10), rgba(5, 10, 25, 0.45)), url("../images/banner-mobile.webp");
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #050816;
    }
    .banner-content {
        width: 100%;
        text-align: center;
        margin-top: auto;
    }
    .banner-content h1 {
        font-size: 38px;
        line-height: 1.12;
    }
    .banner-content p {
        font-size: 16px;
        line-height: 1.8;
    }
    .banner-actions {
        justify-content: center;
        gap: 14px;
        flex-wrap: nowrap;
    }
    .banner-btn {
        min-width: 150px;
        padding: 14px 20px;
        font-size: 14px;
    }
    /* ABOUT */
    .exp-sec {
        padding: 90px 20px;
    }
    .exp-con {
        text-align: left;
    }
    .exp-con h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .exp-con p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px) {
    .logo {
        font-size: 24px;
    }
    .banner-content h1 {
        font-size: 34px;
    }
}

/* =========================
WHY SECTION
========================= */

.why-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #081122 0%, #050816 100%);
}

/* GLOW */

.why-sec::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* HEAD */

.why-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* TAG */

.why-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.why-head h2 {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.why-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* GRID */

.why-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */

.why-card {
    position: relative;
    padding: 38px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
    overflow: hidden;
}

/* GLOW */

.why-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(50px);
}

/* HOVER */

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.20);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* ICON */

.why-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, rgba(37, 99, 235, 0.22), rgba(96, 165, 250, 0.10));
    border: 1px solid rgba(96, 165, 250, 0.18);
}

/* ICON */

.why-icon i {
    font-size: 26px;
    color: #60A5FA;
}

/* TITLE */

.why-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.35;
    color: #ffffff;
}

/* TEXT */

.why-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .why-sec {
        padding: 90px 20px;
    }
    .why-head {
        margin-bottom: 50px;
    }
    .why-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .why-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .why-card {
        padding: 32px 24px;
    }
    .why-card h3 {
        font-size: 22px;
    }
}

/* =========================
PREMIUM EXPERIENCE SECTION
========================= */

.whyx-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #081122 0%, #050816 100%);
}

/* GLOW */

.whyx-sec::before {
    content: '';
    position: absolute;
    left: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* WRAP */

.whyx-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 55px;
    align-items: start;
}

/* TAG */

.whyx-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.whyx-con h2 {
    margin-bottom: 26px;
    font-size: 40px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.whyx-con p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* GRID */

.whyx-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* BOX */

.whyx-box {
    position: relative;
    padding: 32px 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: 0.35s ease;
}

/* HOVER */

.whyx-box:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.20);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

/* ICON */

.whyx-box i {
    font-size: 26px;
    margin-bottom: 22px;
    color: #60A5FA;
}

/* TITLE */

.whyx-box h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.35;
    color: #ffffff;
}

/* TEXT */

.whyx-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #CBD5E1;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .whyx-wrap {
        grid-template-columns: 1fr;
    }
    .whyx-con h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .whyx-sec {
        padding: 90px 20px;
    }
    .whyx-grid {
        grid-template-columns: 1fr;
    }
    .whyx-con h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .whyx-con p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
BOOKING SECTION
========================= */

.book-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081122 50%, #050816 100%);
}

/* GLOW */

.book-sec::before {
    content: '';
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* =========================
HEAD
========================= */

.book-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* TAG */

.book-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.book-head h2 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.book-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID
========================= */

.book-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* =========================
CARD
========================= */

.book-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

/* GLOW */

.book-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(50px);
}

/* HOVER */

.book-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* NUMBER */

.book-no {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
}

/* ICON */

.book-card i {
    font-size: 28px;
    margin-bottom: 26px;
    color: #60A5FA;
}

/* TITLE */

.book-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.35;
    color: #ffffff;
}

/* TEXT */

.book-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .book-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .book-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .book-sec {
        padding: 90px 20px;
    }
    .book-head {
        margin-bottom: 50px;
    }
    .book-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .book-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .book-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .book-card {
        padding: 34px 24px;
    }
    .book-card h3 {
        font-size: 22px;
    }
}

/* =========================
PORTFOLIO SECTION
========================= */

.port-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #081122 0%, #050816 100%);
}

/* GLOW */

.port-sec::before {
    content: '';
    position: absolute;
    left: -140px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* WRAP */

.port-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 55px;
    align-items: center;
}

/* =========================
IMAGE
========================= */

.port-img {
    position: relative;
}

.port-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.8s ease, filter 0.5s ease;
}

.port-img:hover img {
    transform: scale(1.05) translateY(-6px);
    filter: brightness(1.05);
}

.port-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}

.port-img:hover::before {
    opacity: 1;
}

/* FLOAT */

.port-float {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* MINI CARD */

.port-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 18px;
    background: rgba(10, 15, 35, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* ICON */

.port-mini i {
    color: #60A5FA;
    font-size: 16px;
}

/* =========================
CONTENT
========================= */

.port-con {
    position: relative;
}

/* TAG */

.port-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.port-con h2 {
    margin-bottom: 28px;
    font-size: 44px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.port-con p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* BUTTON */

.port-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
    transition: 0.35s ease;
}

/* HOVER */

.port-btn:hover {
    transform: translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .port-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .port-con h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .port-sec {
        padding: 90px 20px;
    }
    .port-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .port-img {
        order: 1;
    }
    .port-con {
        order: 2;
    }
    .port-img img {
        height: auto;
        border-radius: 24px;
    }
    .port-con h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .port-con p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
PROFILE SECTION
========================= */

.pro-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081122 50%, #050816 100%);
}

/* GLOW */

.pro-sec::before {
    content: '';
    position: absolute;
    right: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* WRAP */

.pro-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 55px;
    align-items: center;
}

/* =========================
CONTENT
========================= */

.pro-con {
    position: relative;
}

/* TAG */

.pro-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.pro-con h2 {
    margin-bottom: 28px;
    font-size: 44px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.pro-con p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* BUTTON */

.pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
    transition: 0.35s ease;
}

/* HOVER */

.pro-btn:hover {
    transform: translateY(-4px);
}

/* =========================
IMAGE
========================= */

.pro-img {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.pro-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.8s ease, filter 0.5s ease;
}

/* HOVER */

.pro-img:hover img {
    transform: scale(1.05) translateY(-6px);
    filter: brightness(1.05);
}

/* SHINE */

.pro-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}

.pro-img:hover::before {
    opacity: 1;
}

/* FLOAT */

.pro-float {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 3;
}

/* MINI */

.pro-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 18px;
    background: rgba(10, 15, 35, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* ICON */

.pro-mini i {
    color: #60A5FA;
    font-size: 16px;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .pro-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pro-con h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .pro-sec {
        padding: 90px 20px;
    }
    .pro-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pro-img {
        order: 1;
    }
    .pro-con {
        order: 2;
    }
    .pro-img img {
        height: auto;
        border-radius: 24px;
    }
    .pro-con h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .pro-con p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
CATEGORY SECTION
========================= */

.cat-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #081122 0%, #050816 100%);
}

/* GLOW */

.cat-sec::before {
    content: '';
    position: absolute;
    left: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* =========================
HEAD
========================= */

.cat-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* TAG */

.cat-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.cat-head h2 {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.cat-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID
========================= */

.cat-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* =========================
CARD
========================= */

.cat-card {
    position: relative;
    padding: 38px 30px;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

/* GLOW */

.cat-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(50px);
}

/* HOVER */

.cat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* ICON */

.cat-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, rgba(37, 99, 235, 0.20), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.18);
}

/* ICON */

.cat-icon i {
    font-size: 28px;
    color: #60A5FA;
}

/* TITLE */

.cat-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.3;
    color: #ffffff;
}

/* TEXT */

.cat-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #CBD5E1;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .cat-sec {
        padding: 90px 20px;
    }
    .cat-head {
        margin-bottom: 50px;
    }
    .cat-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .cat-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .cat-card {
        padding: 28px 20px;
    }
    .cat-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }
    .cat-icon i {
        font-size: 22px;
    }
    .cat-card h3 {
        font-size: 20px;
    }
    .cat-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
PREMIUM CTA SECTION
========================= */

.cta-sec {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081122 50%, #050816 100%);
}

/* GLOW */

.cta-sec::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(130px);
}

/* WRAP */

.cta-wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* TAG */

.cta-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* HEADING */

.cta-wrap h2 {
    margin-bottom: 30px;
    font-size: 48px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.cta-wrap p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.95;
    color: #CBD5E1;
}

/* BUTTON AREA */

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 45px;
}

/* BUTTON */

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

/* HOVER */

.cta-btn:hover {
    transform: translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .cta-wrap h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .cta-sec {
        padding: 90px 20px;
    }
    .cta-wrap h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .cta-wrap p {
        font-size: 16px;
        line-height: 1.85;
    }
    .cta-btns {
        gap: 14px;
    }
    .cta-btn {
        width: 100%;
    }
}

/* =========================
LOCATION SECTION
========================= */

.loc-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #081122 0%, #050816 100%);
}

/* GLOW */

.loc-sec::before {
    content: '';
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* =========================
HEAD
========================= */

.loc-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

/* TAG */

.loc-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.loc-head h2 {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.loc-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID
========================= */

.loc-grid {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* ITEM */

.loc-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
    overflow: hidden;
}

/* GLOW */

.loc-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(37, 99, 235, 0.14), rgba(96, 165, 250, 0.04));
    opacity: 0;
    transition: 0.35s ease;
}

/* HOVER */

.loc-item:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.24);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.14);
}

.loc-item:hover::before {
    opacity: 1;
}

/* =========================
BUTTON
========================= */

.loc-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

/* BUTTON */

.loc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
    transition: 0.35s ease;
}

/* HOVER */

.loc-btn:hover {
    transform: translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .loc-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .loc-sec {
        padding: 90px 20px;
    }
    .loc-head {
        margin-bottom: 45px;
    }
    .loc-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .loc-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .loc-grid {
        gap: 14px;
    }
    .loc-item {
        padding: 15px 22px;
        font-size: 14px;
    }
}

/* =========================
TESTIMONIAL SECTION
========================= */

.test-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081122 50%, #050816 100%);
}

/* GLOW */

.test-sec::before {
    content: '';
    position: absolute;
    left: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* =========================
HEAD
========================= */

.test-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* TAG */

.test-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.test-head h2 {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.test-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
GRID
========================= */

.test-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
CARD
========================= */

.test-card {
    position: relative;
    padding: 38px 32px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

/* GLOW */

.test-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(50px);
}

/* HOVER */

.test-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* STARS */

.test-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.test-stars i {
    color: #FBBF24;
    font-size: 15px;
}

/* REVIEW TEXT */

.test-card p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* USER */

.test-user h3 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #ffffff;
}

/* LOCATION */

.test-user span {
    font-size: 14px;
    color: #60A5FA;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .test-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .test-sec {
        padding: 90px 20px;
    }
    .test-head {
        margin-bottom: 50px;
    }
    .test-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .test-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .test-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .test-card {
        padding: 32px 24px;
    }
}

/* =========================
FAQ SECTION
========================= */

.faq-sec {
    position: relative;
    padding: 110px 20px;
    overflow: hidden;
    background: linear-gradient( 180deg, #081122 0%, #050816 100%);
}

/* GLOW */

.faq-sec::before {
    content: '';
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.10);
    filter: blur(120px);
}

/* =========================
HEAD
========================= */

.faq-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

/* TAG */

.faq-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.faq-head h2 {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.faq-head p {
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* =========================
FAQ WRAP
========================= */

.faq-wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

/* ITEM */

.faq-item {
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
}

/* HOVER */

.faq-item:hover {
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.10);
}

/* QUESTION */

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 30px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    text-align: left;
}

/* ICON */

.faq-question i {
    font-size: 16px;
    color: #60A5FA;
    transition: 0.35s ease;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

/* TEXT */

.faq-answer p {
    padding: 0 30px 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .faq-head h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .faq-sec {
        padding: 90px 20px;
    }
    .faq-head {
        margin-bottom: 45px;
    }
    .faq-head h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .faq-head p {
        font-size: 16px;
        line-height: 1.8;
    }
    .faq-question {
        padding: 22px 22px;
        font-size: 17px;
    }
    .faq-answer p {
        padding: 0 22px 24px;
        font-size: 15px;
    }
}

/* =========================
FOOTER SECTION
========================= */

.foot-sec {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 180deg, #050816 0%, #081224 40%, #03050D 100%);
    border-top: 1px solid rgba(96, 165, 250, 0.12);
}

.foot-sec::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(100px);
}

/* GLOW */

.foot-sec::before {
    content: '';
    position: absolute;
    left: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    filter: blur(120px);
}

/* =========================
TOP CTA
========================= */

.foot-cta {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 110px 20px 90px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* TAG */

.foot-cta-tag {
    display: inline-block;
    padding: 12px 24px;
    margin-bottom: 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #60A5FA;
    font-size: 14px;
    font-weight: 500;
}

/* TITLE */

.foot-cta h2 {
    margin-bottom: 28px;
    font-size: 48px;
    line-height: 1.15;
    color: #ffffff;
}

/* TEXT */

.foot-cta p {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* CTA BUTTONS */

.foot-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 42px;
}

/* BUTTON */

.foot-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient( 135deg, #2563EB, #60A5FA);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

/* HOVER */

.foot-cta-btn:hover {
    transform: translateY(-4px);
}

/* =========================
MAIN FOOTER
========================= */

.foot-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 50px;
}

/* LOGO */

.foot-logo {
    display: inline-block;
    margin-bottom: 24px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.foot-logo span {
    color: #60A5FA;
}

/* TEXT */

.foot-text {
    font-size: 16px;
    line-height: 1.9;
    color: #CBD5E1;
}

/* TITLE */

.foot-col h3 {
    margin-bottom: 24px;
    font-size: 22px;
    color: #ffffff;
}

/* LIST */

.foot-col ul {
    list-style: none;
}

.foot-col ul li {
    margin-bottom: 16px;
}

/* LINKS */

.foot-col ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #CBD5E1;
    transition: 0.35s ease;
}

.foot-col ul li a:hover {
    color: #60A5FA;
    padding-left: 6px;
}

/* CONTACT */

.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CONTACT LINK */

.foot-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 15px;
    color: #CBD5E1;
    transition: 0.35s ease;
}

.foot-link i {
    color: #60A5FA;
    font-size: 16px;
}

.foot-link:hover {
    color: #ffffff;
    transform: translateX(6px);
}

/* =========================
BOTTOM
========================= */

.foot-bottom {
    position: relative;
    z-index: 2;
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* TEXT */

.foot-bottom p {
    font-size: 14px;
    color: #94A3B8;
}

/* LINKS */

.foot-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.foot-bottom-links a {
    text-decoration: none;
    font-size: 14px;
    color: #94A3B8;
    transition: 0.35s ease;
}

.foot-bottom-links a:hover {
    color: #60A5FA;
}

/* =========================
TABLET
========================= */

@media(max-width:992px) {
    .foot-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .foot-cta h2 {
        font-size: 40px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    .foot-cta {
        padding: 90px 20px 70px;
    }
    .foot-cta h2 {
        font-size: 34px;
        line-height: 1.25;
    }
    .foot-cta p {
        font-size: 16px;
        line-height: 1.8;
    }
    .foot-cta-btn {
        width: 100%;
    }
    .foot-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 20px;
    }
    .foot-logo {
        font-size: 28px;
    }
    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .foot-bottom-links {
        gap: 18px;
    }
}

/* =========================
DESKTOP FLOATING
========================= */

.float-contact {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* BUTTON */

.float-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.30);
    overflow: hidden;
    transition: 0.35s ease;
}

/* ICON */

.float-btn i {
    font-size: 24px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* CALL */

.call-btn {
    background: linear-gradient( 135deg, #DC2626, #BE123C);
}

/* WHATSAPP */

.whatsapp-btn {
    background: linear-gradient( 135deg, #16A34A, #22C55E);
}

/* GLOW */

.float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.18), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

/* HOVER */

.float-btn:hover {
    transform: translateY(-6px) scale(1.05);
}

.float-btn:hover::before {
    opacity: 1;
}

/* =========================
MOBILE CONTACT BAR
========================= */

.mobile-contact {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    padding: 14px;
    display: none;
    align-items: center;
    gap: 14px;
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* BUTTON */

.mobile-btn {
    flex: 1;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ICON */

.mobile-btn i {
    font-size: 20px;
}

/* CALL */

.mobile-call-btn {
    background: linear-gradient( 135deg, #DC2626, #BE123C);
}

/* WHATSAPP */

.mobile-whatsapp-btn {
    background: linear-gradient( 135deg, #16A34A, #22C55E);
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    /* HIDE DESKTOP FLOAT */
    .float-contact {
        display: none;
    }
    /* SHOW MOBILE BAR */
    .mobile-contact {
        display: flex;
    }