/* ===============================
   GLOBAL RESET ENHANCEMENTS
================================= */

/* ===== REMOVE SCROLL GLITCH / BLUE LINES ===== */
html, body {
    overflow-x: hidden;
}

/* Remove default scrollbars styling issues (optional clean look) */
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* ===== GLOBAL BACKGROUND FIX ===== */
html, body {
    
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
section {
    max-width: 100%;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}


html {
    scroll-behavior: smooth;
}

body {
    letter-spacing: 0.2px;
}

/* ===============================
   SCROLLBAR (PREMIUM LOOK)
================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E5C76B;
}

/* ===============================
   TEXT SELECTION
================================= */

::selection {
    background: #D4AF37;
    color: #000;
}

/* ===============================
   IMAGE STYLING
================================= */

img {
    transition: transform 0.5s ease, opacity 0.3s ease;
}

img:hover {
    transform: scale(1.03);
}

/* ===============================
   BUTTON ENHANCEMENTS
================================= */

button, a {
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.9;
}

/* ===============================
   SECTION SPACING IMPROVEMENT
================================= */

section {
    position: relative;
}

/* ===============================
   FADE-IN ANIMATION
================================= */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   GOLD GLOW EFFECT
================================= */

.gold-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ===============================
   CARD HOVER EFFECT
================================= */

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===============================
   HERO TEXT ANIMATION
================================= */

.hero-title {
    animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   LINK UNDERLINE ANIMATION
================================= */

.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.link-underline:hover::after {
    width: 100%;
}

.logo-bounce {
    animation: logoBounce 2.4s ease-in-out infinite;
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.whatsapp-float {
  animation: float 2.5s ease-in-out infinite;
}