/* =========================================================
   ABHISHEK PATHAK - PREMIUM PERSONAL WEBSITE
   BLACK + WHITE + GOLD DESIGN
========================================================= */

:root {

    --black: #080808;
    --black-soft: #111111;
    --black-card: #151515;

    --white: #ffffff;
    --white-soft: #f7f7f5;
    --grey: #666666;
    --grey-light: #999999;

    --gold: #d8b45b;
    --gold-light: #f0d98a;
    --gold-dark: #a98435;

    --border: rgba(216,180,91,.20);
    --shadow: 0 25px 70px rgba(0,0,0,.14);

    --radius: 22px;

    --container: 1240px;

    --transition: .35s ease;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background: var(--white);

    color: #181818;

    line-height: 1.7;

    overflow-x: hidden;

}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


.section {

    padding: 105px 0;

}


.section-heading {

    max-width: 820px;

    margin: 0 auto 60px;

    text-align: center;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    color: var(--gold-dark);

}


.section-heading h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.12;

    color: #111;

}


.section-heading h2 span,
.global-content h2 span,
.final-cta-box h2 span {

    color: var(--gold-dark);

}


.section-heading p {

    margin-top: 20px;

    font-size: 18px;

    color: #686868;

    line-height: 1.8;

}


.dark-heading h2 {
    color: white;
}


.dark-heading p {
    color: #aaa;
}


.dark-heading .section-label {
    color: var(--gold-light);
}



/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 9999;

    background: rgba(8,8,8,.94);

    border-bottom: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(18px);

    transition: var(--transition);

}


.site-header.scrolled {

    box-shadow: 0 15px 45px rgba(0,0,0,.25);

    background: rgba(5,5,5,.98);

}


.nav-wrapper {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 25px;

}


.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.logo-mark {

    width: 47px;

    height: 47px;

    display: grid;

    place-items: center;

    border: 1px solid var(--gold);

    border-radius: 13px;

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 800;

    box-shadow:
        inset 0 0 20px rgba(216,180,91,.08),
        0 0 20px rgba(216,180,91,.08);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.logo-text strong {

    color: white;

    font-size: 17px;

}


.logo-text small {

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;

    margin-top: 5px;

}


.main-nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 3px;

}


.nav-link {

    position: relative;

    padding: 30px 13px;

    color: #c9c9c9;

    font-size: 15px;

    font-weight: 700;

    transition: var(--transition);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 18px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);

    transition: var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: var(--gold-light);

}


.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}


.header-call {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border: 1px solid var(--gold);

    border-radius: 50px;

    color: var(--gold-light);

    font-size: 14px;

    font-weight: 800;

    white-space: nowrap;

    transition: var(--transition);

}


.header-call:hover {

    background: var(--gold);

    color: #111;

}


.menu-toggle {

    display: none;

    border: 1px solid var(--gold);

    background: transparent;

    color: var(--gold);

    width: 45px;

    height: 45px;

    border-radius: 10px;

    cursor: pointer;

}



/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 850px;

    padding: 170px 0 110px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 35%,
            rgba(216,180,91,.14),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #070707 0%,
            #101010 50%,
            #080808 100%
        );

    color: white;

}


.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .05;

    background-image:
        linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);

    background-size: 70px 70px;

}


.hero-bg-shape {

    position: absolute;

    border: 1px solid rgba(216,180,91,.16);

    border-radius: 50%;

    pointer-events: none;

}


.shape-one {

    width: 620px;

    height: 620px;

    right: -230px;

    top: 80px;

}


.shape-two {

    width: 400px;

    height: 400px;

    right: -100px;

    top: 190px;

}


.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.08fr .92fr;

    align-items: center;

    gap: 75px;

}


.hero-content {

    max-width: 720px;

}


.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 14px;

    margin-bottom: 25px;

    border: 1px solid rgba(216,180,91,.30);

    border-radius: 50px;

    background: rgba(216,180,91,.05);

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-tag span {

    width: 7px;

    height: 7px;

    background: var(--gold);

    border-radius: 50%;

    box-shadow: 0 0 12px var(--gold);

}


.hero h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(58px, 7vw, 96px);

    line-height: .95;

    letter-spacing: -3px;

}


