* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
}

/* =================================
   NAVIGATION
================================= */

.navbar {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: #080808;

    position: relative;
    z-index: 100;
}


/* =================================
   LUNOG LOGO
================================= */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    width: 80px;
    height: auto;

    display: block;

    /* No box */
    background: transparent;

    /* No floating */
    animation: none;

    /* Small professional shadow */
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.45));
}


/* Hide old text styling */

.logo span {
    display: none;
}


/* =================================
   NAVIGATION LINKS
================================= */

.nav-links {
    display: flex;

    gap: 30px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {

    .navbar {
        height: 60px;

        padding: 0 5%;
    }

    .logo img {
        width: 80px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

}

/* HERO */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 8%;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.85)
        );
}

.hero-content {
    max-width: 750px;
}

.small-title,
.section-label {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: bold;
}

.hero h1 {
    font-size: 65px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero h1 span {
    color: #d4af37;
}

.hero-text {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-button,
.support-button {
    display: inline-block;
    padding: 14px 25px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}

.hero-button:hover,
.support-button:hover {
    background: white;
}


/* GENERAL SECTIONS */

.intro,
.services,
.vision,
.contact {
    padding: 100px 8%;
}

.intro {
    max-width: 900px;
}

h2 {
    font-size: 40px;
    margin: 15px 0 20px;
}

.intro p:last-child,
.contact p:last-child {
    color: #bbbbbb;
    line-height: 1.8;
    font-size: 17px;
}


/* SERVICES */

.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    background: #151515;
    border: 1px solid #292929;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
    line-height: 1.6;
}


/* VISION */

.vision {
    background: #111;
    text-align: center;
}

.vision h2 {
    max-width: 850px;
    margin: 20px auto;
    line-height: 1.4;
}


/* SUPPORT */

.support-preview {
    padding: 100px 8%;
    background: linear-gradient(120deg, #111, #17130a);
}

.support-preview div {
    max-width: 700px;
}

.support-preview p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* CONTACT */

.contact {
    text-align: center;
}


/* FOOTER */

footer {
    padding: 30px;
    text-align: center;
    background: #050505;
    color: #777;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 45px;
    }

    .service-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 38px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 32px;
    }
}
/* =================================
   EMOTIONAL SUPPORT PAGE
================================= */


.support-hero {

    min-height: 75vh;

    display: flex;

    align-items: center;

    padding: 0 8%;

    background:
        radial-gradient(
            circle at center,
            #211c0d,
            #080808 65%
        );

}


.support-content {

    max-width: 750px;

}


.support-content h1 {

    font-size: 75px;

    margin: 20px 0;

    color: #d4af37;

}


.support-content p {

    color: #c4c4c4;

    font-size: 19px;

    line-height: 1.8;

    max-width: 650px;

}


/* FEELINGS */

.feelings {

    padding: 100px 8%;

    text-align: center;

}


.feelings-intro {

    color: #999;

    margin-bottom: 45px;

}


.feeling-container {

    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.feeling-card {

    padding: 35px 20px;

    background: #151515;

    border: 1px solid #292929;

    color: white;

    cursor: pointer;

    font-size: 40px;

    transition: 0.3s;

}


.feeling-card span {

    display: block;

    font-size: 16px;

    margin-top: 15px;

    color: #ccc;

}


.feeling-card:hover {

    transform: translateY(-7px);

    border-color: #d4af37;

    background: #1c1c1c;

}

#support-message {
    max-width: 700px;
    margin: 45px auto 0;
    padding: 35px 40px;

    background: linear-gradient(
        135deg,
        #151515,
        #0e0e0e
    );

    border: 1px solid #292929;
    border-left: 4px solid #d4af37;

    color: #e5e5e5;

    font-size: 18px;
    line-height: 1.8;

    border-radius: 10px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(212, 175, 55, 0.06);

    animation: messageAppear 0.6s ease;
}

/* ENCOURAGEMENT */

.encouragement {

    padding: 100px 8%;

    text-align: center;

    background: #111;

}


.encouragement h2 {

    max-width: 800px;

    margin: 20px auto;

    color: white;

}


.encouragement p:last-child {

    max-width: 650px;

    margin: auto;

    color: #aaa;

    line-height: 1.8;

}


/* MOBILE SUPPORT PAGE */

@media (max-width: 700px) {

    .support-content h1 {

        font-size: 55px;

    }


    .feeling-container {

        grid-template-columns: 1fr 1fr;

    }

}


@media (max-width: 500px) {

    .feeling-container {

        grid-template-columns: 1fr;

    }

}
/* =================================
   BEAUTIFUL SUPPORT HERO
================================= */

.support-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(212, 175, 55, 0.12),
            transparent 35%
        ),
        #080808;
}


.support-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}


