@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

section:not(#home) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}

img, video {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffb400;
}

/* ==================== GLASSMORPHISM & TYPOGRAPHY ==================== */
.glass-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 180, 0, 0.18);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(255, 180, 0, 0.5);
    box-shadow: 0 12px 30px -10px rgba(255, 180, 0, 0.3);
    transform: translateY(-5px);
}

.gold-heading, .gold-text {
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, #FFF099 0%, #FFB400 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-badge {
    color: #ffb400;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 180, 0, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 180, 0, 0.3);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.section-tagline {
    color: #ffb400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 180, 0, 0.15);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 180, 0, 0.6));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb400;
}

.header-btn {
    padding: 10px 22px;
    background: #ffb400;
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s ease;
}

.header-btn:hover {
    background: #ffffff;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    color: #ffb400;
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35)), url('images/Hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.stylish-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF099 0%, #FFB400 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.hero-subline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.hero-subline .gold-line {
    height: 2px;
    width: 35px;
    background: linear-gradient(90deg, #FFB400, transparent);
}

.hero-subline .sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
}

.live-slot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 180, 0, 0.12);
    border: 1px solid rgba(255, 180, 0, 0.35);
    color: #ffb400;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 51, 51, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-content h1 span {
    color: #ffb400;
}

.hero-content p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 14px 32px;
    background: #ffb400;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #ffb400;
    color: #ffb400;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffb400;
    color: #0d0d0d;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.hero-stats .stat {
    padding: 12px 24px;
    min-width: 110px;
    text-align: center;
}

.hero-stats h2 {
    font-size: 26px;
    color: #ffb400;
}

.hero-stats p {
    margin: 0;
    font-size: 12px;
    color: #ddd;
}

/* ==================== EXPANDED LUXURY ABOUT STYLING ==================== */
.about-section {
    padding: 100px 0;
    background-color: #0c0c0c;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 180, 0, 0.3);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating 12+ Experience Badge */
.about-experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 180, 0, 0.4);
    padding: 15px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffb400;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 110px;
    line-height: 1.3;
}

.about-text-box h2 {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-lead {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-lead strong {
    color: #ffb400;
}

.about-detail {
    color: #aaaaaa;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 180, 0, 0.15);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.highlight-item i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.highlight-item h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    color: #888888;
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
}

.about-list li {
    font-size: 0.9rem;
    color: #dddddd;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 90px 0;
    background-color: #080808;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
}

.service-content {
    padding: 25px 30px 30px;
    position: relative;
    margin-top: -30px;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 180, 0, 0.3);
    position: absolute;
    top: -20px;
    right: 25px;
    font-family: serif;
}

.service-content h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 22px;
}

.service-link {
    color: #ffb400;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 14px;
    color: #ffffff;
}

/* ==================== VIDEO SHOWCASE GRID ==================== */
.gallery-section {
    padding: 90px 0;
    background-color: #0a0a0a;
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.showcase-card {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: #0d0d0d;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transform: translateZ(0);
}

.showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 5;
}

.showcase-card:hover video {
    transform: scale(1.08);
}

.video-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 180, 0, 0.4);
    color: #ffb400;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.fx-gold-glow { border: 1px solid rgba(255, 180, 0, 0.25); }
.fx-gold-glow:hover { box-shadow: 0 10px 30px rgba(255, 180, 0, 0.3); border-color: #ffb400; }

.fx-cinematic { border: 1px solid rgba(255, 255, 255, 0.12); }
.fx-cinematic:hover { box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); }

.fx-glass-border { border: 1px solid rgba(255, 255, 255, 0.08); }
.fx-glass-border:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8); }

/* ==================== EXECUTIVE ESTIMATOR ==================== */
.estimator-section {
    padding: 90px 0;
}

.estimator-wrapper {
    padding: 35px;
    max-width: 1150px;
    margin: 40px auto 0;
    border: 1px solid rgba(255, 180, 0, 0.3);
    background: rgba(12, 12, 12, 0.85);
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 35px;
    align-items: start;
}

.control-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.input-group select {
    width: 100%;
    padding: 14px 16px;
    background: #000000;
    border: 1px solid rgba(255, 180, 0, 0.3);
    color: #ffffff;
    border-radius: 8px;
    outline: none;
}

.input-group input[type="range"] {
    width: 100%;
    accent-color: #ffb400;
    cursor: pointer;
}

.tier-selector {
    display: flex;
    gap: 10px;
}

