:root {

    /* =====================================================
       DREAM EVENT KOLKATA - LUXURY PALETTE
       Champagne Gold + Deep Burgundy + Warm Ivory
       ===================================================== */

    /* Gold System */
    --gold-primary: #C89A3D;
    --gold-light: #E6C875;
    --gold-soft: #F2DEA4;
    --gold-dark: #8A5A16;

    /* Neutrals / Brand */
    --charcoal: #3A0F20;
    --charcoal-soft: #5B1831;

    --ivory: #FBF3E7;
    --cream: #F7EDE1;
    --warm-white: #FFF9F1;

    /* Text */
    --text-dark: #35141F;
    --text-muted: #7B6970;

    /* Borders */
    --border: #D8C1A7;
    --border-gold: rgba(200, 154, 61, 0.35);

    /* Brand */
    --whatsapp: #25D366;

    /* Fonts */
    --serif: 'Cormorant Garamond', 'Playfair Display', serif;
    --sans: 'Manrope', 'Inter', sans-serif;

    /* Animation */
    --ease: cubic-bezier(.16, .84, .44, 1);

    /* Header: exact reserved space for fixed header */
    --header-h: 70px;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: #3A0F20;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* =========================================================
   GLOBAL DARK EVENT CANVAS
   Prevent accidental black/cream strips between header and content.
   Footer keeps its existing dedicated styling below.
   ========================================================= */

html,
body {
    background-color: #3A0F20;
}

/* =========================================================
   FIXED HEADER SPACE
   The fixed header is fully reserved in the page layout.
   No page/section margin-top is required.

   The main background matches the dark event theme so
   there is NO light/cream strip visible below the header.
   ========================================================= */
main {
    padding-top: var(--header-h);
    background:
        radial-gradient(
            circle at 15% 8%,
            rgba(131, 41, 55, .16),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #3A0F20 0%,
            #2E0A18 42%,
            #240812 100%
        );
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.12;
    color: #3A0F20;
    letter-spacing: -.01em;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold-primary);
    display: inline-block;
}

.section-pad {
    padding: 140px 0;
}

@media (max-width: 1024px) {
    .section-pad {
        padding: 110px 0;
    }
}

@media (max-width: 900px) {
    .section-pad {
        padding: 84px 0;
    }
}

@media (max-width: 480px) {
    .section-pad {
        padding: 64px 0;
    }
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 34px;

    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;

    font-family: var(--sans);

    transition:
        background .45s var(--ease),
        color .45s var(--ease),
        border-color .45s var(--ease),
        transform .45s var(--ease);

    white-space: nowrap;
}

.btn-gold {
    background: #C89A3D;
    color: #FFF9F1;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(230, 200, 117, .55);
    color: var(--warm-white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold-soft);
    background: rgba(255, 253, 249, .08);
}

.btn-outline-dark {
    border: 1px solid rgba(126, 23, 48, .22);
    color: #3A0F20;
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: #C89A3D;
    color: #8C1F42;
}

@media (max-width: 480px) {

    .btn {
        padding: 14px 26px;
        font-size: 12px;
    }
}


/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-img {
    overflow: hidden;
}

.reveal-img img {
    transform: scale(1.15);
    transition: transform 1.4s var(--ease);
}

.reveal-img.in img {
    transform: scale(1);
}


/* =========================================================
   HEADER
   DREAM EVENT KOLKATA — PERMANENT EVENT HEADER
   OPAQUE • NO TRANSPARENCY • NO BLUR
   ========================================================= */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1200;

    /* Exact fixed header height is reserved by --header-h */
    padding: 14px 0;

    /*
       DREAM EVENT KOLKATA
       Permanent deep burgundy / dark-red header
       Fully opaque
       No transparent strip
       No blur
    */
    background: #2B0613;

    border-bottom: none;

    box-shadow: none;

    /* Only keep the smooth padding transition */
    transition:
        padding .45s var(--ease);
}

/* Header bottom line: thin sides + stronger center */
header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(230, 200, 117, .18) 20%,
        rgba(230, 200, 117, .55) 50%,
        rgba(230, 200, 117, .18) 80%,
        transparent 100%
    );
    opacity: .35;
    pointer-events: none;
    transition: opacity .45s var(--ease);
}