.support-content h1 {
    font-size: 80px;
    line-height: 1;
    margin: 22px 0;
    color: white;
}


.support-content h1 span {
    color: #d4af37;
}


.support-main-text {
    font-size: 24px !important;
    color: #e5e5e5 !important;
    margin-bottom: 15px;
}


.support-small-text {
    font-size: 17px !important;
    color: #999 !important;
}


.support-start {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 25px;

    color: #d4af37;

    border: 1px solid #d4af37;

    text-decoration: none;

    transition: 0.3s;
}


.support-start:hover {
    background: #d4af37;
    color: #000;
}


/* GOLD GLOW */

.support-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.05);

    filter: blur(20px);

    animation: supportGlow 5s ease-in-out infinite;
}


@keyframes supportGlow {

    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-50%) scale(1.15);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .support-content h1 {
        font-size: 58px;
    }

    .support-main-text {
        font-size: 20px !important;
    }

    .support-glow {
        width: 300px;
        height: 300px;
        right: -100px;
    }

}
/* =================================
   FEELING CARDS
================================= */

.feelings {
    background: #0b0b0b;
}


.feelings h2 {
    margin-top: 18px;
}


.feelings-intro {
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.7;
}


.feeling-card {
    min-height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #111;

    border: 1px solid #252525;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

    position: relative;
    overflow: hidden;
}


.feeling-card::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 3px;

    top: 0;
    left: -100%;

    background: #d4af37;

    transition: 0.4s;
}


.feeling-card:hover {
    transform: translateY(-8px);

    border-color: #d4af37;

    background: #161616;
}


.feeling-card:hover::before {
    left: 0;
}


.feeling-icon {
    font-size: 42px;

    margin-bottom: 18px;

    transition: transform 0.3s ease;
}


.feeling-card:hover .feeling-icon {
    transform: scale(1.15);
}


.feeling-card span {
    font-size: 16px;

    color: #ddd;

    font-weight: 500;
}


/* MESSAGE */

#support-message {
    max-width: 700px;

    margin: 45px auto 0;

    padding: 30px;

    background: #151515;

    border-left: 3px solid #d4af37;

    color: #ddd;

    line-height: 1.8;

    border-radius: 4px;

    animation: messageAppear 0.5s ease;
}


@keyframes messageAppear {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
.breathing-section {
    text-align: center;
    max-width: 700px;
    margin: 80px auto 20px;
    padding: 50px 20px;
}

.breathing-section h3 {
    color: white;
    font-size: 28px;
    margin: 15px 0 35px;
}

.breathing-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;

    border: 2px solid #d4af37;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212, 175, 55, 0.04);

    box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.breathing-circle span {
    color: #d4af37;
    font-size: 18px;
}

.breathing-button {
    padding: 13px 28px;

    background: transparent;
    color: #d4af37;

    border: 1px solid #d4af37;
    border-radius: 4px;

    cursor: pointer;
    font-size: 15px;

    transition: 0.3s;
}

.breathing-button:hover {
    background: #d4af37;
    color: #000;
}
@keyframes breathing {

    0% {
        transform: scale(1);
    }

    33% {
        transform: scale(1.35);
    }

    58% {
        transform: scale(1.35);
    }

    100% {
        transform: scale(1);
    }

}
.message-for-you {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 70px 30px;
    text-align: center;

    background: #101010;

    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;
}

.message-for-you h2 {
    color: white;
    font-size: 36px;
    margin: 15px 0 25px;
}

#random-message {
    max-width: 600px;
    margin: 0 auto 30px;

    color: #aaa;

    font-size: 18px;
    line-height: 1.8;

    min-height: 55px;
}

.message-button {
    padding: 14px 28px;

    background: #d4af37;
    color: #000;

    border: none;
    border-radius: 4px;

    cursor: pointer;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s;
}

.message-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}
@media (max-width: 700px) {

    .support-hero {
        min-height: 70vh;
        padding: 0 25px;
        text-align: center;
    }

    .support-content {
        width: 100%;
    }

    .support-content h1 {
        font-size: 52px;
    }

    .support-main-text {
        font-size: 19px !important;
    }

    .support-small-text {
        font-size: 15px !important;
        line-height: 1.6;
    }

    .support-start {
        margin-top: 25px;
    }


    /* FEELINGS */

    .feelings {
        padding: 60px 20px;
    }

    .feelings h2 {
        font-size: 28px;
    }

    .feelings-intro {
        font-size: 15px;
    }

    .feeling-container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feeling-card {
        min-height: 145px;
    }

    .feeling-icon {
        font-size: 34px;
    }


    /* MESSAGE */

    #support-message {
        padding: 25px 20px;
        font-size: 16px;
    }


    /* BREATHING */

    .breathing-section {
        padding: 40px 10px;
        margin-top: 40px;
    }

    .breathing-section h3 {
        font-size: 24px;
    }

    .breathing-circle {
        width: 130px;
        height: 130px;
    }


    /* MESSAGE FOR YOU */

    .message-for-you {
        padding: 55px 20px;
    }

    .message-for-you h2 {
        font-size: 30px;
    }

    #random-message {
        font-size: 16px;
    }

}
.support-note {
    max-width: 850px;
    margin: 40px auto;
    padding: 25px 30px;

    text-align: center;

    border-top: 1px solid #252525;

    color: #777;

    font-size: 13px;
    line-height: 1.7;
}