.hero h1 span {

    display: block;

    color: var(--gold-light);

}


.hero-title {

    margin-top: 25px;

    max-width: 690px;

    color: #d8d8d8;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.55;

}


.hero-title b {

    color: var(--gold);

    padding: 0 5px;

}


.hero-description {

    max-width: 690px;

    margin-top: 24px;

    color: #a9a9a9;

    font-size: 18px;

    line-height: 1.85;

}


.hero-highlight {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 27px;

}


.hero-highlight div {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 8px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.09);

    color: #ddd;

    font-size: 12px;

    font-weight: 700;

}


.hero-highlight i {

    color: var(--gold);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 800;

    transition: var(--transition);

}


.btn-primary {

    background: var(--gold);

    color: #111;

    box-shadow: 0 12px 30px rgba(216,180,91,.18);

}


.btn-primary:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


.btn-outline {

    color: white;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.03);

}


.btn-outline:hover {

    border-color: var(--gold);

    color: var(--gold-light);

    transform: translateY(-3px);

}


.hero-contact {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.09);

}


.hero-contact a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #aaa;

    font-size: 13px;

    font-weight: 600;

}


.hero-contact a:hover {

    color: var(--gold-light);

}


.hero-contact i {

    color: var(--gold);

}


.social-links {

    display: flex;

    gap: 9px;

    margin-top: 22px;

}


.social-links a,
.footer-social a {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 9px;

    color: #aaa;

    transition: var(--transition);

}


.social-links a:hover,
.footer-social a:hover {

    border-color: var(--gold);

    color: var(--gold-light);

    transform: translateY(-3px);

}



/* =========================================================
   PROFILE
========================================================= */

.profile-area {

    position: relative;

    min-height: 590px;

    display: grid;

    place-items: center;

}


.profile-card {

    position: relative;

    z-index: 3;

    width: min(100%, 410px);

    padding: 13px;

    border: 1px solid rgba(216,180,91,.38);

    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 35px 90px rgba(0,0,0,.5),
        inset 0 0 35px rgba(216,180,91,.04);

    backdrop-filter: blur(15px);

}


.profile-card-top {

    display: flex;

    justify-content: space-between;

    gap: 8px;

    padding: 8px 8px 14px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.profile-image {

    position: relative;

    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    border-radius: 20px;

    background: #181818;

}


.profile-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.5)
        );

    pointer-events: none;

}


.profile-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.profile-card-content {

    padding: 21px 10px 12px;

}


.profile-role {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.profile-card-content h2 {

    margin-top: 7px;

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 30px;

}


.profile-card-content p {

    margin-top: 3px;

    color: #aaa;

    font-size: 13px;

}


.profile-status {

    margin-top: 14px;

}


.profile-status span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #aaa;

    font-size: 11px;

}


.profile-status i {

    color: #62d681;

    font-size: 7px;

}


.profile-orbit {

    position: absolute;

    border: 1px solid rgba(216,180,91,.16);

    border-radius: 50%;

}


.orbit-one {

    width: 520px;

    height: 520px;

}


.orbit-two {

    width: 680px;

    height: 680px;

}


.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border: 1px solid rgba(216,180,91,.30);

    border-radius: 13px;

    background: rgba(15,15,15,.9);

    box-shadow: 0 20px 45px rgba(0,0,0,.3);

    backdrop-filter: blur(15px);

}


.floating-card i {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    background: rgba(216,180,91,.10);

    color: var(--gold-light);

    border-radius: 9px;

}


.floating-card strong,
.floating-card small {

    display: block;

}


.floating-card strong {

    color: white;

    font-size: 13px;

}


.floating-card small {

    color: #888;

    font-size: 10px;

}


.floating-one {

    left: -35px;

    top: 22%;

}


.floating-two {

    right: -30px;

    bottom: 22%;

}


.profile-badge {

    position: absolute;

    z-index: 6;

    right: -25px;

    top: 10%;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 50px;

    background: var(--gold);

    color: #111;

    font-size: 10px;

    font-weight: 800;

}



/* =========================================================
   CTA STRIPS
========================================================= */

.section-cta {

    padding: 27px 0;

}


.dark-cta {

    background: #0b0b0b;

    color: white;

    border-top: 1px solid rgba(216,180,91,.15);

    border-bottom: 1px solid rgba(216,180,91,.15);

}


