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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f4f1ea;
    color: #171717;
    line-height: 1.6;
}

:root {
    --black: #111111;
    --dark: #181818;
    --gold: #c9a45c;
    --gold-light: #dfc27e;
    --cream: #f4f1ea;
    --white: #ffffff;
    --gray: #77716a;
    --border: #ded8cd;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.section {
    padding: 110px 7%;
}


/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 4%;

    z-index: 20;

    color: white;

    background: rgba(12, 12, 12, 0.72);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.logo-mark img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    letter-spacing: 2px;
}

.logo-text span {
    color: #bdbdbd;
    font-size: 7px;
    letter-spacing: 1.5px;
}

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar nav a {
    position: relative;

    color: #eeeeee;

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.8px;

    transition: 0.3s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: var(--gold-light);
}

.navbar nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s ease;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    width: 100%;
}

.nav-button,
.gold-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 23px;

    background: var(--gold);
    color: white;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.nav-button:hover,
.gold-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 23px;

    border: 1px solid rgba(255,255,255,0.65);

    color: white;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.outline-button:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 760px;
    height: 100vh;
    max-height: 920px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.96) 0%,
            rgba(5,5,5,0.76) 38%,
            rgba(5,5,5,0.38) 72%,
            rgba(5,5,5,0.45) 100%
        ),
        linear-gradient(
            135deg,
            #4a4032,
            #111111
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(201,164,92,0.22),
            transparent 32%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin-left: 7%;
    padding-top: 80px;
}

.eyebrow {
    max-width: 650px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero h1 {
    margin: 20px 0;

    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(58px, 7vw, 102px);
    font-weight: 600;

    line-height: 0.95;
}

.hero-description {
    max-width: 540px;

    margin-bottom: 30px;

    color: #d0d0d0;

    font-size: 14px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}


/* ================= STATS ================= */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 0 6%;

    background: var(--black);

    color: white;
}

.stat {
    min-height: 135px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 31px;
}

.stat-label {
    margin-top: 4px;

    color: var(--gold);

    font-size: 9px;
    letter-spacing: 1.2px;
    text-align: center;
}


/* ================= HEADINGS ================= */

.section-label {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.gold-line {
    width: 55px;
    height: 3px;

    margin: 8px 0 27px;

    background: var(--gold);
}

.center-heading {
    margin-bottom: 55px;

    text-align: center;
}

.center-heading h2 {
    margin: 13px 0 18px;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 62px);
    font-weight: 600;

    line-height: 1.05;
}

.gold-line.center {
    margin: 0 auto;
}


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

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 75px;

    background: var(--cream);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about h2 {
    margin: 15px 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 4vw, 63px);
    line-height: 1.05;
}

.about-content > p:not(.section-label) {
    max-width: 570px;

    margin-bottom: 16px;

    color: #5f5b55;

    font-size: 14px;
}

.about-image {
    min-height: 520px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #514838,
            #151515
        );

    border: 1px solid rgba(201,164,92,0.4);

    color: var(--gold);
}

.image-placeholder span {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    letter-spacing: 4px;
}

.image-placeholder small {
    margin-top: 8px;

    color: #aaa;

    font-size: 9px;
    letter-spacing: 2px;
}


/* ================= VISION MISSION ================= */

.vision-mission {
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    max-width: 1050px;

    margin: auto;
}

.vm-card {
    padding: 50px;

    border: 1px solid var(--border);
}

.vm-number {
    color: var(--gold);

    font-family: "Playfair Display", serif;
    font-size: 26px;
}