.support-note p {
    margin: 0;
}


/* MOBILE */

@media (max-width: 700px) {

    .support-note {
        margin: 30px 20px;
        padding: 20px 10px;
        font-size: 12px;
    }

}
 /* =================================
    ABOUT US PAGE
 ================================= */

.about-hero {
    min-height: 65vh;

    display: flex;
    align-items: center;

    padding: 0 8%;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.10),
            transparent 35%
        ),
        #080808;
}


.about-content {
    max-width: 800px;
}


.about-content h1 {
    color: white;
    font-size: 58px;
    line-height: 1.1;

    margin: 20px 0 25px;
}


.about-content h1 span {
    color: #d4af37;
}


.about-content p:not(.section-label) {
    max-width: 650px;

    color: #aaa;

    font-size: 18px;
    line-height: 1.8;
}


/* COMPANY PROFILE */

.about-section {
    max-width: 850px;

    margin: auto;

    padding: 90px 25px;

    text-align: center;
}


.about-section h2 {
    color: white;
    font-size: 38px;

    margin: 15px 0 25px;
}


.about-text {
    color: #aaa;

    font-size: 17px;
    line-height: 1.9;
}


/* VISION */

.about-vision {
    padding: 90px 25px;

    text-align: center;

    background: #101010;
}


.about-vision h2 {
    max-width: 700px;

    margin: 15px auto 25px;

    color: white;

    font-size: 40px;
}


.about-vision p:last-child {
    max-width: 600px;

    margin: auto;

    color: #999;

    line-height: 1.8;
}


/* VALUES */

.values {
    padding: 90px 8%;

    text-align: center;

    background: #0b0b0b;
}


.values h2 {
    color: white;

    font-size: 38px;

    margin: 15px 0 50px;
}


.values-container {
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.value-card {
    padding: 30px 20px;

    background: #111;

    border: 1px solid #252525;

    transition: 0.3s;
}


.value-card:hover {
    transform: translateY(-6px);

    border-color: #d4af37;
}


.value-card h3 {
    color: #d4af37;

    margin-bottom: 12px;
}


.value-card p {
    color: #888;

    line-height: 1.6;

    font-size: 14px;
}


/* MOBILE */

@media (max-width: 700px) {

    .about-hero {
        min-height: 70vh;

        padding: 0 25px;

        text-align: center;
    }


    .about-content h1 {
        font-size: 42px;
    }


    .about-content p:not(.section-label) {
        font-size: 16px;
    }


    .about-section,
    .about-vision,
    .values {
        padding: 65px 20px;
    }


    .about-section h2,
    .values h2 {
        font-size: 30px;
    }


    .about-vision h2 {
        font-size: 32px;
    }


    .values-container {
        grid-template-columns: 1fr;
    }

}
/* =================================
   MOBILE HAMBURGER MENU
================================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #d4af37;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 700px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        flex-direction: column;
        align-items: center;

        background: #0b0b0b;
        border-top: 1px solid #252525;

        padding: 20px 0;
        gap: 20px;

        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
}
/* =================================
   CONTACT PAGE
================================= */

.contact-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 0 8%;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.10),
            transparent 35%
        ),
        #080808;
}

.contact-content {
    max-width: 750px;
}

.contact-content h1 {
    color: white;
    font-size: 60px;
    line-height: 1.1;
    margin: 20px 0 25px;
}

.contact-content h1 span {
    color: #d4af37;
}

.contact-content p:not(.section-label) {
    max-width: 650px;
    color: #aaa;
    font-size: 18px;
    line-height: 1.8;
}


/* CONTACT SECTION */

.contact-section {
    padding: 90px 8%;
    text-align: center;
    background: #0b0b0b;
}

.contact-section h2 {
    color: white;
    font-size: 38px;
    margin: 15px 0 50px;
}

