/* ========================= */
/* RESET */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

/* ========================= */
/* BACKGROUND GLOW */
/* ========================= */
body::before,
body::after {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

body::before {
    top: -200px;
    left: -150px;
    background: rgba(200,169,106,0.12);
}

body::after {
    bottom: -200px;
    right: -150px;
    background: rgba(200,169,106,0.08);
}

/* ========================= */
/* TYPOGRAPHY */
/* ========================= */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c8a96a;
    margin: 15px auto 0;
}

h3 {
    color: #c8a96a;
    font-size: 1.1rem;
}

p {
    color: #d1d1d1;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================= */
/* VALUE */
/* ========================= */

.value {
    position: relative;
    overflow: hidden;
}

.value-bg-logo {
    position: absolute;

    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    pointer-events: none;
}

.value-bg-logo img {
    width: 500px;

    opacity: 0.13;
}

/* subtle fade from hero */
.value::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -250px;

    border-radius: 50%;

    background: rgba(200,169,106,0.04);

    filter: blur(100px);
}

/* ========================= */
/* CONSULTATION CTA */
/* ========================= */

.cta {
    position: relative;

    padding: 140px 10%;

    text-align: center;

    overflow: hidden;
}

/* subtle glow */
.cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -250px;

    border-radius: 50%;

    background: rgba(200,169,106,0.05);

    filter: blur(120px);
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    margin: 20px 0 25px;
}

.cta p {
    opacity: 0.85;
    line-height: 1.8;

    margin-bottom: 40px;
}

/* BUTTON ROW */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* MOBILE */
@media (max-width: 700px) {

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

}

/* spacing */
.value h2 {
    margin-bottom: 15px;
}

/* first line (highlighted) */
.value-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* second line (softer) */
.value-sub {
    font-size: 0.95rem;
    opacity: 0.7;
    max-width: 600px;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    height: 45px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    color: #c8a96a;
}

.cta {
    position: relative;
    margin-top: 80px;
}

.cta::before {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 0 auto 50px;

    background: linear-gradient(
        to right,
        transparent,
        #c8a96a,
        transparent
    );
}

.cta-nav {
    display: inline-block;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #c8a96a, #e6c88f);
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover matches hero */
.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(200,169,106,0.25);
}

/* same shine effect */
.cta-nav::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-nav:hover::after {
    transform: translateX(100%);
}

/* ========================= */
/* MOBILE NAVIGATION */
/* ========================= */

.menu-toggle {
    display: none;

    flex-direction: column;
    gap: 6px;

    cursor: pointer;

    z-index: 1100;
}

.menu-toggle span {
    width: 28px;
    height: 2px;

    background: #fff;

    transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 900px) {

    .navbar {
        padding: 18px 6%;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: flex;
    }

    /* MOBILE MENU */
    .nav-menu {
        position: fixed;

        top: 0;
        right: -100%;

        width: 100%;
        height: 100vh;

        background: rgba(8,8,8,0.98);

        backdrop-filter: blur(18px);

        display: flex;
        justify-content: center;
        align-items: center;

        transition: 0.4s ease;

        z-index: 1000;
    }

    body.menu-open {
    overflow: hidden;
    }

    /* OPEN */
    .nav-menu.active {
        right: 0;
    }

    /* STACK LINKS */
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .nav-menu a {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    /* HIDE NORMAL DESKTOP */
    .navbar ul {
        gap: 0;
    }

    /* ANIMATION */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

}

/* ========================= */
/* HERO */
/* ========================= */
/* HERO CONTAINER */
.hero {
    position: relative;
    height: 100vh;
    padding-top: 80px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE (BOTTOM LAYER) */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    z-index: 0;
}



.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap; /* prevents overlap */
    justify-content: center;
}