/*
   Existing JavaScript may still add .solid while scrolling.
   Keep exactly the same appearance so nothing changes.
*/
header.solid {
    background: #2B0613;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    padding: 14px 0;

    box-shadow: none;

    border-bottom: none;
}

header.solid::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(230, 200, 117, .25) 18%,
        #e6c875 50%,
        rgba(230, 200, 117, .25) 82%,
        transparent 100%
    );
    opacity: 1;
    pointer-events: none;
    transition: opacity .45s var(--ease);
}


/* =========================================================
   NAV WRAPPER
   ========================================================= */

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   BRAND LOGO + COMPANY NAME
   ========================================================= */

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.brand-logo img {
    width: clamp(90px, 7vw, 125px);
    height: auto;
    max-height: 58px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: transform .5s var(--ease);
}

.brand-logo:hover img {
    transform: scale(1.03);
}

.brand-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.brand-name-main {
    font-family: var(--serif);
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    color: #FFF9F1;
}

.brand-name-sub {
    margin-top: 5px;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .35em;
    line-height: 1;
    text-transform: uppercase;
    color: #E6C875;
}

/* Solid state = same permanent header state */
header.solid .brand-name-main {
    color: #FFF9F1;
}

header.solid .brand-name-sub {
    color: #E6C875;
    font-size: 9px;
}


/* =========================================================
   MAIN NAVIGATION (desktop)
   ========================================================= */

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav.main-nav a {
    position: relative;

    padding: 6px 2px;

    font-size: 13px;

    letter-spacing: .03em;

    color: rgba(255, 248, 239, .92);

    font-weight: 500;

    transition: color .4s;
}

header.solid nav.main-nav a {
    color: rgba(255, 248, 239, .92);
}

/* Top Dot (disabled) */
nav.main-nav a::before {
    content: none !important;
    display: none !important;
}

/* Bottom Line */
nav.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 0;
    height: 1px;

    background: #E6C875;

    transition: width .4s var(--ease);
}

nav.main-nav a:hover::after,
nav.main-nav a.active-link::after {
    width: 100%;
}

nav.main-nav a:hover {
    color: #E6C875;
}

header.solid nav.main-nav a:hover {
    color: #E6C875;
}

nav.main-nav a.active-link {
    color: #E6C875;
}

header.solid nav.main-nav a.active-link {
    color: #E6C875;
}


/* =========================================================
   HEADER RIGHT
   ========================================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 26px;
}


/* Header CTA */

.header-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(230, 200, 117, .55);

    color: #FFF9F1;

    padding: 12px 28px;

    font-size: 12px;

    letter-spacing: .1em;

    text-transform: uppercase;

    transition:
        background .4s var(--ease),
        color .4s var(--ease),
        border-color .4s var(--ease);

    font-weight: 600;
}

.header-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    left: -120%;

    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transition: left .6s var(--ease);
}

.header-cta:hover::before {
    left: 120%;
}

header.solid .header-cta {
    border-color: #E6C875;
    color: #FFF9F1;
    background: transparent;
}

.header-cta:hover {
    background: linear-gradient(135deg, #C89A3D, #E6C875);
    color: #3A0F20;
    border-color: #E6C875;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
    display: none;
    position: relative;

    flex-direction: column;
    justify-content: center;

    gap: 5px;

    width: 26px;
    height: 26px;

    padding: 0;

    z-index: 1;
}

.hamburger span {
    display: block;

    width: 100%;
    height: 1px;

    background: #E6C875;

    transition:
        transform .4s var(--ease),
        opacity .4s var(--ease),
        background .4s var(--ease);
}

header.solid .hamburger span {
    background: #E6C875;
}

.hamburger.open span,
header.solid .hamburger.open span {
    background: #E6C875;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION — compact LEFT-SIDE DRAWER
   (slides in from the left, small footprint, own scroll)
   ========================================================= */

.mobile-nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;
    height: 100svh;

    background: #F8EEE2;

    z-index: 1050;

    display: flex;

    flex-direction: column;

    padding: 76px 32px 28px;

    overflow-y: auto;

    box-shadow: 18px 0 50px rgba(23, 21, 19, .28);

    transform: translateX(-100%);

    visibility: hidden;

    transition:
        transform .45s var(--ease),
        visibility 0s linear .45s;
}

.mobile-nav.open {
    transform: translateX(0);

    visibility: visible;

    transition:
        transform .45s var(--ease),
        visibility 0s linear 0s;
}

/* Close (X) button inside the drawer */

.mobile-nav-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    border: 1px solid rgba(126, 23, 48, .22);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #9B2347;

    background: rgba(155, 35, 71, .04);

    transition:
        border-color .3s var(--ease),
        color .3s var(--ease),
        transform .3s var(--ease);
}