.contact-container {
    max-width: 1000px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    padding: 40px 25px;

    background: #111;
    border: 1px solid #252525;

    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

.contact-icon {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: white;
    margin-bottom: 12px;
}

.contact-card p {
    color: #888;
    line-height: 1.7;
}

.contact-card a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.contact-card a:hover {
    color: #d4af37;
}


/* CONTACT MESSAGE */

.contact-message {
    padding: 90px 25px;
    text-align: center;
    background: #101010;
}

.contact-message h2 {
    max-width: 700px;
    margin: 15px auto 25px;

    color: white;
    font-size: 38px;
    line-height: 1.3;
}

.contact-message p:last-child {
    max-width: 600px;
    margin: auto;

    color: #999;
    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 700px) {

    .contact-hero {
        min-height: 60vh;
        padding: 0 25px;
        text-align: center;
    }

    .contact-content h1 {
        font-size: 44px;
    }

    .contact-content p:not(.section-label) {
        font-size: 16px;
    }

    .contact-section {
        padding: 65px 20px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 35px 20px;
    }

    .contact-message {
        padding: 65px 20px;
    }

    .contact-message h2 {
        font-size: 30px;
    }
}
/* =================================
   FACEBOOK LINK
================================= */

.nav-links a[href*="facebook"] {
    color: #d4af37;
}

.nav-links a[href*="facebook"]:hover {
    color: white;
}
/* =================================
   MODERN HOME HERO
================================= */

.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #050505 0%,
            #111111 50%,
            #080808 100%
        );
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;

    animation: heroFade 1.2s ease forwards;
}

.small-title {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    color: #f5f5f5;
    font-size: 68px;
    line-height: 1.08;
    margin: 0 0 25px;
    font-weight: 700;
}

.hero h1 span {
    display: block;
    color: #d4af37;
}

.hero-text {
    max-width: 650px;
    color: #a8a8a8;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-button,
.hero-button-outline {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-button {
    background: #d4af37;
    color: #080808;
    font-weight: 600;
}

.hero-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
}

.hero-button-outline {
    color: #d4af37;
    border: 1px solid #444;
}

.hero-button-outline:hover {
    border-color: #d4af37;
    color: white;
    transform: translateY(-4px);
}

/* =================================
   BACKGROUND GLOWS
================================= */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.hero-glow-one {
    width: 450px;
    height: 450px;

    right: 5%;
    top: 10%;

    background: rgba(212, 175, 55, 0.08);

    animation: floatingGlow 7s ease-in-out infinite;
}

.hero-glow-two {
    width: 300px;
    height: 300px;

    right: 25%;
    bottom: -100px;

    background: rgba(50, 120, 80, 0.08);

    animation: floatingGlowTwo 9s ease-in-out infinite;
}

/* =================================
   SUBTLE GRID
================================= */

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black,
        transparent
    );

    pointer-events: none;
}

/* =================================
   ANIMATIONS
================================= */

@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes floatingGlow {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 25px) scale(1.12);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }

}

@keyframes floatingGlowTwo {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }

}

/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {

    .hero {
        min-height: 78vh;
        padding: 0 25px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.12;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-button,
    .hero-button-outline {
        padding: 13px 22px;
    }

    .hero-glow-one {
        width: 300px;
        height: 300px;
        right: -100px;
    }

    .hero-glow-two {
        width: 200px;
        height: 200px;
        right: -50px;
    }

}

/* =================================
   LUNOG HERO IMAGE
================================= */

.hero-image {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);

    width: 430px;

    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 18px;

    filter:
        drop-shadow(0 20px 35px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 25px rgba(212, 175, 55, 0.15));
}

/* Soft golden glow behind image */

.hero-image::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: rgba(212, 175, 55, 0.08);

    filter: blur(80px);

    border-radius: 50%;

    z-index: -1;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 900px) {

    .hero-image {
        position: relative;

        right: auto;
        top: auto;

        transform: none;

        width: 330px;

        margin: 50px auto 0;
    }

}


@media (max-width: 500px) {

    .hero-image {
        width: 280px;
    }

}

/* =================================
   HERO BACKGROUND IMAGE
================================= */

.hero {
    position: relative;
    min-height: 650px;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* Background image */

.hero-background {
    position: absolute;

    top: -4%;
    left: -4%;

    width: 108%;
    height: 108%;

    z-index: 0;

    animation: heroImageFloat 12s ease-in-out infinite;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =================================
   DARK OVERLAY
================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.72) 45%,
            rgba(0, 0, 0, 0.35) 100%
        );

    z-index: 1;
}


/* =================================
   FLOATING ANIMATION
================================= */

@keyframes heroImageFloat {

    0% {
        transform: scale(1.03) translate(0, 0);
    }

    50% {
        transform: scale(1.07) translate(-10px, -8px);
    }

    100% {
        transform: scale(1.03) translate(0, 0);
    }

}


/* =================================
   HERO CONTENT
================================= */

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 650px;

    margin-left: 7%;
}


/* Mobile */

@media (max-width: 900px) {

    .hero {
        min-height: 650px;
    }

    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
    }

}

@media (max-width: 500px) {

    .hero {
        min-height: 600px;
    }

}
