:root {
    --black: #070707;
    --black-soft: #0d0d0d;
    --card: #141414;
    --gold: #c9a227;
    --gold-light: #e1c158;
    --white: #ffffff;
    --text: #d5d5d5;
    --muted: #999999;
    --border: rgba(201, 162, 39, 0.28);
    --container: 1180px;
    --transition: .35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: min(90%, var(--container));
    margin: auto;
}

/* ================= HEADER ================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, .92);
    border-bottom: 1px solid rgba(201, 162, 39, .2);
    backdrop-filter: blur(12px);
}

.header-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.brand-text small {
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1.6px;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    color: #ddd;
    font-size: 13px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 19px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.header-call:hover {
    background: var(--gold);
    color: #000;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--border);
    border-radius: 8px;
}

/* ================= HERO ================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, .18),
            rgba(0, 0, 0, .28)
        ),
        url("assets/hero.png") center center / cover no-repeat;

    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 45%,
            rgba(201, 162, 39, .06),
            transparent 45%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .48),
            rgba(0, 0, 0, .08),
            rgba(0, 0, 0, .20)
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding-top: 85px;
    max-width: 650px;
    margin-left: max(5%, calc((100% - var(--container)) / 2));
}

.hero-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 6vw, 82px);
    line-height: .98;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 4px 18px rgba(0,0,0,.45);
}

.hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-content p {
    max-width: 600px;
    color: #f0f0f0;
    font-size: 15px;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px #000;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 155px;
    padding: 13px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: #080808;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold-light);
    background: rgba(0,0,0,.25);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.scroll-down {
    position: absolute;
    z-index: 4;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ddd;
    font-size: 9px;
    letter-spacing: 3px;
}

.scroll-down i {
    color: var(--gold-light);
}

/* ================= COMMON ================= */

.section {
    padding: 100px 0;
    position: relative;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading > span,
.section-label {
    display: inline-block;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1;
    margin-bottom: 16px;
}

.section-heading h2 strong {
    color: var(--gold-light);
}

.section-heading p {
    color: var(--muted);
    font-size: 14px;
}

/* ================= ABOUT ================= */

.about-section {
    background: linear-gradient(#090909, #111);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-content h3 strong {
    display: block;
    color: var(--gold-light);
}

.about-content p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.about-points div {
    padding: 12px;
    border: 1px solid rgba(201,162,39,.15);
    background: rgba(255,255,255,.025);
    border-radius: 7px;
    color: #ccc;
    font-size: 12px;
}

.about-points i {
    color: var(--gold-light);
    margin-right: 6px;
}

.about-highlight {
    min-height: 360px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg,#1a1a1a,#0d0d0d);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.about-highlight > i {
    color: var(--gold-light);
    font-size: 42px;
    margin-bottom: 22px;
}

.about-highlight h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 50px;
    line-height: .9;
    margin-bottom: 20px;
}

.about-highlight p {
    color: var(--muted);
    font-size: 13px;
}

/* ================= FOUNDER ================= */

.founder-section {
    background: #0d0d0d;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg,#191919,#0b0b0b);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.founder-icon {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 32px;
}

.founder-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1;
    margin: 7px 0;
}

.founder-card h4 {
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.founder-card p {
    color: var(--muted);
    font-size: 13px;
}

/* ================= SERVICES ================= */

.services-section {
    background: #101010;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-card {
    min-height: 245px;
    padding: 32px 26px;
    background: linear-gradient(145deg,#191919,#0e0e0e);
    border: 1px solid rgba(201,162,39,.18);
    border-radius: 13px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
}

.service-card > i {
    color: var(--gold-light);
    font-size: 32px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--muted);
    font-size: 12px;
}

/* ================= PROJECTS ================= */

.projects-section {
    background: #0b0b0b;
}

.coming-soon-card {
    max-width: 750px;
    min-height: 320px;
    margin: auto;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg,#181818,#0b0b0b);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.coming-soon-card > i {
    color: var(--gold-light);
    font-size: 40px;
    margin-bottom: 18px;
}

.coming-soon-card > span {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.coming-soon-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.coming-soon-card p {
    color: var(--muted);
    font-size: 13px;
}

/* ================= CONTACT ================= */

.contact-section {
    background: #0d0d0d;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    background: #151515;
    border: 1px solid rgba(201,162,39,.15);
    border-radius: 9px;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.contact-item > i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201,162,39,.08);
    color: var(--gold-light);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 2px;
}

.contact-item strong {
    color: #ddd;
    font-size: 12px;
    font-weight: 500;
    word-break: break-word;
}

.map-container {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
    filter: grayscale(100%) brightness(.72);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
}

/* ================= FOOTER ================= */

.site-footer {
    padding: 55px 0 25px;
    text-align: center;
    background: #050505;
    border-top: 1px solid rgba(201,162,39,.18);
}

.site-footer img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.site-footer h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold-light);
    font-size: 27px;
}

.site-footer p {
    color: var(--muted);
    font-size: 12px;
}

.footer-line {
    width: 80px;
    height: 1px;
    margin: 22px auto;
    background: var(--gold);
}

.site-footer small {
    color: #666;
    font-size: 10px;
}

/* ================= FLOATING BUTTONS ================= */

.floating-button {
    position: fixed;
    right: 20px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    font-size: 20px;
    transition: var(--transition);
}

.floating-call {
    bottom: 90px;
    background: var(--gold);
    color: #000;
}

.floating-whatsapp {
    bottom: 22px;
    background: #25d366;
    color: #fff;
}

.floating-button:hover {
    transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-highlight {
        max-width: 550px;
        margin: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {

    .header-container {
        min-height: 72px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 23px;
    }

    .brand-text small {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 4%;
        right: 4%;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        background: rgba(8,8,8,.98);
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 12px;
    }

    .main-nav a::after {
        display: none;
    }

    .header-call {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        max-width: 90%;
        margin: auto;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(45px,10vw,68px);
    }

    .hero-buttons {
        justify-content: center;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .container {
        width: 92%;
    }

    .section {
        padding: 75px 0;
    }

    .hero-section {
        background-position: 60% center;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-highlight {
        min-height: 310px;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .founder-card h2 {
        font-size: 33px;
    }

    .coming-soon-card h3 {
        font-size: 34px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .floating-call {
        bottom: 82px;
    }
}
/* Founder Photo - Premium Style */
.founder-photo {
    width: 320px;
    height: 380px;
    flex-shrink: 0;
    border: 1px solid #d4af37;
    border-radius: 18px;
    overflow: hidden;
    padding: 5px;
    background: #111;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
}/* Founder Photo - Premium Style */
.founder-photo {
    width: 320px;
    height: 380px;
    flex-shrink: 0;
    border: 1px solid #d4af37;
    border-radius: 18px;
    overflow: hidden;
    padding: 5px;
    background: #111;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
}