.mobile-nav-close:hover {
    border-color: #C89A3D;
    color: #8C1F42;
    transform: rotate(90deg);
}

.mobile-nav a {
    display: block;

    font-family: var(--serif);

    font-size: 18px;

    font-weight: 500;

    color: #3A0F20;

    padding: 12px 0;

    border-bottom: 1px solid var(--border);

    opacity: 0;

    transform: translateX(-12px);

    transition:
        opacity .4s var(--ease),
        transform .4s var(--ease),
        color .3s;
}

.mobile-nav a:hover {
    color: var(--gold-primary);
}

.mobile-nav.open a {
    opacity: 1;

    transform: translateX(0);
}

.mobile-nav.open a:nth-child(2) {
    transition-delay: .05s;
}

.mobile-nav.open a:nth-child(3) {
    transition-delay: .09s;
}

.mobile-nav.open a:nth-child(4) {
    transition-delay: .13s;
}

.mobile-nav.open a:nth-child(5) {
    transition-delay: .17s;
}

.mobile-nav.open a:nth-child(6) {
    transition-delay: .21s;
}

.mobile-nav.open a:nth-child(7) {
    transition-delay: .25s;
}

.mobile-nav.open a:nth-child(8) {
    transition-delay: .29s;
}


/* Mobile CTA — centered, pill-shaped with a visible border */

.mobile-nav .m-cta {
    align-self: center;
    margin-top: 28px;

    width: auto;

    min-width: 220px;

    justify-content: center;

    border-bottom: none;
    border: 1.5px solid var(--gold-primary);
    border-radius: 999px;

    padding: 14px 36px;
}

.mobile-nav .m-cta:hover {
    border-color: var(--gold-light);
}


/* Dim backdrop behind the drawer */

.nav-overlay {
    position: fixed;
    inset: 0;

    background: rgba(15, 13, 11, .55);

    z-index: 1040;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .4s var(--ease),
        visibility 0s linear .4s;
}

.nav-overlay.active {
    opacity: 1;

    visibility: visible;

    transition:
        opacity .4s var(--ease),
        visibility 0s linear 0s;
}


/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {

    nav.main-nav {
        gap: 22px;
    }

    .header-right {
        gap: 18px;
    }
}