.light-cta {

    background: #f1f1ed;

}


.gold-cta {

    background:
        linear-gradient(
            100deg,
            #c79f47,
            #e7cb78,
            #c69d45
        );

    color: #111;

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.cta-inner span {

    display: block;

    margin-bottom: 4px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    opacity: .75;

}


.cta-inner h3 {

    font-family: "Playfair Display", serif;

    font-size: clamp(20px, 3vw, 28px);

    line-height: 1.25;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 9px;

    color: white;

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);

}


.dark-cta .cta-button:hover {

    background: var(--gold);

    color: #111;

    border-color: var(--gold);

}


.light-cta .cta-button,
.gold-cta .cta-button {

    border-color: #111;

    color: #111;

}


.light-cta .cta-button:hover,
.gold-cta .cta-button:hover {

    background: #111;

    color: white;

}


.dark-button {

    color: #111 !important;

    border-color: #111 !important;

}



/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: var(--white-soft);

}


.about-grid {

    display: grid;

    grid-template-columns: .88fr 1.12fr;

    gap: 75px;

    align-items: center;

}


.about-visual {

    position: relative;

    padding: 20px;

}


.about-image-frame {

    position: relative;

    padding: 11px;

    background: white;

    border: 1px solid #dedbd0;

    border-radius: 25px;

    box-shadow: var(--shadow);

}


.about-image-frame img {

    width: 100%;

    aspect-ratio: 4 / 4.6;

    object-fit: cover;

    border-radius: 17px;

}


.image-label {

    position: absolute;

    /*left: 30px;*/
	 left: 11px;

   /* bottom: 30px;*/
	bottom: 0px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    border-radius: 10px;

    background: rgba(10,10,10,.92);

    color: white;

}


.image-label strong {

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.image-label span {

    font-size: 10px;

    font-weight: 700;

    color: #aaa;

}


.about-mini-card {

    position: absolute;

    right: -5px;

    bottom: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    background: #111;

    border: 1px solid var(--gold);

    border-radius: 13px;

    color: white;

    box-shadow: var(--shadow);

}


.about-mini-card i {

    color: var(--gold-light);

    font-size: 22px;

}


.about-mini-card strong,
.about-mini-card span {

    display: block;

}


.about-mini-card strong {

    font-size: 12px;

}


.about-mini-card span {

    color: #888;

    font-size: 9px;

}


.about-content > p {

    margin-bottom: 20px;

    color: #555;

    font-size: 17px;

    line-height: 1.85;

}


.about-content strong {

    color: #111;

}


.about-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 30px;

}


.about-stats div {

    padding: 17px 12px;

    border: 1px solid #dedbd0;

    border-radius: 13px;

    background: white;

}


.about-stats strong,
.about-stats span {

    display: block;

}


.about-stats strong {

    color: var(--gold-dark);

    font-family: "Playfair Display", serif;

    font-size: 22px;

}


.about-stats span {

    margin-top: 3px;

    color: #777;

    font-size: 10px;

    font-weight: 700;

}



/* =========================================================
   BRANDS
========================================================= */

.brands-section {

    background: #090909;

    color: white;

}


.brand-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.brand-card {

    position: relative;

    padding: 31px;

    min-height: 380px;

    display: flex;

    flex-direction: column;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0f0f0f
        );

    transition: var(--transition);

    overflow: hidden;

}


.brand-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -70px;

    top: -70px;

    border-radius: 50%;

    border: 1px solid rgba(216,180,91,.15);

}


.brand-card:hover {

    transform: translateY(-8px);

    border-color: rgba(216,180,91,.55);

    box-shadow: 0 25px 60px rgba(0,0,0,.35);

}


.featured-brand {

    border-color: rgba(216,180,91,.5);

    background:
        linear-gradient(
            145deg,
            #1d1a13,
            #101010
        );

}


