/*
Theme Name: YSBRNV Custom
Theme URI: https://ysbrnv.com
Author: YSBRNV Consultant & Management Sdn Bhd
Description: Custom corporate theme for YSBRNV Consultant & Management Sdn Bhd.
Version: 1.0.0
Text Domain: ysbrnv-custom
*/

/* =========================================================
   YSBRNV CUSTOM THEME
   Brand: Dark Navy / Gold / White
   ========================================================= */

:root {
    --ys-navy: #04131d;
    --ys-navy-light: #0a1d2b;
    --ys-navy-soft: #102735;

    --ys-gold: #d99a32;
    --ys-gold-light: #f3b94f;
    --ys-gold-dark: #b5791e;

    --ys-white: #ffffff;
    --ys-off-white: #f8f8f6;
    --ys-light: #f2f2ef;

    --ys-black: #111111;
    --ys-text: #242424;
    --ys-grey: #6f7478;

    --ys-container: 1420px;
}

/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ys-text);
    background: var(--ys-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================
   GLOBAL CONTAINER
   ========================= */

.ys-container {
    width: min(92%, var(--ys-container));
    margin: 0 auto;
}

/* =========================
   TYPOGRAPHY
   ========================= */

.ys-eyebrow {
    color: var(--ys-gold-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 15px;
}

.ys-section-title {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--ys-black);
    font-weight: 700;
}

.ys-gold-text {
    color: var(--ys-gold);
}

/* =========================
   BUTTONS
   ========================= */

.ys-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
    cursor: pointer;
}

.ys-btn:hover {
    transform: translateY(-2px);
}

.ys-btn-gold {
    background: linear-gradient(
        135deg,
        var(--ys-gold-light),
        var(--ys-gold)
    );
    color: #111;
    border-color: rgba(255, 255, 255, 0.15);
}

.ys-btn-gold:hover {
    background: var(--ys-gold-light);
}

.ys-btn-outline {
    border-color: rgba(255,255,255,0.55);
    color: var(--ys-white);
    background: transparent;
}

.ys-btn-outline:hover {
    border-color: var(--ys-gold);
    color: var(--ys-gold-light);
}

/* =========================
   HEADER
   ========================= */

.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 25px 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: 255px;
    height: auto;
}

.primary-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 38px;
}

.primary-navigation a {
    color: rgba(255,255,255,0.94);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
    color: var(--ys-gold-light);
}

/* =========================
   HERO
   ========================= */

.ys-hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    color: var(--ys-white);
    background:
        linear-gradient(
            90deg,
            rgba(2,15,24,0.97) 0%,
            rgba(2,15,24,0.91) 32%,
            rgba(2,15,24,0.52) 67%,
            rgba(2,15,24,0.34) 100%
        );
    background-color: var(--ys-navy);
    overflow: hidden;
}

.ys-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    max-width: 670px;
}

.ys-hero h1 {
    font-size: clamp(50px, 5.2vw, 79px);
    line-height: 1.05;
    margin: 20px 0 25px;
    letter-spacing: -0.045em;
    color: var(--ys-white);
}

.ys-hero h1 span {
    color: var(--ys-gold-light);
}

.ys-hero p {
    max-width: 590px;
    font-size: 19px;
    color: rgba(255,255,255,0.86);
    line-height: 1.7;
    margin-bottom: 35px;
}

.ys-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

/* =========================
   WHO WE ARE
   ========================= */

.ys-about {
    padding: 100px 0 110px;
    background: var(--ys-off-white);
}

.ys-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.ys-about-copy p {
    color: var(--ys-grey);
    font-size: 17px;
    max-width: 570px;
}

.ys-about-media {
    position: relative;
}

.ys-about-main-image {
    width: 85%;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
}

.ys-about-small-image {
    position: absolute;
    width: 38%;
    right: -2%;
    bottom: -10%;
    border: 8px solid var(--ys-off-white);
    border-radius: 16px;
    overflow: hidden;
}