/* OVERLAY (MIDDLE LAYER) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 40%,
        rgba(0,0,0,0.9) 100%
    );

    z-index: 1;
}

/* CONTENT (TOP LAYER) */
.hero-content {
    position: relative;
    z-index: 2;

    max-width: 750px;
    width: 90%;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* THIS fixes overlap */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 550px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary {
    display: inline-block;
    position: relative;
    overflow: hidden; /* THIS FIXES THE BLEED */

    background: linear-gradient(135deg, #c8a96a, #e6c88f);
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* CLEAN HOVER */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,169,106,0.25);
}

/* INTERNAL SHINE (stays inside button) */
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-secondary {
    border: 1px solid rgba(200,169,106,0.6);
    padding: 14px 28px;
    border-radius: 6px;
    color: #c8a96a;
    text-decoration: none;
    font-weight: 500;

    transition: all 0.3s ease;
    position: relative;
}

/* hover fill */
.btn-secondary:hover {
    background: #c8a96a;
    color: #000;
    transform: translateY(-2px);
}

/* subtle glow */
.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(200,169,106,0.25);
}

.hero-buttons a {
    display: inline-block;
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ========================= */
/* SECTIONS */
/* ========================= */
section {
    padding: 100px 10%;
    text-align: center;
}

/* ========================= */
/* SERVICES */
/* ========================= */
.services {
    background: linear-gradient(to bottom, rgba(200,169,106,0.05), transparent);
}

.services-sub {
    margin-bottom: 50px;
    opacity: 0.7;
}

/* FEATURED */
.featured-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* SUPPORTING */
.supporting-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARDS */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 320px;
    border: 1px solid rgba(200,169,106,0.2);
    transition: 0.4s;
}

.service-card.featured {
    height: 400px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card:hover img {
    transform: scale(1.05);
}

/* ========================= */
/* ENHANCEMENTS + TARGET */
/* ========================= */
.enhancements-grid,
.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.enhancement-card,
.target-item {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.enhance-img,
.target-img {
    height: 200px;
}

.enhance-img img,
.target-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enhance-text,
.target-text {
    padding: 18px;
    text-align: left;
}

.enhancement-card:hover,
.target-item:hover {
    transform: translateY(-5px);
}

/* ========================= */
/* ABOUT */
/* ========================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-text {
    text-align: left;
}

/* ========================= */
/* SEO */
/* ========================= */

.seo-section {
    padding: 80px 10% 40px;
    opacity: 0.5; /* makes it feel "incognito" */
    font-size: 0.85rem;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-section h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.seo-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ========================= */
/* FORM */
/* ========================= */
.cta form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta input,
.cta textarea {
    padding: 12px;
    background: #1a1a1a;
    border: none;
    color: #fff;
}

.cta button {
    background: #c8a96a;
    padding: 14px;
    border: none;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: #000;
    padding: 60px 10% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* BRAND */
.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #c8a96a;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c8a96a;
}

/* CONTACT */
.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.availability {
    margin-top: 10px;
    color: #c8a96a;
    font-weight: 500;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ========================= */
/* SERVICES PAGE */
/* ========================= */

/* PAGE HERO */
/* ========================= */
/* SERVICES HERO */
/* ========================= */

.page-hero {
    position: relative;
    height: 65vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.page-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: zoom 20s infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.85)
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

/* SERVICE SECTIONS */
.service-section {
    padding: 100px 10%;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* BOX */
.service-box {
    transition: 0.35s ease;
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s ease;
}

.service-box h3 {
    margin-top: 10px;
}

.service-box p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-box:hover img {
    transform: scale(1.03);
}

/* PROCESS */
.process {
    text-align: center;
    padding: 100px 10%;
}

.process-steps {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,169,106,0.08);

    padding: 35px;
    border-radius: 16px;

    transition: 0.3s ease;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-steps div:hover {
    transform: translateY(-6px);
    border-color: rgba(200,169,106,0.25);
}


/* ========================= */
/* ABOUT PAGE */
/* ========================= */

/* STORY SECTION */
.about-story {
    padding: 120px 10%;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.about-story-text {
    text-align: left;
}

.about-story-text h2 {
    margin-bottom: 25px;
}

.about-story-text p {
    margin-bottom: 20px;
    opacity: 0.85;
    line-height: 1.8;
}

/* SMALL GOLD TAG */
.section-tag {
    display: inline-block;
    margin-bottom: 15px;

    color: #c8a96a;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ========================= */
/* FOUNDERS */
/* ========================= */

.founders {
    padding: 120px 10%;
    background: linear-gradient(
        to bottom,
        rgba(200,169,106,0.04),
        transparent
    );
}

.founders-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.founder-card {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(200,169,106,0.08);

    border-radius: 18px;
    overflow: hidden;

    transition: 0.35s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,106,0.25);
}

.founder-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;

    transition: 0.5s ease;
}

.founder-card:hover img {
    transform: scale(1.03);
}

.founder-content {
    padding: 30px;
    text-align: left;
}

.founder-content h3 {
    margin-bottom: 15px;
}

.founder-content p {
    opacity: 0.8;
    line-height: 1.7;
}

/* ========================= */
/* VALUES SECTION */
/* ========================= */

.values {
    padding: 120px 10%;
}

.values-intro {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-box {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(200,169,106,0.08);

    border-radius: 18px;

    padding: 40px 30px;

    transition: 0.35s ease;
}

.value-box:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,106,0.25);
}

.value-box h3 {
    margin-bottom: 15px;
}

.value-box p {
    opacity: 0.8;
    line-height: 1.7;
}

/* ========================= */
/* ABOUT CTA */
/* ========================= */

.cta {
    position: relative;
    padding: 120px 10%;
    text-align: center;
}

.cta::before {
    content: "";

    display: block;

    width: 120px;
    height: 1px;

    margin: 0 auto 50px;

    background: linear-gradient(
        to right,
        transparent,
        #c8a96a,
        transparent
    );
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 35px;
    opacity: 0.8;
}

/* ========================= */
/* ACTIVE NAV LINK */
/* ========================= */

.active-nav {
    position: relative;
    display: inline-block;

    background: linear-gradient(
        135deg,
        #c8a96a,
        #f0d39a,
        #c8a96a
    );

    background-size: 200% 200%;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    animation: goldShimmer 4s ease infinite;

    font-weight: 600;
}

/* subtle underline */
.active-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        #c8a96a,
        transparent
    );
}

/* ========================= */
/* CONTACT PAGE */
/* ========================= */

.contact-info,
.booking-form,
.expectations {
    padding: 120px 10%;
}

/* INTRO */
.contact-intro,
.booking-intro,
.expectations-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(200,169,106,0.08);

    border-radius: 18px;

    padding: 40px 30px;

    transition: 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,106,0.25);
}