.brand-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.brand-top span {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.brand-top i {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(216,180,91,.3);

    border-radius: 12px;

    color: var(--gold-light);

    background: rgba(216,180,91,.05);

}


.brand-card h3 {

    margin-top: 32px;


    font-family: "Playfair Display", serif;

    font-size: 31px;

}


.brand-category {

    margin-top: 5px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.brand-card p {

    margin-top: 18px;

    color: #999;

    font-size: 15px;

    line-height: 1.75;

}


.brand-link {

    margin-top: auto;

    padding-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 800;

}



/* =========================================================
   SERVICES
========================================================= */

.expertise-section {

    background: #f6f6f3;

}


.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    overflow: hidden;

    border: 1px solid #dfddd5;

    border-radius: 19px;

    background: white;

    box-shadow: 0 10px 35px rgba(0,0,0,.04);

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 25px 55px rgba(0,0,0,.10);

    border-color: rgba(216,180,91,.5);

}


.service-image {

    position: relative;

    height: 190px;

    overflow: hidden;

    background: #171717;

}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.service-card:hover .service-image img {

    transform: scale(1.06);

}


.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(0,0,0,.45)
    );

}


.service-image > span {

    position: absolute;

    z-index: 2;

    top: 15px;

    right: 15px;

    padding: 7px 10px;

    border-radius: 7px;

    background: rgba(0,0,0,.75);

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

}


.service-content {

    padding: 25px;

}


.service-icon {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    margin-bottom: 17px;

    border-radius: 11px;

    background: #111;

    color: var(--gold-light);

}


.service-content h3 {

    font-size: 20px;

    line-height: 1.35;

}


.service-content p {

    margin-top: 10px;

    color: #707070;

    font-size: 14px;

    line-height: 1.75;

}


.service-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 19px;

    color: #9b7427;

    font-size: 12px;

    font-weight: 800;

}



/* =========================================================
   JOURNEY
========================================================= */

.journey-section {

    background: #090909;

    color: white;

}


.timeline {

    position: relative;

    max-width: 950px;

    margin: auto;

}


.timeline::before {

    content: "";

    position: absolute;

    left: 30px;

    top: 15px;

    bottom: 15px;

    width: 1px;

    background: linear-gradient(
        transparent,
        rgba(216,180,91,.7),
        transparent
    );

}


.timeline-item {

    position: relative;

    display: grid;

    grid-template-columns: 62px 1fr;

    gap: 25px;

    margin-bottom: 22px;

}


.timeline-number {

    position: relative;

    z-index: 2;

    width: 60px;

    height: 60px;

    display: grid;

    place-items: center;

    border: 1px solid var(--gold);

    border-radius: 50%;

    background: #0b0b0b;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 800;

}


.timeline-content {

    padding: 25px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background: rgba(255,255,255,.025);

}


.timeline-content > span {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.timeline-content h3 {

    margin-top: 5px;

    font-family: "Playfair Display", serif;

    font-size: 25px;

}


.timeline-content p {

    margin-top: 7px;

    color: #999;

    font-size: 14px;

    line-height: 1.7;

}



/* =========================================================
   GLOBAL
========================================================= */

.global-section {

    background: white;

}


.global-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 75px;

    align-items: center;

}


.global-content h2 {

    max-width: 650px;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.1;

}


.global-content > p {

    max-width: 690px;

    margin-top: 22px;

    color: #666;

    font-size: 17px;

    line-height: 1.85;

}


.location-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;

}


.location-tags span {

    padding: 8px 12px;

    border: 1px solid #dedbd0;

    border-radius: 50px;

    color: #555;

    background: #fafafa;

    font-size: 11px;

    font-weight: 800;

}


.global-card {

    padding: 40px;

    border: 1px solid rgba(216,180,91,.4);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #111,
            #1a1812
        );

    color: white;

    box-shadow: var(--shadow);

}


.global-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border: 1px solid var(--gold);

    border-radius: 16px;

    color: var(--gold-light);

    font-size: 27px;

}


.global-block span {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.global-block h3 {

    margin-top: 3px;

    font-family: "Playfair Display", serif;

    font-size: 28px;

}


.global-block p {

    margin-top: 8px;

    color: #999;

    font-size: 14px;

    line-height: 1.75;

}


.global-divider {

    height: 1px;

    margin: 28px 0;

    background: rgba(255,255,255,.1);

}



/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: #f4f4f1;

}


.contact-grid {

    display: grid;

    grid-template-columns: .82fr 1.18fr;

    gap: 30px;

    align-items: stretch;

}