@media (max-width: 1180px) {

    :root {
        --header-h: 60px;
    }

    nav.main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-right {
        margin-left: auto;
        gap: 0;
    }

    .brand-logo {
        gap: 11px;
    }

    .brand-logo img {
        width: 88px;
        max-height: 56px;
    }

    .brand-name-main {
        font-size: 23px;
    }

    .brand-name-sub {
        font-size: 7.5px;
        letter-spacing: .32em;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {

    :root {
        --header-h: 40px;
    }

    header {
        padding: 12px 0;
    }

    header.solid {
        padding: 12px 0;
    }

    .brand-logo {
        gap: 9px;
    }

    .brand-logo img {
        width: 72px;
        max-height: 58px;
    }

    .brand-name-main {
        font-size: 22px;
    }

    .brand-name-sub {
        font-size: 8px;
        letter-spacing: .25em;
        margin-top: 5px;
    }

    .hamburger {
        width: 23px;
        height: 23px;
    }

    .mobile-nav {
        padding: 80px 24px 24px;
    }

    .mobile-nav-close {
        width: 32px;
        height: 32px;
        top: 16px;
        right: 16px;
    }

    .mobile-nav a {
        font-size: 16px;
        padding: 10px 0;
    }
}

@media (max-width: 360px) {

    :root {
        --header-h: 40px;
    }

    .brand-logo {
        gap: 7px;
    }

    .brand-logo img {
        width: 62px;
        max-height: 54px;
    }

    .brand-name-main {
        font-size: 19px;
    }

    .brand-name-sub {
        font-size: 7.5px;
        letter-spacing: .21em;
        margin-top: 4px;
    }

    .hamburger {
        width: 21px;
        height: 21px;
    }

    .mobile-nav a {
        font-size: 15px;
    }
}

/* =========================================================
   DREAM EVENT KOLKATA
   PREMIUM COMPACT FOOTER
   VERSION 2
   ========================================================= */


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.gkf2-footer {

    position: relative;

    width: 100%;

    overflow: hidden;

    background-color: #090a0a;

    color: #ffffff;

    font-family: Arial, sans-serif;

    isolation: isolate;
}


/* =========================================================
   DESKTOP BACKGROUND IMAGE
   ========================================================= */

.gkf2-footer::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -2;

    background-image:
        url("../images/footer-bg.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}
    

/* =========================================================
   DARK OVERLAY
   ========================================================= */

    .gkf2-footer-overlay {

        position: absolute;

        inset: 0;

        z-index: -1;

        background:
            linear-gradient(
                90deg,
                rgba(5, 7, 7, 0.96),
                rgba(8, 10, 10, 0.91),
                rgba(5, 7, 7, 0.95)
            );
    }


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.gkf2-footer-container {

    width: min(92%, 1380px);

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   TOP ROW
   4 COLUMNS
   ========================================================= */

.gkf2-top-row {

    display: grid;

    grid-template-columns:
        1.45fr
        0.85fr
        1.05fr
        1.05fr;

    column-gap: 65px;

    padding: 68px 0 55px;

    border-bottom:
        1px solid rgba(218, 168, 70, 0.18);
}


/* =========================================================
   BRAND
   ========================================================= */

.gkf2-brand-box {

    min-width: 0;
}


/* =========================================================
   LOGO
   ========================================================= */

.gkf2-logo-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    margin-bottom: 13px;
}


.gkf2-logo {

    display: block;

    width: 82px;

    height: auto;

    max-height: 82px;

    object-fit: contain;
}


/* =========================================================
   BRAND TITLE
   ========================================================= */

.gkf2-brand-title {

    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 500;

    letter-spacing: 1.2px;

    line-height: 1.2;
}


/* =========================================================
   SMALL GOLD LINE
   ========================================================= */

.gkf2-title-line {

    width: 44px;

    height: 2px;

    margin-top: 14px;

    background: #dcae4b;
}


/* =========================================================
   TAGLINE
   ========================================================= */

.gkf2-brand-tagline {

    margin: 16px 0 20px;

    color: #d2d2d2;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 3px;

    line-height: 1.5;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.gkf2-brand-description {

    max-width: 430px;

    margin: 0;

    color: #bdbdbd;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.gkf2-social {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 26px;
}


.gkf2-social a {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(218, 168, 70, 0.75);

    border-radius: 50%;

    color: #ffffff;

    font-size: 16px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.gkf2-social a:hover {

    background: #dcae4b;

    border-color: #dcae4b;

    color: #111111;

    transform: translateY(-3px);
}


/* =========================================================
   COLUMN
   ========================================================= */

.gkf2-column {

    min-width: 0;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.gkf2-heading {

    margin: 0;

    color: #e5bb66;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-weight: 500;

    line-height: 1.3;
}


/* =========================================================
   HEADING LINE
   ========================================================= */

.gkf2-heading-line {

    width: 40px;

    height: 2px;

    margin-top: 13px;

    margin-bottom: 20px;

    background: #dcae4b;
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.gkf2-link-list {

    list-style: none;

    padding: 0;

    margin: 0;
}


.gkf2-link-list li {

    margin-bottom: 14px;
}


.gkf2-link-list a {

    display: flex;

    align-items: center;

    gap: 11px;

    color: #d1d1d1;

    font-size: 14px;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.gkf2-link-list a span {

    color: #dcae4b;

    font-size: 21px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.gkf2-link-list a:hover {

    color: #e5bb66;

    transform: translateX(3px);
}


.gkf2-link-list a:hover span {

    transform: translateX(3px);
}


/* =========================================================
   SERVICES
   ========================================================= */

.gkf2-service-list {

    list-style: none;

    padding: 0;

    margin: 0;
}


.gkf2-service-list li {

    margin-bottom: 12px;
}


.gkf2-service-list a {

    display: flex;

    align-items: center;

    gap: 13px;

    color: #d1d1d1;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.4;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.gkf2-service-list i {

    width: 21px;

    flex: 0 0 21px;

    color: #e1b65d;

    font-size: 15px;

    text-align: center;
}


.gkf2-service-list a:hover {

    color: #e5bb66;

    transform: translateX(3px);
}


/* =========================================================
   CONTACT
   ========================================================= */

.gkf2-contact-item {

    display: flex;

    align-items: center;

    gap: 14px;

    width: 100%;

    padding: 13px 0;

    color: #ffffff;

    text-decoration: none;

    border-bottom:
        1px solid rgba(255,255,255,0.09);
}


.gkf2-contact-icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(220,174,75,0.5);

    border-radius: 50%;

    color: #dcae4b;

    font-size: 16px;

    background:
        rgba(220,174,75,0.04);
}


.gkf2-contact-text {

    display: flex;

    flex-direction: column;

    gap: 5px;

    min-width: 0;
}


.gkf2-contact-text strong {

    color: #eeeeee;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;
}


.gkf2-contact-text small {

    color: #a9a9a9;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   CONSULTATION BUTTON
   ========================================================= */

.gkf2-consult-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    width: 100%;

    margin-top: 18px;

    padding: 13px 18px;

    border:
        1px solid #dcae4b;

    border-radius: 9px;

    color: #e5bb66;

    text-decoration: none;

    font-size: 13px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.gkf2-consult-button i {

    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.gkf2-consult-button:hover {

    background: #dcae4b;

    color: #111111;

    transform: translateY(-2px);
}


.gkf2-consult-button:hover i {

    transform: translateX(4px);
}


/* =========================================================
   SECOND ROW
   2 COLUMNS
   ========================================================= */

.gkf2-second-row {

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 60px;

    padding: 38px 0 42px;
}


/* =========================================================
   LOCATION
   ========================================================= */

.gkf2-location-box {

    min-width: 0;
}


/* =========================================================
   LOCATION CONTENT
   ========================================================= */

.gkf2-location-content {

    display: grid;

    grid-template-columns: 1fr 0.82fr;

    gap: 28px;

    align-items: center;
}


/* =========================================================
   MAP
   ========================================================= */

.gkf2-map {

    width: 100%;

    height: 190px;

    overflow: hidden;

    border-radius: 10px;

    border:
        1px solid rgba(220,174,75,0.22);
}


.gkf2-map iframe {

    width: 100%;

    height: 100%;

    border: 0;

    display: block;
}


/* =========================================================
   LOCATION DETAILS
   ========================================================= */

.gkf2-location-details {

    min-width: 0;
}


.gkf2-location-address {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;
}


.gkf2-location-address > i {

    color: #e1b65d;

    font-size: 22px;

    margin-top: 3px;
}


.gkf2-location-address div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.gkf2-location-address strong {

    color: #eeeeee;

    font-size: 14px;

    font-weight: 600;
}


.gkf2-location-address span {

    color: #bdbdbd;

    font-size: 13px;

    line-height: 1.45;
}


/* =========================================================
   MAP BUTTON
   ========================================================= */

.gkf2-map-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 15px;

    border:
        1px solid #dcae4b;

    border-radius: 9px;

    color: #e5bb66;

    font-size: 12px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.gkf2-map-button i:first-child {

    font-size: 13px;
}


.gkf2-map-button i:last-child {

    transition:
        transform 0.3s ease;
}


.gkf2-map-button:hover {

    background: #dcae4b;

    color: #111111;
}


.gkf2-map-button:hover i:last-child {

    transform: translateX(4px);
}


/* =========================================================
   FOLLOW
   ========================================================= */

.gkf2-follow-box {

    min-width: 0;

    padding-left: 40px;

    border-left:
        1px solid rgba(220,174,75,0.15);
}


.gkf2-follow-text {

    margin: 0 0 18px;

    color: #b8b8b8;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   FOLLOW SOCIAL
   ========================================================= */

.gkf2-follow-social {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(255,255,255,0.1);
}


.gkf2-follow-social a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(220,174,75,0.75);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.gkf2-follow-social a:hover {

    background: #dcae4b;

    color: #111111;

    transform: translateY(-3px);
}


/* =========================================================
   STATS
   ========================================================= */

.gkf2-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 22px;
}


.gkf2-stat {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 18px;

    border-right:
        1px solid rgba(255,255,255,0.1);
}


.gkf2-stat:first-child {

    padding-left: 0;
}


.gkf2-stat:last-child {

    border-right: none;
}


.gkf2-stat > i {

    color: #e1b65d;

    font-size: 27px;
}


.gkf2-stat div {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.gkf2-stat strong {

    color: #eeeeee;

    font-size: 20px;

    font-weight: 500;
}


.gkf2-stat span {

    color: #a9a9a9;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.gkf2-copyright {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 25px;

    min-height: 76px;

    border-top:
        1px solid rgba(220,174,75,0.16);
}


.gkf2-copyright p {

    margin: 0;

    color: #9e9e9e;

    font-size: 12px;
}


/* =========================================================
   LEGAL
   ========================================================= */

.gkf2-legal {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;
}


.gkf2-legal a {

    color: #a7a7a7;

    font-size: 12px;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


.gkf2-legal a:hover {

    color: #e5bb66;
}


.gkf2-legal span {

    width: 1px;

    height: 14px;

    background: rgba(255,255,255,0.25);
}


/* =========================================================
   SLOGAN
   ========================================================= */

.gkf2-slogan {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 15px;
}


.gkf2-slogan > span {

    width: 55px;

    height: 1px;

    background: #dcae4b;
}


.gkf2-slogan em {

    color: #dcae4b;

    font-family: Georgia, serif;

    font-size: 15px;

    font-style: italic;

    white-space: nowrap;
}


.gkf2-slogan i {

    color: #dcae4b;

    font-size: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .gkf2-footer-container {

        width: min(94%, 950px);
    }


    .gkf2-top-row {

        grid-template-columns:
            1.2fr
            0.8fr
            1fr;

        gap: 40px;
    }


    .gkf2-brand-box {

        grid-row: span 2;
    }


    .gkf2-contact-box {

        grid-column: 2 / 4;
    }


    .gkf2-second-row {

        gap: 35px;
    }

}


/* =========================================================
   TABLET SMALL
   ========================================================= */

@media (max-width: 850px) {

    .gkf2-top-row {

        grid-template-columns:
            1fr 1fr;
    }


    .gkf2-brand-box {

        grid-column: 1 / 3;

        grid-row: auto;
    }


    .gkf2-contact-box {

        grid-column: auto;
    }


    .gkf2-second-row {

        grid-template-columns: 1fr;
    }


    .gkf2-follow-box {

        padding-left: 0;

        padding-top: 35px;

        border-left: none;

        border-top:
            1px solid rgba(220,174,75,0.15);
    }


    .gkf2-copyright {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 14px;

        padding: 22px 0;
    }


    .gkf2-slogan {

        justify-content: center;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {


    /* MOBILE BACKGROUND */

    .gkf2-footer::before {

        background-image:
            url("../images/footer-bg-mobile.png");

        background-position: center top;

        background-size: cover;
    }


    .gkf2-footer-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(5,7,7,0.96),
                rgba(5,7,7,0.94)
            );
    }


    .gkf2-footer-container {

        width: calc(100% - 30px);
    }


    /* TOP */

    .gkf2-top-row {

        grid-template-columns: 1fr;

        gap: 34px;

        padding: 48px 0 35px;
    }


    .gkf2-brand-box {

        grid-column: auto;

        text-align: left;
    }


    /* LOGO */

    .gkf2-logo {

        width: 70px;

        max-height: 70px;
    }


    /* BRAND */

    .gkf2-brand-title {

        font-size: 22px;

        letter-spacing: 0.8px;
    }


    .gkf2-brand-tagline {

        font-size: 9px;

        letter-spacing: 2.2px;

        margin: 13px 0 16px;
    }


    .gkf2-brand-description {

        font-size: 13px;

        line-height: 1.6;
    }


    /* SOCIAL */

    .gkf2-social {

        margin-top: 21px;

        gap: 9px;
    }


    .gkf2-social a {

        width: 38px;

        height: 38px;

        font-size: 14px;
    }


    /* HEADINGS */

    .gkf2-heading {

        font-size: 19px;
    }


    .gkf2-heading-line {

        margin-top: 10px;

        margin-bottom: 17px;

        width: 35px;
    }


    /* QUICK LINKS */

    .gkf2-link-list li {

        margin-bottom: 11px;
    }


    .gkf2-link-list a {

        font-size: 13px;
    }


    /* SERVICES */

    .gkf2-service-list li {

        margin-bottom: 10px;
    }


    .gkf2-service-list a {

        font-size: 13px;

        gap: 11px;
    }


    .gkf2-service-list i {

        font-size: 14px;
    }


    /* CONTACT */

    .gkf2-contact-item {

        padding: 11px 0;

        gap: 12px;
    }


    .gkf2-contact-icon {

        width: 40px;

        height: 40px;

        flex-basis: 40px;

        font-size: 14px;
    }


    .gkf2-contact-text strong {

        font-size: 13px;
    }


    .gkf2-contact-text small {

        font-size: 11px;
    }


    .gkf2-consult-button {

        padding: 12px 15px;

        font-size: 12px;
    }


    /* SECOND ROW */

    .gkf2-second-row {

        grid-template-columns: 1fr;

        gap: 32px;

        padding: 32px 0 35px;
    }


    /* LOCATION */

    .gkf2-location-content {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .gkf2-map {

        height: 175px;
    }


    .gkf2-location-address {

        margin-bottom: 18px;
    }


    .gkf2-map-button {

        font-size: 11px;

        padding: 10px 13px;
    }


    /* FOLLOW */

    .gkf2-follow-box {

        padding-top: 30px;
    }


    .gkf2-follow-text {

        font-size: 12px;
    }


    .gkf2-follow-social {

        gap: 9px;

        padding-bottom: 20px;
    }


    .gkf2-follow-social a {

        width: 38px;

        height: 38px;

        font-size: 14px;
    }


    /* STATS */

    .gkf2-stats {

        margin-top: 18px;
    }


    .gkf2-stat {

        gap: 7px;

        padding: 0 9px;
    }


    .gkf2-stat > i {

        font-size: 21px;
    }


    .gkf2-stat strong {

        font-size: 16px;
    }


    .gkf2-stat span {

        font-size: 9px;
    }


    /* COPYRIGHT */

    .gkf2-copyright {

        min-height: auto;

        padding: 20px 0;

        gap: 15px;
    }


    .gkf2-copyright p {

        font-size: 10px;
    }


    .gkf2-legal {

        gap: 9px;

        flex-wrap: wrap;
    }


    .gkf2-legal a {

        font-size: 10px;
    }


    .gkf2-slogan {

        gap: 9px;
    }


    .gkf2-slogan > span {

        width: 30px;
    }


    .gkf2-slogan em {

        font-size: 11px;
    }


    .gkf2-slogan i {

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .gkf2-footer-container {

        width: calc(100% - 22px);
    }


    .gkf2-top-row {

        padding-top: 40px;
    }


    .gkf2-brand-title {

        font-size: 20px;
    }


    .gkf2-brand-description {

        font-size: 12px;
    }


    .gkf2-heading {

        font-size: 18px;
    }


    .gkf2-stat {

        padding: 0 6px;

        gap: 5px;
    }


    .gkf2-stat > i {

        font-size: 19px;
    }


    .gkf2-stat strong {

        font-size: 14px;
    }


    .gkf2-stat span {

        font-size: 8px;
    }

}
































/* =========================================================
   FLOATING CONTACT BUTTONS
   WhatsApp + Call
   ========================================================= */

.contact-float {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 12px;

    align-items: flex-end;

    pointer-events: none;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.float-btn {
    width: 58px;
    height: 58px;

    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    text-decoration: none;

    pointer-events: auto;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .22);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        width .35s ease;

}   


/* =========================================================
   ICON
   ========================================================= */

.float-icon {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.float-icon svg {
    width: 100%;
    height: 100%;

    display: block;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-btn {
    background: #25D366;

    animation-delay: 0s;
}

.whatsapp-btn:hover {
    transform: translateX(-8px) scale(1.06);

    box-shadow:
        0 14px 32px rgba(37, 211, 102, .35);
}


/* =========================================================
   CALL BUTTON
   ========================================================= */

.call-btn {
    background: #1677ff;

    animation-delay: .3s;
}

.call-btn:hover {
    transform: translateX(-8px) scale(1.06);

    box-shadow:
        0 14px 32px rgba(22, 119, 255, .35);
}


/* =========================================================
   BUTTON LABEL
   ========================================================= */

.float-label {
    position: absolute;

    right: 70px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(10px);

    background: var(--charcoal, #171513);

    color: #fff;

    font-family: var(--sans, Arial, sans-serif);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .02em;

    white-space: nowrap;

    padding: 9px 14px;

    border-radius: 4px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}


/* Small arrow */

.float-label::after {
    content: "";

    position: absolute;

    right: -5px;

    top: 50%;

    width: 10px;
    height: 10px;

    background: var(--charcoal, #171513);

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* =========================================================
   SHOW LABEL ON HOVER
   ========================================================= */

.float-btn:hover .float-label {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* =========================================================
   HORIZONTAL FLOATING ANIMATION
   ========================================================= */

/* =========================================================
   VERTICAL FLOATING ANIMATION
   ========================================================= */

@keyframes floatVertical {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }

}


/* WhatsApp */
.whatsapp-btn {
    animation: floatVertical 2.8s ease-in-out infinite;
}


/* Call */
.call-btn {
    animation: floatVertical 2.8s ease-in-out infinite;
    animation-delay: .4s;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-float {
        right: 18px;
        bottom: 18px;

        gap: 10px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
    }

    .float-icon {
        width: 23px;
        height: 23px;
    }

    .float-label {
        display: none;
    }

    .whatsapp-btn:hover,
    .call-btn:hover {
        transform: scale(1.06);
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .contact-float {
        right: 14px;
        bottom: 14px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-icon {
        width: 21px;
        height: 21px;
    }

}
/* =========================================================
   TOAST
   ========================================================= */

.toast {
    position: fixed;

    bottom: 34px;

    left: 50%;

    transform:
        translateX(-50%) translateY(20px);

    background: #3A0F20;

    color: var(--warm-white);

    padding: 18px 30px;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 12px;

    z-index: 2000;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .5s var(--ease),
        transform .5s var(--ease);

    border-left:
        3px solid var(--gold-primary);
}

.toast.show {
    opacity: 1;

    transform:
        translateX(-50%) translateY(0);
}


/* =========================================================
   COUNT UP
   ========================================================= */

.count-up {
    font-variant-numeric: tabular-nums;
}


/* =========================================================
   TEXT SELECTION
   ========================================================= */

::selection {
    background: var(--gold-primary);

    color: var(--warm-white);
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .reveal-img img {
        transform: none;
    }
}




/* =========================================================
   GAJKESHRI INTERIORS - IMAGE PROTECTION
   ========================================================= */

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Protected image wrapper */
.protected-image {
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.protected-image img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Prevent selecting image area */
.protected-image::selection,
.protected-image img::selection {
    background: transparent;
}

.protected-image::-moz-selection,
.protected-image img::-moz-selection {
    background: transparent;
}