/* FORM */
.form-embed {
    max-width: 900px;
    margin: 0 auto;
}

.placeholder-form {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(200,169,106,0.08);

    border-radius: 18px;

    padding: 80px 40px;
}

/* EXPECTATIONS */
.expectation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expectation-box {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(200,169,106,0.08);

    border-radius: 18px;

    padding: 40px 30px;

    transition: 0.35s ease;
}

.expectation-box:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,106,0.25);
}

/* ========================= */
/* SIGNATURE SERVICE */
/* ========================= */

.signature-service {
    padding: 120px 10%;
}

/* ========================= */
/* PREMIUM SERVICE ROW */
/* ========================= */

.signature-row,
.service-row {
    position: relative;

    display: grid;
    grid-template-columns: 1.1fr 1fr;

    gap: 50px;
    align-items: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(200,169,106,0.08);

    border-radius: 20px;

    padding: 45px;

    overflow: hidden;

    transition: 0.35s ease;

    margin-top: 50px;
}

/* hover */
.signature-row:hover,
.service-row:hover {
    transform: translateY(-5px);

    border-color: rgba(200,169,106,0.18);
}

/* image */
.signature-row img,
.service-row img {
    width: 100%;
    height: 100%;

    min-height: 450px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: 0 20px 45px rgba(0,0,0,0.35);

    transition: 0.45s ease;
}

/* image hover */
.signature-row:hover img,
.service-row:hover img {
    transform: scale(1.02);
}

/* text */
.service-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

/* headings */
.signature-row h2,
.service-row h2,
.service-row h3 {
    margin-bottom: 20px;
}

/* description */
.service-description {
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.88;
}

/* glow */
.signature-row::before,
.service-row::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    bottom: -120px;
    left: -120px;

    border-radius: 50%;

    background: rgba(200,169,106,0.04);

    filter: blur(80px);
}