/* =========================
   SECTIONS
   ========================= */

.ys-section {
    padding: 100px 0;
}

.ys-section-dark {
    background: var(--ys-navy);
    color: var(--ys-white);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    background: #020d15;
    color: rgba(255,255,255,0.76);
    padding: 70px 0 30px;
}

.site-footer a {
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--ys-gold-light);
}

/* =========================
   MOBILE MENU BUTTON
   ========================= */

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   WORDPRESS
   ========================= */

.admin-bar .site-header {
    top: 32px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

    .primary-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-header .ys-header-cta {
        display: none;
    }

    .ys-about-grid {
        gap: 50px;
    }
}

@media (max-width: 850px) {

    .site-logo img {
        width: 210px;
    }

    .ys-hero {
        min-height: 720px;
    }

    .ys-hero-content {
        max-width: 610px;
        padding-top: 100px;
    }

    .ys-about {
        padding: 75px 0;
    }

    .ys-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ys-about-main-image {
        width: 90%;
        margin: 0;
    }

    .ys-about-small-image {
        right: 0;
    }
}

@media (max-width: 600px) {

    .site-header {
        padding: 18px 0;
    }

    .site-logo img {
        width: 175px;
    }

    .ys-hero {
        min-height: 680px;
    }

    .ys-hero h1 {
        font-size: 46px;
    }

    .ys-hero p {
        font-size: 17px;
    }

    .ys-btn {
        min-height: 54px;
        padding: 0 23px;
    }

    .ys-about-small-image {
        position: relative;
        width: 65%;
        margin: -35px 0 0 auto;
        bottom: auto;
        right: auto;
    }

    .ys-section {
        padding: 70px 0;
    }
}

@media (max-width: 782px) {

    .admin-bar .site-header {
        top: 46px;
    }
}
/* =========================
   LOGO FALLBACK
   ========================= */

.ys-logo-fallback {
    color: #ffffff;
    line-height: 1;
}

.ys-logo-main {
    font-size: 37px;
    font-weight: 500;
    letter-spacing: 10px;
    color: var(--ys-gold-light);
}

.ys-logo-sub {
    margin-top: 9px;
    padding-top: 7px;
    border-top: 1px solid var(--ys-gold);
    font-size: 8px;
    letter-spacing: 0.7px;
    text-align: center;
    color: rgba(255,255,255,0.9);
}


/* =========================
   MOBILE NAVIGATION
   ========================= */

.ys-mobile-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 17, 27, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ys-mobile-navigation .ys-container {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 25px;
}

.ys-mobile-navigation a {
    color: #ffffff;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 600;
}

.ys-mobile-navigation a:hover {
    color: var(--ys-gold-light);
}

.ys-mobile-navigation.is-open {
    display: block;
}

@media (min-width: 1101px) {

    .ys-mobile-navigation {
        display: none !important;
    }
}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background:
        linear-gradient(
            180deg,
            #061722 0%,
            #020b11 100%
        );

    color: rgba(255,255,255,0.72);

    padding: 90px 0 28px;
}

.ys-footer-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        0.7fr
        0.9fr
        1.2fr;

    gap: 65px;

    padding-bottom: 75px;
}

.ys-footer-brand {
    max-width: 340px;
}

.ys-footer-logo-main {
    display: inline-block;

    color: var(--ys-gold-light);

    font-size: 39px;
    font-weight: 400;

    letter-spacing: 9px;

    line-height: 1;
}

.ys-footer-logo-sub {
    display: inline-block;

    margin-top: 9px;
    padding-top: 8px;

    border-top: 1px solid rgba(222,163,65,0.7);

    color: rgba(255,255,255,0.85);

    font-size: 8px;

    letter-spacing: 0.75px;
}

.ys-footer-brand p {
    margin-top: 28px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    line-height: 1.8;
}