.tier-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cccccc;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-btn.active, .tier-btn:hover {
    background: #ffb400;
    color: #000000;
    border-color: #ffb400;
    font-weight: 700;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    color: #dddddd;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.checkbox-card input {
    accent-color: #ffb400;
}

.glass-card-inner {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(255, 180, 0, 0.35);
    padding: 30px 25px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-badge {
    color: #ffb400;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(255, 180, 0, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 180, 0, 0.25);
}

.price-display {
    margin-top: 10px;
    font-size: 2.8rem;
    font-weight: 800;
}

.price-num {
    color: #ffb400;
}

.price-subtext {
    font-size: 0.75rem;
    color: #888888;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 180, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.metric-card h4 {
    color: #ffffff;
    font-size: 0.95rem;
}

.metric-card span {
    color: #ffb400;
    font-size: 0.7rem;
}

.vip-inclusions-card {
    background: rgba(255, 180, 0, 0.04);
    border: 1px dashed rgba(255, 180, 0, 0.3);
    padding: 14px 18px;
    border-radius: 8px;
}

.vip-inclusions-card h5 {
    color: #ffb400;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.vip-inclusions-card ul {
    list-style-type: square;
    padding-left: 16px;
}

.vip-inclusions-card li {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 4px;
}

.gold-btn-full {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gold-btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 180, 0, 0.5);
}

.legal-disclaimer-box {
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.6);
    border-left: 3px solid #ffb400;
    border-radius: 6px;
    font-size: 0.72rem;
    color: #999999;
}

.legal-disclaimer-box strong {
    color: #ffb400;
}

/* ==================== QUIZ & REVIEWS SECTION ==================== */
.quiz-section, .reviews-section {
    padding: 90px 0;
}

.quiz-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 45px 35px;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.quiz-opt-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-opt-btn:hover {
    background: #ffb400;
    color: #000;
}

.quiz-badge {
    background: rgba(255, 180, 0, 0.12);
    color: #ffb400;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 180, 0, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.quiz-action-wrap {
    margin-top: 25px;
}

.quiz-action-wrap a.gold-btn-wa, #quizWaBtn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 14px 32px !important;
    border-radius: 30px !important;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.4) !important;
}

/* 6 REVIEWS GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: #dddddd;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    color: #ffb400;
    font-size: 1.05rem;
}

.client-info span {
    color: #888888;
    font-size: 0.85rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #121212 0%, #050505 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 187, 0, 0.1);
    border: 1px solid rgba(255, 187, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb400;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.whatsapp-card {
    border-color: rgba(35, 211, 102, 0.3);
}

.whatsapp-icon {
    background: rgba(35, 211, 102, 0.15);
    color: #25d366;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 5px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 187, 0, 0.3);
}

.contact-form-col {
    padding: 35px 30px;
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    outline: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffb400, #e09d00);
    color: #000000;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #050505;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 180, 0, 0.1);
    color: #888888;
    font-size: 14px;
}

.developer-credit {
    margin-top: 8px;
    font-size: 12px;
    color: #ffb400;
}

/* ==================== COCKTAIL GLASS SCROLL TO TOP ==================== */
.cocktail-scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 180, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cocktail-scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cocktail-scroll-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 180, 0, 0.7);
    border-color: #ffb400;
}

.glass-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cocktail-glass-icon {
    font-size: 1.5rem;
    color: #ffb400;
    transition: transform 0.3s ease;
}

.scroll-arrow-icon {
    position: absolute;
    font-size: 0.8rem;
    color: #000;
    opacity: 0;
    transition: all 0.3s ease;
}

.cocktail-scroll-btn:hover .cocktail-glass-icon {
    transform: rotate(-15px) scale(0.8);
}

.cocktail-scroll-btn:hover .scroll-arrow-icon {
    opacity: 1;
    color: #ffb400;
    transform: translateY(-2px);
}

.bubble {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 180, 0, 0.6);
    border-radius: 50%;
    bottom: 10px;
    animation: rise 2s infinite ease-in;
}

.bubble.b1 { left: 18px; animation-delay: 0.2s; }
.bubble.b2 { right: 18px; animation-delay: 0.7s; }

@keyframes rise {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-30px); opacity: 0; }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: #ffb400;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
}

.cursor-glow {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.18) 0%, rgba(255, 180, 0, 0) 70%);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* ==================== RESPONSIVE RULES ==================== */
@media (max-width: 960px) {
    .contact-container, .about-content, .estimator-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-only-btn, .custom-cursor, .cursor-glow {
        display: none !important;
    }
    .hamburger-menu {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        padding: 40px 25px;
        transition: 0.3s ease;
    }
    .nav-links.active {
        right: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}