:root {
    --bg: #0b0b0b;
    --glass: rgba(255,255,255,0.08);
    --gold1: #d4af37;
    --gold2: #f5d76e;
    --gold3: #b8962e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg);
    color: #fff;
    overflow-x: hidden;
}

.page-content {
    padding-top: 120px;
}


/* GOLD TEXT */
.gold-text {
    background: linear-gradient(135deg, var(--gold1), var(--gold2), var(--gold3));
    -webkit-background-clip: text;
    color: transparent;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    background: url('/assets/images/hero/hero.jpg') center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-glass {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 760px;
    margin: auto;
    padding: 50px;
    text-align: center;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    border: 1px solid rgba(255,215,100,0.25);
    animation: floatIn 1.2s ease forwards;
}

.hero-glass h1 {
    font-size: 3rem;
}

.hero-sub {
    margin: 15px 0 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* BUTTONS */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold1), var(--gold2), var(--gold3));
    color: #000;
}

.btn-gold:hover {
    box-shadow: 0 0 25px rgba(212,175,55,0.6);
    transform: translateY(-2px);
}

.btn-glass {
    border: 1px solid var(--gold1);
    color: #fff;
}

/* SECTIONS */
.section {
    padding: 90px 20px;
}

.center {
    text-align: center;
}

/* GLASS BOX */
.glass-box {
    max-width: 1100px;
    margin: auto;
    padding: 40px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    border-radius: 20px;
}

/* KITCHENS */
.kitchen-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}

.kitchen-card {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease;
}

.kitchen-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.6);
}

.kitchen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(212,175,55,0.15));
}

/* BRANDS */
.brand-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.brand-strip span {
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.35);
    background: rgba(255,255,255,0.05);
}

/* CONTACT */
.contact-box {
    text-align: center;
}

.contact-links a {
    color: var(--gold2);
    text-decoration: none;
}

/* FORM */
.quote-form {
    margin-top: 25px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: none;
}

.full {
    width: 100%;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 25px;
    opacity: 0.6;
}



/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATION */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* =======================
Floating Buttons Wrapper 
========================*/

.dmk-fab-wrapper {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
}

/* Button Base */
.dmk-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

/* Icons */
.dmk-fab img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    z-index: 2;
}

/* GOLD RING ANIMATION */
.gold-ring::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        #b68c3a,
        #ffd77a,
        #fff1b8,
        #ffd77a,
        #b68c3a
    );
    filter: blur(1px);
    animation: goldRotate 4s linear infinite;
    z-index: 1;
}

/* Glow */
.gold-ring::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,122,0.35), transparent 70%);
    animation: goldPulse 2.5s ease-in-out infinite;
    z-index: 0;
}

/* Animations */
@keyframes goldRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes goldPulse {
    0%   { opacity: 0.4; }
    50%  { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* Hover Luxury Effect */
.dmk-fab:hover {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .dmk-fab {
        width: 48px;
        height: 48px;
    }

    .dmk-fab img {
        width: 45px;
        height: 45px;
    }
}


/* ================= WHY FLIP CARDS ================= */

.why-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.flip-card {
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 200px;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-card.flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    backdrop-filter: blur(15px);
    border: 1px solid rgba(212,175,55,0.3);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    backface-visibility: hidden;
    padding: 20px;
}

.flip-front h3 {
    font-size: 36px;
    color: #d4af37;
    letter-spacing: 2px;
}

.flip-back {
    transform: rotateY(180deg);
}

.flip-back p {
    color: #e6e6e6;
    font-size: 16px;
    line-height: 1.6;
}

/* ==============================
   PREMIUM BRAND MARQUEE
============================== */

.brand-marquee {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
}

/* Pause animation on hover */
.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}

/* Square Tile */
.brand-tile {
    min-width: 160px;
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);

    border: 2px solid rgba(212,175,55,0.7);
    border-radius: 18px;

    box-shadow: 
        0 0 15px rgba(212,175,55,0.3),
        0 0 35px rgba(212,175,55,0.15);

    transition: all 0.4s ease;
}

/* Logo */
.brand-tile img {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    filter: brightness(1);
    transition: 0.3s ease;
}

/* Hover Effect */
.brand-tile:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 0 25px rgba(255,215,122,0.7),
        0 0 60px rgba(212,175,55,0.4);
}

.brand-tile:hover img {
    filter: brightness(1.1);
}

/* Infinite Scroll Animation */
@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* GOOGLE REVIEWS */

.reviews-wrapper{
overflow:hidden;
margin-top:40px;
}

.reviews-track{
display:flex;
gap:25px;
animation:scrollReviews 40s linear infinite;
}

.review-card{
min-width:320px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
border-radius:15px;
padding:25px;
border:1px solid rgba(255,215,0,0.2);
}

.review-head{
display:flex;
align-items:center;
gap:15px;
margin-bottom:10px;
}

.review-head img{
width:45px;
height:45px;
border-radius:50%;
}

.review-head h4{
color:#fff;
margin:0;
font-size:16px;
}

.stars{
color:#FFD700;
font-size:14px;
}

.review-text{
color:#ddd;
font-size:14px;
line-height:1.5;
}

@keyframes scrollReviews{

0%{transform:translateX(0)}
100%{transform:translateX(-50%)}

}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.review-card{
background:#111;
padding:25px;
border-radius:10px;
border:1px solid #c8a23c;
}

.stars{
color:#c8a23c;
margin-bottom:10px;
}

.review-btn{
display:inline-block;
background:#c8a23c;
color:#000;
padding:12px 26px;
border-radius:6px;
font-weight:600;
text-decoration:none;
transition:0.3s ease;
margin-top:20px;
}

.review-btn:hover{
background:#e5c35c;
transform:translateY(-2px);
}

.kitchen-card{
color:#c8a23c;
}

.kitchen-card:visited{
color:#c8a23c;
}

.kitchen-card:hover{
color:#e5c35c;
}