.vm-card h3 {
    margin: 25px 0 14px;

    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.vm-card p {
    color: #69645d;
    font-size: 14px;
    line-height: 1.8;
}


/* ================= EXPERTISE ================= */

.expertise {
    background: var(--cream);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.expertise-card {
    min-height: 330px;

    padding: 38px 28px;

    background: white;

    border: 1px solid var(--border);
    border-right: none;

    transition: 0.35s ease;
}

.expertise-card:last-child {
    border-right: 1px solid var(--border);
}

.expertise-card:hover {
    background: var(--black);
    color: white;

    transform: translateY(-8px);
}

.card-number {
    color: var(--gold);

    font-family: "Playfair Display", serif;
    font-size: 26px;
}

.expertise-card h3 {
    margin: 30px 0 15px;

    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.2;
}

.expertise-card p {
    color: #777;
    font-size: 13px;
}

.expertise-card:hover p {
    color: #bbb;
}


/* ================= PROJECTS ================= */

.projects {
    background: var(--black);
    color: white;
}

.projects .center-heading h2 {
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.project-card {
    overflow: hidden;

    background: #1b1b1b;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201,164,92,0.5);
}

.project-image {
    position: relative;

    height: 250px;

    background:
        linear-gradient(
            135deg,
            #514737,
            #191919
        );
}

.project-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            transparent
        );
}

.project-image span {
    position: absolute;

    left: 20px;
    bottom: 17px;

    z-index: 2;

    color: var(--gold-light);

    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    min-height: 58px;

    font-family: "Playfair Display", serif;

    font-size: 22px;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    margin: 14px 0;

    color: var(--gold);

    font-size: 10px;
}

.project-info p {
    color: #aaa;

    font-size: 11px;
}


/* ================= GALLERY ================= */

.gallery {
    background: white;
}

.gallery-intro {
    max-width: 620px;

    margin: 20px auto 0;

    color: #777;

    font-size: 13px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 240px;

    gap: 15px;
}

.gallery-placeholder {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #484033,
            #161616
        );

    border: 1px solid rgba(201,164,92,0.3);

    color: var(--gold);
}

.gallery-placeholder.large {
    grid-row: span 2;
}

.gallery-placeholder span {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    letter-spacing: 2px;
}

.gallery-placeholder small {
    margin-top: 7px;

    color: #aaa;

    font-size: 8px;
    letter-spacing: 1.5px;
}


/* ================= DIRECTORS ================= */

.directors {
    background: var(--cream);
}

.directors-grid {
    max-width: 850px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin: auto;
}

.director-card {
    padding: 45px;

    background: white;

    border: 1px solid var(--border);

    text-align: center;

    transition: 0.3s ease;
}