.ys-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.ys-footer-column h4 {
    margin-bottom: 11px;

    color: #ffffff;

    font-size: 15px;
}

.ys-footer-column a {
    color: rgba(255,255,255,0.55);

    font-size: 14px;

    transition: 0.25s ease;
}

.ys-footer-column a:hover {
    color: var(--ys-gold-light);

    transform: translateX(3px);
}

.ys-footer-label {
    color: var(--ys-gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.1em;
}

.ys-footer-contact h3 {
    margin: 15px 0 27px;

    color: #ffffff;

    font-size: clamp(29px, 3vw, 42px);

    line-height: 1.15;

    letter-spacing: -0.035em;
}

.ys-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.10);

    color: rgba(255,255,255,0.38);

    font-size: 12px;
}

.ys-footer-bottom-links {
    display: flex;

    gap: 25px;
}

.ys-footer-bottom-links a:hover {
    color: var(--ys-gold-light);
}


/* FOOTER RESPONSIVE */

@media (max-width: 1000px) {

    .ys-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .site-footer {
        padding-top: 65px;
    }

    .ys-footer-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .ys-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.ys-hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
}

.ys-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: url("assets/images/ysbrnv-hero.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.ys-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(2, 15, 24, 0.98) 0%,
        rgba(2, 15, 24, 0.92) 30%,
        rgba(2, 15, 24, 0.64) 60%,
        rgba(2, 15, 24, 0.30) 100%
    );
}

.ys-hero-layout {
    position: relative;
    z-index: 3;
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.ys-hero-brand {
    text-align: center;
    padding-top: 120px;
}

.ys-hero-brand-name {
    color: var(--ys-gold-light);
    font-size: clamp(65px, 7vw, 118px);
    font-weight: 300;
    letter-spacing: 0.22em;
    line-height: 1;
    white-space: nowrap;
}

.ys-hero-brand-sub {
    margin-top: 25px;
    color: rgba(255,255,255,0.93);
    font-size: clamp(15px, 1.5vw, 27px);
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.ys-video-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-weight: 600;
}

.ys-video-link:hover {
    color: var(--ys-gold-light);
}

.ys-play-button {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    font-size: 13px;
    padding-left: 3px;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.ys-about-eyebrow {
    color: #ae7622;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.ys-about-copy .ys-section-title {
    margin-bottom: 28px;
}

.ys-about-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    font-weight: 700;
    color: #ae7622;
}

.ys-about-link:hover {
    color: var(--ys-gold);
}

.ys-about-main-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.ys-about-small-image img {
    width: 100%;
    min-height: 245px;
    object-fit: cover;
}


/* =========================================================
   SERVICES
   ========================================================= */

.ys-services-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 70px;
}