.contact-info {

    padding: 35px;

    border-radius: 22px;

    background: #0c0c0c;

    color: white;

}


.contact-info-heading span,
.form-header > span {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-info-heading h3 {

    margin-top: 8px;

    font-family: "Playfair Display", serif;

    font-size: 34px;

    line-height: 1.25;

}


.contact-info-heading strong {

    color: var(--gold-light);

}


.contact-card {

    display: flex;

    gap: 15px;

    margin-top: 25px;

}


.contact-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px solid rgba(216,180,91,.35);

    border-radius: 11px;

    color: var(--gold-light);

}


.contact-card small,
.contact-card a,
.contact-card strong {

    display: block;

}


.contact-card small {

    color: #777;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-card a,
.contact-card strong {

    margin-top: 3px;

    color: white;

    font-size: 14px;

}


.contact-card a:hover {

    color: var(--gold-light);

}


.contact-social {

    display: flex;

    gap: 8px;

    margin-top: 32px;


    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.1);

}


.enquiry-form {

    padding: 38px;

    border: 1px solid #ddd9cf;

    border-radius: 22px;

    background: white;

    box-shadow: 0 20px 60px rgba(0,0,0,.06);

}


.form-header h3 {

    margin-top: 7px;

    font-family: "Playfair Display", serif;

    font-size: 32px;

}


.form-header p {

    margin-top: 6px;

    color: #777;

    font-size: 14px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 25px;

}


.form-group {

    margin-top: 17px;

}


.form-row .form-group {

    margin-top: 0;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: #333;

    font-size: 11px;

    font-weight: 800;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #ddd9cf;

    border-radius: 10px;

    outline: none;

    background: #fafaf8;

    color: #222;

    padding: 13px 14px;

    font-size: 14px;

    transition: var(--transition);

}


.form-group textarea {

    resize: vertical;

    min-height: 130px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--gold);

    background: white;

    box-shadow: 0 0 0 3px rgba(216,180,91,.10);

}


.submit-btn {

    width: 100%;

    min-height: 54px;

    margin-top: 22px;

    border: 0;

    border-radius: 10px;

    background: #111;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    cursor: pointer;

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);

}


.submit-btn:hover {

    background: var(--gold);

    color: #111;

    transform: translateY(-2px);

}


.form-note {

    margin-top: 12px;

    color: #888;

    font-size: 10px;

    text-align: center;

}



/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding: 90px 0;

    background: #0a0a0a;

}


.final-cta-box {

    position: relative;

    overflow: hidden;

    padding: 65px 30px;

    border: 1px solid rgba(216,180,91,.35);

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(216,180,91,.12),
            transparent 50%
        ),
        #111;

    text-align: center;

    color: white;

}


.final-icon {

    width: 65px;

    height: 65px;

    display: grid;

    place-items: center;

    margin: 0 auto 20px;

    border: 1px solid var(--gold);

    border-radius: 50%;

}


.final-icon span {

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-weight: 800;

}


.final-cta-box .section-label {

    color: var(--gold);

}


.final-cta-box h2 {

    max-width: 800px;

    margin: auto;

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.1;

}


.final-cta-box p {

    max-width: 700px;

    margin: 20px auto 0;

    color: #999;

    font-size: 16px;

    line-height: 1.8;

}


.final-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #050505;

    color: white;

    padding: 80px 0 0;

    border-top: 1px solid rgba(216,180,91,.25);

}


.footer-grid {

    display: grid;

    grid-template-columns: 1.4fr .7fr .8fr 1fr;

    gap: 55px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

}


.footer-logo span:last-child {

    display: flex;

    flex-direction: column;

}


.footer-logo strong {

    font-size: 18px;

}


.footer-logo small {

    margin-top: 4px;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 1px;

}


.footer-brand > p {

    max-width: 410px;

    margin-top: 20px;

    color: #8e8e8e;

    font-size: 15px;

    line-height: 1.85;

}


.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 23px;

}