.director-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.director-initial {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.director-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.director-card p {
    margin-top: 7px;

    color: var(--gold);

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-card span {
    display: block;

    margin-top: 13px;

    color: #777;

    font-size: 12px;
}


/* ================= WHY US ================= */

.why-us {
    display: grid;
    grid-template-columns: 0.8fr 1.7fr;

    gap: 75px;

    background: var(--black);

    color: white;
}

.why-heading h2 {
    margin: 15px 0 18px;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.05;
}

.why-heading > p:last-child {
    max-width: 390px;

    color: #999;

    font-size: 13px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.why-card {
    padding: 30px;

    border-left: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.why-card span {
    color: var(--gold);

    font-family: "Playfair Display", serif;
    font-size: 17px;
}

.why-card h3 {
    margin: 14px 0 9px;

    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.why-card p {
    color: #999;

    font-size: 12px;
}


/* ================= COMPANY INFORMATION ================= */

.company-info {
    background: white;
}

.company-details {
    max-width: 1000px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: auto;

    border: 1px solid var(--border);
}

.company-details div {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border-right: 1px solid var(--border);
}

.company-details div:last-child {
    border-right: none;
}

.company-details span {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.company-details strong {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    line-height: 1.4;
}


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

.cta {
    margin: 0 4%;

    padding: 50px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background: var(--cream);

    border: 1px solid var(--border);
}

.cta h2 {
    margin: 8px 0;

    font-family: "Playfair Display", serif;
    font-size: 35px;
}

.cta p:last-child {
    max-width: 650px;

    color: #777;

    font-size: 13px;
}


/* ================= CONTACT ================= */

.contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    background: var(--cream);
}

.contact-heading h2 {
    margin: 15px 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 5vw, 65px);

    line-height: 1.02;
}

.contact-heading > p {
    max-width: 500px;

    color: #69645d;

    font-size: 13px;
}

.contact-address {
    margin-top: 35px;

    padding-left: 20px;

    border-left: 2px solid var(--gold);
}

.contact-address span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.contact-address p {
    margin-top: 8px;

    color: #555;

    font-size: 13px;
    line-height: 1.8;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 17px;

    background: white;

    border: 1px solid var(--border);

    outline: none;

    font-size: 12px;

    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    grid-column: 1 / -1;

    resize: vertical;
}

.contact-form button {
    grid-column: 1 / -1;

    padding: 17px;

    border: none;

    background: var(--black);
    color: white;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-form button:hover {
    background: var(--gold);
}


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

footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;

    gap: 45px;

    padding: 70px 7% 50px;

    background: #0b0b0b;

    color: white;
}

.footer-brand h3 {
    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: 24px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--gold);

    font-size: 8px;
    letter-spacing: 1.5px;
}

.footer-brand span {
    display: block;

    max-width: 250px;

    margin-top: 18px;

    color: #777;

    font-size: 11px;
}

footer h4 {
    margin-bottom: 20px;

    color: var(--gold);

    font-size: 9px;
    letter-spacing: 1.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.footer-links a {
    color: #999;

    font-size: 11px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 12px;

    color: #999;

    font-size: 11px;
    line-height: 1.7;
}

.copyright {
    padding: 17px 7%;

    background: #070707;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: #555;

    font-size: 9px;

    text-align: center;
}


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

@media (max-width: 1100px) {

    .navbar nav {
        gap: 14px;
    }

    .navbar nav a {
        font-size: 8px;
    }

    .nav-button {
        padding: 11px 14px;
        font-size: 8px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-card {
        border-right: 1px solid var(--border);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .hero {
        min-height: 720px;
        padding: 70px 24px 40px;
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 0.98;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero .btn,
    .hero a,
    .hero button {
        font-size: 13px;
        padding: 18px 22px;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .section {
        padding: 75px 22px;
    }

    .navbar {
        height: 72px;
        padding: 0 18px;
    }

    .logo-mark {
        width: 39px;
        height: 39px;
        font-size: 17px;
    }

    .logo-text strong {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 5px;
    }

    .navbar nav {
        display: none;
    }

    .nav-button {
        padding: 10px 12px;
        font-size: 7px;
    }


    .hero {
        min-height: 680px;
        height: auto;
    }

    .hero-content {
        margin-left: 22px;
        padding-top: 145px;
        padding-bottom: 90px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }


    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .stat {
        min-height: 100px;
        padding: 12px;

        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .stat:nth-child(2),
    .stat:nth-child(4) {
        border-right: none;
    }

    .stat-number {
        font-size: 23px;
    }

    .stat-label {
        font-size: 7px;
    }


    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .image-placeholder {
        min-height: 350px;
    }


    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 35px 25px;
    }


    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        min-height: auto;
        border-right: 1px solid var(--border);
    }


    .projects-grid {
        grid-template-columns: 1fr;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-placeholder.large {
        grid-row: auto;
    }


    .directors-grid {
        grid-template-columns: 1fr;
    }


    .why-us {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }


    .company-details {
        grid-template-columns: 1fr;
    }

    .company-details div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .company-details div:last-child {
        border-bottom: none;
    }


    .cta {
        margin: 0;

        padding: 40px 25px;

        flex-direction: column;
        align-items: flex-start;
    }


    .contact {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form textarea,
    .contact-form button {
        grid-column: auto;
    }


    footer {
        grid-template-columns: 1fr;

        padding: 55px 25px 40px;
    }

    .copyright {
        padding: 17px 20px;
    }

}
/* LIGHT THEME */

body {
    background: #f4f1ea;
    color: #171717;
}

.navbar {
    background: rgba(255, 255, 255, 0.96);
    color: #171717;
    border-bottom: 1px solid #ded8cd;
}

.navbar nav a {
    color: #333333;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: var(--gold);
}

.logo-mark {
    background: #ffffff;
    border: 1px solid #ded8cd;
    overflow: hidden;
}

.logo-mark img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.hero {
    background:
        linear-gradient(
            90deg,
            rgba(244,241,234,0.98) 0%,
            rgba(244,241,234,0.92) 48%,
            rgba(244,241,234,0.65) 100%
        ),
        linear-gradient(135deg, #eee8dc, #ffffff);
}

.hero h1 {
    color: #171717;
}

.hero-description {
    color: #5f5b55;
}

.stats {
    background: #ffffff;
    color: #171717;
}

.projects {
    background: #ffffff;
    color: #171717;
}

.projects .center-heading h2 {
    color: #171717;
}

.project-card {
    background: #f8f6f1;
    border: 1px solid var(--border);
}

.project-info p {
    color: #77716a;
}

.why-us {
    background: #f4f1ea;
    color: #171717;
}

.why-heading > p:last-child {
    color: #77716a;
}

.why-card {
    border-color: var(--border);
}

.why-card p {
    color: #77716a;
}

footer {
    background: #ffffff;
    color: #171717;
    border-top: 1px solid var(--border);
}

.footer-brand span,
.footer-contact p,
.footer-links a {
    color: #77716a;
}

.footer-links a:hover {
    color: #171717;
}

.copyright {
    background: #f4f1ea;
    border-top: 1px solid var(--border);
    color: #77716a;
}
.outline-button {
    border: 1px solid #171717;
    color: #171717;
    background: transparent;
}

.outline-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.hero {
    position: relative;
    background-image: url("Images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.38) 42%,
        rgba(0, 0, 0, 0.08) 75%,
        rgba(0, 0, 0, 0.02) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #ffffff;
}

.hero-description {
    color: rgba(255, 255, 255, 0.88);
}

.hero .eyebrow {
    color: var(--gold);
}
.outline-button {
    border: 1px solid #171717;
    color: #171717;
    background: #ffffff;
}

.outline-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}
/* FINAL HERO LOOK */

.hero {
    background-image: url("Images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.18) 45%,
        rgba(0, 0, 0, 0.02) 100%
    );
}

.hero h1 {
    font-size: clamp(46px, 4.3vw, 68px);
    line-height: 1;
    letter-spacing: -1.5px;
    max-width: 620px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 560px;
}
.hero-content {
    animation: heroTextIn 1.2s ease-out both;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .eyebrow {
    animation: heroFadeIn 0.8s ease-out 0.1s both;
}

.hero h1 {
    animation: heroFadeIn 1s ease-out 0.25s both;
}

.hero-description {
    animation: heroFadeIn 1s ease-out 0.45s both;
}

.hero .hero-actions {
    animation: heroFadeIn 1s ease-out 0.65s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* PROJECT IMAGES */
.project-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #eee;
}
.project-image img {
    width: 103%;
    height: 103%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translate(-1.5%, -1.5%);
}

.project-image span {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 8px 14px;
    background: rgba(190, 150, 70, 0.9);
    color: #fff;
    font-weight: 600;
}
/* =========================
   WHY US CARDS
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 55px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(180, 140, 70, 0.25);
    padding: 35px 30px;
    min-height: 230px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-card > span {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.why-card h3 {
    margin: 0 0 18px;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.2;
}

.why-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Last two cards centered */
.why-card:nth-child(4) {
    grid-column: 1 / 2;
}

.why-card:nth-child(5) {
    grid-column: 2 / 3;
}

/* Mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .why-card:nth-child(4),
    .why-card:nth-child(5) {
        grid-column: auto;
    }
}

/* =========================================================
   FINAL RESPONSIVE FIX
   Desktop styling above is preserved.
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

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

@media (max-width: 1100px) {

    .hero-content {
        margin-left: 6%;
        margin-right: 6%;
    }

    .hero h1 {
        max-width: 650px;
    }

    .about,
    .why-us,
    .contact {
        gap: 45px;
    }
}

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

@media (max-width: 768px) {

    /* ---------- NAVBAR ---------- */

    .navbar {
        width: 100%;
        height: 72px;
        padding: 0 18px;
    }

    .navbar .logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .navbar nav {
        display: none;
    }

    /* Keep the original client logo proportions */
    .logo-mark {
        width: 39px;
        height: 39px;
        min-width: 39px;
        min-height: 39px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        overflow: hidden;
    }

    .logo-mark img {
        width: 38px;
        height: 38px;
        max-width: 38px;
        max-height: 38px;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .logo-text strong {
        font-size: 14px;
        letter-spacing: 1.4px;
        white-space: nowrap;
    }

    .logo-text span {
        font-size: 5px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .nav-button {
        flex-shrink: 0;
        padding: 10px 12px;
        font-size: 7px;
        white-space: nowrap;
    }

    /* ---------- HERO ---------- */

    .hero {
        width: 100%;
        min-height: 680px;
        height: 100svh;
        max-height: none;
        overflow: hidden;

        /* Hero is a CSS background image, not an img element */
        background-size: cover;
        background-repeat: no-repeat;

        /* Shows more of the right side of the hero on phones */
        background-position: 62% center;
    }

    .hero-overlay {
        inset: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 620px;
        margin-left: 0;
        padding: 125px 22px 55px;
    }

    .hero .eyebrow {
        max-width: 100%;
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .hero h1 {
        width: 100%;
        max-width: 620px;
        margin: 16px 0 22px;

        font-size: clamp(43px, 12.5vw, 58px);
        line-height: 0.96;
        letter-spacing: -1px;
    }

    .hero-description {
        width: 100%;
        max-width: 480px;
        margin-bottom: 26px;

        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* ---------- STATS ---------- */

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .stat {
        min-height: 100px;
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 23px;
    }

    .stat-label {
        font-size: 7px;
        line-height: 1.4;
    }

    /* ---------- GENERAL SECTIONS ---------- */

    .section {
        padding: 75px 22px;
    }

    /* ---------- ABOUT ---------- */

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .image-placeholder {
        width: 100%;
        min-height: 350px;
    }

    /* ---------- VISION / MISSION ---------- */

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 35px 25px;
    }

    /* ---------- EXPERTISE ---------- */

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        min-height: auto;
        border-right: 1px solid var(--border);
    }

    /* ---------- PROJECTS ---------- */

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        width: 100%;
        min-width: 0;
    }

    .project-image {
        width: 100%;
        height: 260px;
        overflow: hidden;
    }

    /* Keep the 3% zoom you already wanted */
    .project-image img {
        width: 103%;
        height: 103%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        transform: translate(-1.5%, -1.5%);
    }

    /* ---------- GALLERY ---------- */

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        width: 100%;
    }

    .gallery-placeholder.large {
        grid-row: auto;
    }

    /* ---------- DIRECTORS ---------- */

    .directors-grid {
        grid-template-columns: 1fr;
    }

    /* ---------- WHY US ---------- */

    .why-us {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }

    .why-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .why-card:nth-child(4),
    .why-card:nth-child(5) {
        grid-column: auto;
    }

    /* ---------- COMPANY INFORMATION ---------- */

    .company-details {
        grid-template-columns: 1fr;
    }

    .company-details div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .company-details div:last-child {
        border-bottom: none;
    }

    /* ---------- CTA ---------- */

    .cta {
        margin: 0;
        padding: 40px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    /* ---------- CONTACT ---------- */

    .contact {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        min-width: 0;
    }

    .contact-form textarea,
    .contact-form button {
        grid-column: auto;
    }

    /* ---------- FOOTER ---------- */

    footer {
        grid-template-columns: 1fr;
        padding: 55px 25px 40px;
    }

    .copyright {
        padding: 17px 20px;
        line-height: 1.6;
    }
}

/* ================= SMALL PHONES ================= */

@media (max-width: 390px) {

    .navbar {
        padding: 0 14px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .logo-mark img {
        width: 35px;
        height: 35px;
        max-width: 35px;
        max-height: 35px;
        object-fit: contain;
    }

    .logo-text strong {
        font-size: 12px;
    }

    .nav-button {
        padding: 9px 10px;
        font-size: 6.5px;
    }

    .hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .hero-content {
        padding: 120px 18px 45px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 12px;
    }

    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .project-image {
        height: 235px;
    }

    .contact-heading h2 {
        font-size: 44px;
    }
}
/* ================= MOBILE HERO FIX ================= */
/* ===== MOBILE HERO TEXT SIZE ===== */

@media screen and (max-width: 768px) {

    .hero h1 {
        font-size: 32px !important;
        line-height: 1.02 !important;
        margin-bottom: 18px !important;
        max-width: 320px !important;
    }

    .hero .eyebrow {
        font-size: 7px !important;
        line-height: 1.4 !important;
        letter-spacing: 1px !important;
        margin-bottom: 12px !important;
    }

    .hero-description {
        font-size: 10px !important;
        line-height: 1.5 !important;
        max-width: 300px !important;
        margin-bottom: 20px !important;
    }

    .hero-buttons {
        gap: 10px !important;
    }

    .hero-buttons a,
    .hero-buttons button {
        font-size: 10px !important;
        padding: 12px 18px !important;
    }
}


/* ===== SMALL PHONE ===== */

@media screen and (max-width: 430px) {

    .hero h1 {
        font-size: 30px !important;
        line-height: 1.02 !important;
        max-width: 290px !important;
    }

    .hero-description {
        font-size: 10px !important;
        max-width: 285px !important;
    }
}
@media (max-width: 768px) {

    .hero {
        min-height: 760px;
        height: auto;
        background-size: cover;
        background-position: center center;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 110px 24px 70px;
        box-sizing: border-box;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 48px;
        line-height: 0.98;
        letter-spacing: -1px;
        margin: 15px 0 25px;
    }

    .hero-description {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: auto;
        max-width: 100%;
    }
}

/* Small phones */

@media (max-width: 390px) {

    .hero {
        min-height: 720px;
        background-position: center center;
    }

    .hero-content {
        padding: 95px 20px 55px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 0.98;
        margin-bottom: 22px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
}/* =====================================================
   MOBILE HERO - FINAL FIX
   ===================================================== */

@media screen and (max-width: 768px) {

    .hero {
        position: relative !important;
        width: 100% !important;
        height: 760px !important;
        min-height: 760px !important;
        overflow: hidden !important;

        background-size: cover !important;
        background-repeat: no-repeat !important;

        /* Image ko thoda upar rakhta hai */
        background-position: center center !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 5 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 145px 22px 50px !important;

        box-sizing: border-box !important;
    }

    .hero .eyebrow {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 18px 0 !important;

        font-size: 8px !important;
        line-height: 1.5 !important;
        letter-spacing: 1.5px !important;

        white-space: normal !important;
    }

    .hero h1 {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 25px 0 !important;

        font-size: 44px !important;
        line-height: 0.98 !important;
        letter-spacing: -0.8px !important;

        white-space: normal !important;
    }

    .hero-description {
        display: block !important;

        width: 100% !important;
        max-width: 370px !important;

        margin: 0 0 28px 0 !important;

        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .hero-buttons {
        position: relative !important;
        z-index: 10 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 12px !important;

        width: 100% !important;
    }

    .hero-buttons a,
    .hero-buttons button {
        position: relative !important;

        width: auto !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }
}


/* =====================================================
   SMALL PHONE
   ===================================================== */

@media screen and (max-width: 430px) {

    .hero {
        height: 750px !important;
        min-height: 750px !important;

        /* Building ka centre visible rahe */
        background-position: 58% center !important;
    }

    .hero-content {
        padding: 135px 20px 45px !important;
    }

    .hero .eyebrow {
        font-size: 7px !important;
        letter-spacing: 1.25px !important;
        margin-bottom: 15px !important;
    }

    .hero h1 {
        font-size: 42px !important;
        line-height: 0.98 !important;
        margin-bottom: 22px !important;
    }

    .hero-description {
        font-size: 12px !important;
        line-height: 1.6 !important;
        max-width: 350px !important;
        margin-bottom: 24px !important;
    }
}


/* =====================================================
   VERY SMALL PHONE
   ===================================================== */

@media screen and (max-width: 390px) {

    .hero {
        height: 720px !important;
        min-height: 720px !important;
    }

    .hero-content {
        padding: 125px 18px 40px !important;
    }

    .hero h1 {
        font-size: 39px !important;
    }

    .hero-description {
        font-size: 11.5px !important;
    }
}/* ===== FINAL MOBILE HERO IMAGE FIX ===== */

@media screen and (max-width: 768px) {

    .hero {
        position: relative !important;
        width: 100% !important;
        height: 760px !important;
        min-height: 760px !important;

        /* IMPORTANT: image ko crop nahi karega */
        background-size: 100% 100% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 10 !important;

        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;

        padding: 125px 22px 40px !important;
        margin: 0 !important;
    }

    .hero h1 {
        font-size: 42px !important;
        line-height: 0.98 !important;

        margin-top: 0 !important;
        margin-bottom: 22px !important;

        max-width: 100% !important;
    }

    .hero .eyebrow {
        font-size: 7px !important;
        line-height: 1.5 !important;

        letter-spacing: 1.2px !important;

        margin-bottom: 16px !important;

        white-space: normal !important;
    }

    .hero-description {
        font-size: 12px !important;
        line-height: 1.6 !important;

        max-width: 350px !important;

        margin-bottom: 25px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 12px !important;
    }
}


/* ===== 430px PHONE ===== */

@media screen and (max-width: 430px) {

    .hero {
        height: 760px !important;
        min-height: 760px !important;

        /* FULL IMAGE — NO CROPPING */
        background-size: 100% 100% !important;
        background-position: center center !important;
    }

    .hero-content {
        padding: 125px 20px 40px !important;
    }

    .hero h1 {
        font-size: 40px !important;
        line-height: 0.98 !important;
    }
}


/* ===== SMALL PHONES ===== */

@media screen and (max-width: 390px) {

    .hero {
        height: 720px !important;
        min-height: 720px !important;

        background-size: 100% 100% !important;
    }

    .hero-content {
        padding: 115px 18px 35px !important;
    }

    .hero h1 {
        font-size: 37px !important;
    }

    .hero-description {
        font-size: 11px !important;
    }
}/* ===== FINAL MOBILE HERO IMAGE FIX ===== */

@media screen and (max-width: 768px) {

    .hero {
        position: relative !important;
        width: 100% !important;
        height: 760px !important;
        min-height: 760px !important;

        /* IMPORTANT: image ko crop nahi karega */
        background-size: 100% 100% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;

        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 10 !important;

        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;

        padding: 125px 22px 40px !important;
        margin: 0 !important;
    }

    .hero h1 {
        font-size: 42px !important;
        line-height: 0.98 !important;

        margin-top: 0 !important;
        margin-bottom: 22px !important;

        max-width: 100% !important;
    }

    .hero .eyebrow {
        font-size: 7px !important;
        line-height: 1.5 !important;

        letter-spacing: 1.2px !important;

        margin-bottom: 16px !important;

        white-space: normal !important;
    }

    .hero-description {
        font-size: 12px !important;
        line-height: 1.6 !important;

        max-width: 350px !important;

        margin-bottom: 25px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 12px !important;
    }
}


/* ===== 430px PHONE ===== */

@media screen and (max-width: 430px) {

    .hero {
        height: 760px !important;
        min-height: 760px !important;

        /* FULL IMAGE — NO CROPPING */
        background-size: 100% 100% !important;
        background-position: center center !important;
    }

    .hero-content {
        padding: 125px 20px 40px !important;
    }

    .hero h1 {
        font-size: 40px !important;
        line-height: 0.98 !important;
    }
}


/* ===== SMALL PHONES ===== */

@media screen and (max-width: 390px) {

    .hero {
        height: 720px !important;
        min-height: 720px !important;

        background-size: 100% 100% !important;
    }

    .hero-content {
        padding: 115px 18px 35px !important;
    }

    .hero h1 {
        font-size: 37px !important;
    }

    .hero-description {
        font-size: 11px !important;
    }
}/* ===== DAKSH YADAV WEBSITE CREDIT ===== */

.website-credit {
    text-align: center;
    padding: 28px 15px 24px;
    background: #faf9f6;
    border-top: 1px solid #e8e2d7;
}

.credit-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    color: #222;
    letter-spacing: 0.4px;
    margin-bottom: 7px;
}

.credit-title strong {
    color: #c9a45c;
    font-weight: 600;
}

.credit-services {
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 13px;
}

.credit-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 6px;
    padding: 10px 18px;

    border: 1px solid #c9a45c;
    border-radius: 3px;

    color: #222;
    background: transparent;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.credit-whatsapp:hover {
    background: #c9a45c;
    color: #fff;
    transform: translateY(-1px);
}

/* WhatsApp button on mobile */
@media screen and (max-width: 768px) {

    .credit-whatsapp {
        margin-top: 8px;
        padding: 9px 16px;

        font-size: 10px;
        letter-spacing: 0.8px;

        border-radius: 3px;
    }
}


/* MOBILE */
@media screen and (max-width: 768px) {

    .website-credit {
        padding: 22px 12px 20px;
    }

    .credit-title {
        font-size: 14px;
    }

    .credit-services {
        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .credit-whatsapp {
        font-size: 9px;
        padding: 8px 13px;
    }
}/* WhatsApp Credit Button */
.credit-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 18px;
    margin-top: 4px;

    background: #25D366;
    color: #ffffff !important;

    border: none;
    border-radius: 6px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none !important;

    transition: all 0.25s ease;
}

.credit-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon {
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
}
/* PROFESSIONAL CALL BUTTON */

header.navbar .call-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    width: 125px !important;
    height: 46px !important;

    margin: 0 10px 0 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
    color: #b08a43 !important;

    border: 1px solid #c9a45c !important;
    border-radius: 3px !important;

    font-family: "DM Sans", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;

    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

header.navbar .call-icon {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    font-size: 15px !important;
    line-height: 1 !important;
}

header.navbar .call-icon::before {
    content: "☎";
}

header.navbar .call-button:hover {
    background: #c9a45c !important;
    color: #ffffff !important;
}

@media screen and (max-width: 768px) {
    header.navbar .call-button {
        display: none !important;
    }
}.call-button {
    background: red !important;
    color: white !important;
    width: 200px !important;
    height: 60px !important;
    border: 5px solid blue !important;
}@media screen and (max-width: 768px) {
    header.navbar .call-button {
        display: inline-flex !important;
        width: 95px !important;
        height: 36px !important;
        padding: 0 8px !important;
        margin-right: 5px !important;
        gap: 5px !important;
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }

    header.navbar .call-icon {
        font-size: 13px !important;
    }
}
/* Floating Email Button */
.floating-email {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    background: #111111;
    color: #dfc27e;
    padding: 14px 10px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    border: 1px solid #c9a45c;
    border-right: none;
    border-radius: 8px 0 0 8px;

    animation: emailPulse 2s infinite;
}

@keyframes emailPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(201, 164, 92, 0);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(201, 164, 92, 0.5);
    }
}
}

/* Mobile */
@media screen and (max-width: 768px) {
    .floating-email {
        font-size: 9px;
        padding: 11px 8px;
    }
}
/* ================================
   PREMIUM FLOATING EMAIL BUTTON
   ================================ */

.floating-email {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    background: #111111;
    color: #dfc27e;
    padding: 14px 10px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    border: 1px solid #c9a45c;
    border-right: none;
    border-radius: 8px 0 0 8px;

    /* Soft golden glow */
    box-shadow:
        0 0 5px rgba(201, 164, 92, 0.35),
        0 0 12px rgba(201, 164, 92, 0.15);

    animation: emailGlow 3s ease-in-out infinite;
}


/* Subtle golden vibration / pulse */
@keyframes emailGlow {

    0%, 100% {
        box-shadow:
            0 0 5px rgba(201, 164, 92, 0.30),
            0 0 12px rgba(201, 164, 92, 0.12);
    }

    50% {
        box-shadow:
            0 0 8px rgba(201, 164, 92, 0.55),
            0 0 20px rgba(201, 164, 92, 0.28),
            0 0 32px rgba(201, 164, 92, 0.10);
    }
}


/* Mobile */
@media screen and (max-width: 768px) {

    .floating-email {
        font-size: 9px;
        padding: 11px 8px;

        box-shadow:
            0 0 5px rgba(201, 164, 92, 0.30),
            0 0 12px rgba(201, 164, 92, 0.12);
    }
}
/* =================================
   FLOATING EMAIL - BLINK + GLOW
   ================================= */

.floating-email {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    background: #111111;
    color: #dfc27e;

    padding: 14px 10px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    border: 1px solid #c9a45c;
    border-right: none;
    border-radius: 8px 0 0 8px;

    /* Starting glow */
    box-shadow:
        0 0 5px rgba(201,164,92,0.35),
        0 0 12px rgba(201,164,92,0.15);

    /* Blink + golden glow */
    animation: emailBlinkGlow 2.8s ease-in-out infinite;
}


/* Blink + Glow Animation */
@keyframes emailBlinkGlow {

    0%, 100% {
        opacity: 1;

        box-shadow:
            0 0 5px rgba(201,164,92,0.30),
            0 0 12px rgba(201,164,92,0.12);
    }

    50% {
        opacity: 0.72;

        box-shadow:
            0 0 8px rgba(201,164,92,0.55),
            0 0 18px rgba(201,164,92,0.30),
            0 0 28px rgba(201,164,92,0.12);
    }
}


/* Mobile */
@media screen and (max-width: 768px) {

    .floating-email {
        font-size: 9px;
        padding: 11px 8px;
    }
}