.ys-services-heading h2 {
    margin: 15px 0 0;
    color: #ffffff;
    font-size: clamp(40px, 4.5vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.ys-services-heading h2 span {
    color: var(--ys-gold-light);
}

.ys-services-heading > p {
    max-width: 530px;
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.75;
}

.ys-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.ys-service-card {
    position: relative;
    min-height: 430px;
    padding: 45px 40px;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.ys-service-card:first-child {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.ys-service-card:hover {
    background: rgba(255,255,255,0.04);
}

.ys-service-number {
    color: rgba(255,255,255,0.36);
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}

.ys-service-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border: 1px solid rgba(222,163,65,0.55);
    border-radius: 50%;

    color: var(--ys-gold-light);
    font-size: 23px;
}

.ys-service-card h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.25;
}

.ys-service-card p {
    max-width: 360px;
    color: rgba(255,255,255,0.63);
    font-size: 15px;
    line-height: 1.7;
}

.ys-service-card a {
    position: absolute;
    left: 40px;
    bottom: 42px;

    display: inline-flex;
    gap: 14px;

    color: var(--ys-gold-light);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   HOMEPAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .ys-hero-layout {
        grid-template-columns: 1fr;
    }

    .ys-hero-brand {
        display: none;
    }

    .ys-services-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 850px) {

    .ys-services-grid {
        grid-template-columns: 1fr;
    }

    .ys-service-card {
        border-left: 1px solid rgba(255,255,255,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
}

@media (max-width: 600px) {

    .ys-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .ys-about-main-image img {
        min-height: 360px;
    }

    .ys-about-small-image img {
        min-height: 180px;
    }

    .ys-service-card {
        min-height: 400px;
        padding: 35px 28px;
    }

    .ys-service-card a {
        left: 28px;
        bottom: 35px;
    }
}
/* =========================================================
   YSBRNV PREMIUM LIGHT BLUE BRAND
   ========================================================= */

.ys-logo-main,
.ys-hero-brand-name,
.ys-footer-logo-main {
    color: #8ED0F0 !important;
    text-shadow:
        0 0 18px rgba(142, 208, 240, 0.12),
        0 0 40px rgba(142, 208, 240, 0.06);
}

/* Thin line under logo */
.ys-logo-sub,
.ys-footer-logo-sub {
    border-top-color: rgba(142, 208, 240, 0.75);
}
/* =========================================================
   YSBRNV LUXURY ICE BLUE BRANDING
   ========================================================= */

/* Main YSBRNV branding */
.ys-logo-main,
.ys-hero-brand-name,
.ys-footer-logo-main {

    background: linear-gradient(
        180deg,
        #E1F5FF 0%,
        #A9DFFF 35%,
        #79C7F5 65%,
        #54AEE8 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: #8ED0F0;

    filter:
        drop-shadow(0 0 8px rgba(112, 196, 245, 0.18))
        drop-shadow(0 0 22px rgba(67, 161, 220, 0.10));
}


/* Thin premium blue line under YSBRNV */
.ys-logo-sub,
.ys-footer-logo-sub {
    border-top-color: rgba(126, 203, 247, 0.70);
}


/* Big hero YSBRNV slightly stronger */
.ys-hero-brand-name {
    background: linear-gradient(
        180deg,
        #E8F8FF 0%,
        #A8DFFF 30%,
        #6FC5F7 65%,
        #4BA7E5 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 0 10px rgba(115, 201, 255, 0.20))
        drop-shadow(0 0 28px rgba(75, 167, 229, 0.10));
}


/* Optional subtle premium blue line beneath large branding */
.ys-hero-brand-sub {
    position: relative;
}

.ys-hero-brand-sub::before {
    content: "";
    display: block;

    width: 78%;
    max-width: 520px;
    height: 1px;

    margin: 0 auto 18px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(105, 195, 247, 0.85),
        transparent
    );

    box-shadow:
        0 0 12px rgba(91, 184, 239, 0.30);
}
/* =========================================================
   GLOBAL ICE BLUE OVERRIDE
   Tukar semua gold/champagne kepada ice blue
   ========================================================= */

:root {
    --ys-ice-blue: #8ED0F0;
    --ys-ice-blue-light: #DDF5FF;
    --ys-ice-blue-mid: #A9DFFF;
    --ys-ice-blue-deep: #6FC5F7;
    --ys-ice-blue-dark: #4BA7E5;
    --ys-dark-text: #06131d;
}


/* =========================================================
   1) Semua text highlight / accent
   ========================================================= */

.ys-eyebrow,
.ys-about-eyebrow,
.ys-footer-label,
.ys-gold-text,
.ys-service-card a,
.ys-about-link,
.ys-video-link:hover,
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
    color: var(--ys-ice-blue) !important;
}


/* Hero highlighted word: Build Tomorrow */
.ys-hero h1 span,
.ys-services-heading h2 span {
    color: var(--ys-ice-blue) !important;
}


/* =========================================================
   2) Button background gold -> ice blue
   ========================================================= */

.ys-btn-gold {
    background: linear-gradient(
        135deg,
        var(--ys-ice-blue-light),
        var(--ys-ice-blue-mid),
        var(--ys-ice-blue-deep)
    ) !important;

    color: var(--ys-dark-text) !important;
    border-color: rgba(173, 226, 255, 0.35) !important;

    box-shadow:
        0 8px 24px rgba(111, 197, 247, 0.16),
        0 0 18px rgba(111, 197, 247, 0.10);
}

.ys-btn-gold:hover {
    background: linear-gradient(
        135deg,
        #EAF9FF,
        #B7E7FF,
        #7CCBF8
    ) !important;

    color: var(--ys-dark-text) !important;
}


/* Button arrow */
.ys-btn-gold span {
    color: var(--ys-dark-text) !important;
}


/* =========================================================
   3) Discover / Explore links + small arrows
   ========================================================= */

.ys-about-link,
.ys-about-link span,
.ys-service-card a,
.ys-service-card a span {
    color: var(--ys-ice-blue) !important;
}

.ys-about-link:hover,
.ys-service-card a:hover {
    color: var(--ys-ice-blue-light) !important;
}


/* =========================================================
   4) Service icon circles & borders
   ========================================================= */

.ys-service-icon {
    color: var(--ys-ice-blue) !important;
    border-color: rgba(142, 208, 240, 0.55) !important;
    box-shadow: 0 0 16px rgba(142, 208, 240, 0.08);
}


/* =========================================================
   5) Logo divider / subtle lines
   ========================================================= */

.ys-logo-sub,
.ys-footer-logo-sub {
    border-top-color: rgba(142, 208, 240, 0.70) !important;
}


/* Hero branding line */
.ys-hero-brand-sub::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(142, 208, 240, 0.95),
        transparent
    ) !important;

    box-shadow: 0 0 12px rgba(142, 208, 240, 0.28) !important;
}


/* =========================================================
   6) Optional: mobile nav hover also ice blue
   ========================================================= */

.ys-mobile-navigation a:hover {
    color: var(--ys-ice-blue) !important;
}
/* =========================================================
   NEW PREMIUM FOOTER STYLE
   ========================================================= */

.site-footer {
    background: #02070c !important;
    color: rgba(255,255,255,0.78);
    padding: 80px 0 22px !important;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.custom-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.2fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.custom-footer-col h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-subheading {
    margin-top: 28px !important;
}

.footer-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #8ED0F0;
    margin-bottom: 28px;
    box-shadow: 0 0 10px rgba(142,208,240,0.25);
}

.custom-footer-brand {
    max-width: 360px;
}

.custom-footer-logo {
    display: inline-block;
    margin-bottom: 28px;
}

.custom-footer-logo-main {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 8px;

    background: linear-gradient(
        180deg,
        #EAF8FF 0%,
        #B5E5FF 35%,
        #84CEF6 68%,
        #58B2E8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-footer-logo-sub {
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid rgba(142,208,240,0.45);
    color: rgba(255,255,255,0.85);
    font-size: 8px;
    letter-spacing: 0.75px;
    text-align: center;
}

.custom-footer-brand p,
.custom-footer-col p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.8;
}

.custom-footer-col a {
    display: block;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    transition: all 0.25s ease;
}

.custom-footer-col a:hover,
.custom-footer-links a:hover {
    color: #8ED0F0;
    transform: translateX(3px);
}

.footer-email {
    margin-top: 24px !important;
    color: #8ED0F0 !important;
}

.custom-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.custom-footer-copy {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
}

.custom-footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.custom-footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: all 0.25s ease;
}

/* Responsive */
@media (max-width: 1100px) {
    .custom-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 700px) {
    .custom-footer-grid {
        grid-template-columns: 1fr;
    }

    .custom-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-footer-links {
        gap: 18px;
        flex-wrap: wrap;
    }
}