.footer-column h3 {

    margin-bottom: 20px;

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.footer-column ul {

    list-style: none;

}


.footer-column li {

    margin-bottom: 10px;

}


.footer-column li a {

    color: #999;

    font-size: 14px;

    transition: var(--transition);

}


.footer-column li a:hover {

    color: var(--gold-light);

    padding-left: 4px;

}


.footer-contact > a {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #aaa;

    font-size: 14px;

}


.footer-contact > a:hover {

    color: var(--gold-light);

}


.footer-contact > a i {

    width: 18px;

    color: var(--gold);

}


.footer-location {

    display: flex;

    gap: 10px;

    margin-top: 22px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #888;

    font-size: 12px;

}


.footer-location i {

    color: var(--gold);

}


.footer-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 65px;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    border-bottom: 1px solid rgba(255,255,255,.08);

}


.footer-cta span {

    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.footer-cta strong {

    font-family: "Playfair Display", serif;

    font-size: 22px;

}


.footer-cta > a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border: 1px solid var(--gold);

    border-radius: 8px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 800;

}


.footer-cta > a:hover {

    background: var(--gold);

    color: #111;

}


.footer-bottom {

    min-height: 70px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    color: #707070;

    font-size: 11px;

}


.footer-bottom p:nth-child(2) {

    text-align: center;

}


.powered {

    text-align: right;

}


.powered a {

    color: var(--gold-light);

    font-weight: 800;

}


.powered a:hover {

    text-decoration: underline;

}



/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    z-index: 999;

    right: 22px;

    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 16px;

    border-radius: 50px;

    background: #20b85a;

    color: white;

    box-shadow: 0 12px 35px rgba(0,0,0,.25);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);

}


.floating-whatsapp i {

    font-size: 19px;

}


.floating-whatsapp:hover {

    transform: translateY(-4px) scale(1.02);

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }

    .hero-grid {
        gap: 45px;
    }

    .brand-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .site-header {
        position: fixed;
    }

    .nav-wrapper {
        min-height: 72px;
    }

    .main-nav {

        position: absolute;

        top: 72px;

        left: 20px;

        right: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        border: 1px solid rgba(216,180,91,.2);

        border-radius: 15px;

        background: rgba(8,8,8,.98);

        box-shadow: 0 25px 60px rgba(0,0,0,.4);

    }

    .main-nav.open {
        display: flex;
    }

    .nav-link {
        padding: 14px 15px;
        border-radius: 8px;
        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(216,180,91,.09);
    }

    .header-call {
        margin-left: auto;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .hero {
        min-height: auto;
        padding: 145px 0 80px;
    }

    .hero-grid,
    .about-grid,
    .global-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-tag,
    .hero-highlight,
    .hero-buttons,
    .hero-contact,
    .social-links {
        justify-content: center;
    }

    .profile-area {
        min-height: 570px;
    }

    .about-visual {
        max-width: 500px;
        margin: auto;
        width: 100%;
    }

    .about-content {
        max-width: 850px;
        margin: auto;
    }

    .global-content {
        text-align: center;
    }

    .location-tags {
        justify-content: center;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 37px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-title {
        font-size: 17px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-contact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .profile-area {
        min-height: 510px;
    }

    .profile-card {
        width: min(100%, 350px);
    }

    .profile-orbit {
        display: none;
    }

    .floating-one {
        left: 0;
        top: 12%;
    }

    .floating-two {
        right: 0;
        bottom: 13%;
    }

    .profile-badge {
        right: 0;
        top: 4%;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-height: auto;
    }

    .service-image {
        height: 210px;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        padding: 20px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-info,
    .enquiry-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-group {
        margin-top: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta > a {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 0;
    }

    .footer-bottom p:nth-child(2),
    .powered {
        text-align: center;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
    }

    .floating-whatsapp span {
        display: none;
    }

}


@media (max-width: 430px) {

    .logo-text {
        display: none;
    }

    .header-call span {
        display: none;
    }

    .header-call {
        padding: 11px 13px;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -2px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .profile-area {
        min-height: 470px;
    }

    .profile-card {
        width: calc(100% - 25px);
    }

    .floating-card {
        padding: 9px;
    }

    .floating-card i {
        width: 29px;
        height: 29px;
    }

    .floating-one {
        left: -5px;
    }

    .floating-two {
        right: -5px;
    }

    .about-stats {
        gap: 7px;
    }

    .about-stats div {
        padding: 13px 8px;
    }

    .global-card {
        padding: 27px;
    }

    .final-cta {
        padding: 60px 0;
    }

}



/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;

    }

}