/* reverse layout */
.reverse-row {
    grid-template-columns: 1fr 1.1fr;
}

/* divider */
.gold-line {
    width: 55px;
    height: 2px;

    background: #c8a96a;

    margin: 18px 0 28px;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item span {
    color: #c8a96a;
    font-size: 1.1rem;
    line-height: 1.5;
}

.feature-item p {
    margin: 0;
    line-height: 1.7;
}

/* ========================= */
/* CONTACT DROPDOWN */
/* ========================= */

.contact-dropdown {

    position: fixed;

    top: 90px;
    left: 50%;

    transform: translateX(-50%) translateY(-20px);

    width: 90%;
    max-width: 650px;

    background: rgba(10,10,10,0.96);

    border: 1px solid rgba(200,169,106,0.12);

    border-radius: 24px;

    backdrop-filter: blur(20px);

    padding: 40px;

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;

    z-index: 9999;
}

/* OPEN */
.contact-dropdown.active {

    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

/* CONTENT */
.contact-dropdown-content {

    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    gap: 22px;
}

/* TITLE */
.contact-dropdown h3 {
    font-size: 2rem;
}

/* TEXT */
.contact-dropdown p {
    opacity: 0.8;
    line-height: 1.8;
}

/* CONTACT LINKS */
.dropdown-contact-items {

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 20px;
}

.dropdown-contact-items a {

    color: #c8a96a;

    text-decoration: none;

    transition: 0.3s ease;
}

.dropdown-contact-items a:hover {
    opacity: 0.7;
}

/* BUTTON */
.dropdown-buttons {
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 600px) {

    .contact-dropdown {

        padding: 30px 24px;

        top: 80px;
    }

    .contact-dropdown h3 {
        font-size: 1.7rem;
    }

}

/* shimmer animation */
@keyframes goldShimmer {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */
.hidden {
    opacity: 0;
    transform: translateY(40px);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 900px) {

    section,
    .service-section,
    .about-story,
    .founders,
    .values,
    .contact-info,
    .booking-form,
    .expectations,
    .cta {
        padding: 80px 6%;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2rem;
    }

    img {
    object-position: center;
    }

        .contact-dropdown {
        top: 80px;

        padding: 25px;

        max-height: 85vh;

        overflow-y: auto;
    }

    .contact-dropdown-content {
        grid-template-columns: 1fr;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }

    .hero-content {
        gap: 18px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        max-width: 320px;
    }

    /* GRIDS */
    .featured-services,
    .supporting-services,
    .enhancements-grid,
    .target-grid,
    .service-grid,
    .process-steps,
    .about-container,
    .about-story-grid,
    .founders-grid,
    .values-grid,
    .contact-grid,
    .expectation-grid,
    .signature-row,
    .service-row,
    .footer-container {
        grid-template-columns: 1fr !important;
    }

    /* SERVICE ROWS */
    .signature-row,
    .service-row {
        padding: 30px;
    }

    .signature-row img,
    .service-row img {
        min-height: 320px;
    }

    /* FOOTER */
    .footer {
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        align-items: center;
    }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 600px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: 100%;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    /* CARDS */
    .service-card.featured {
        height: 280px;
    }

    .service-card.small {
        height: 240px;
    }

    .nav-menu a {
    padding: 10px 0;
    }

    /* IMAGES */
    .founder-card img,
    .signature-row img,
    .service-row img {
        min-height: 260px;
    }

    /* VALUE LOGO */
    .value-bg-logo img {
        width: 280px;
    }

        .contact-dropdown {

        padding: 30px 24px;

        top: 80px;
    }

    .contact-dropdown h3 {
        font-size: 1.7rem;
    }

    .signature-row img,
    .service-row img {
        min-height: 220px;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }

        .navbar {
        padding: 16px 5%;
    }

        .page-hero {
        min-height: 55svh;

        padding-top: 120px;
        padding-bottom: 60px;

        display: flex;
        justify-content: center;
        align-items: center;

        text-align: center;
    }

    .page-hero-content {
        width: 100%;
    }

    .hero-content,
    .page-hero-content {
        padding-inline: 10px;
    }

}