/* =============================================
   PURE GOLD REFINERY (U) LTD — Premium Stylesheet
   Color Palette: Luxury Gold & Black
   ============================================= */

:root {
    --gold: #D4AF37;
    --gold-light: #F4E5B2;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E5B2 50%, #D4AF37 100%);
    --gold-gradient-dark: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    --black: #000000;
    --dark-bg: #0A0A0A;
    --dark-card: #111111;
    --dark-section: #0D0D0D;
    --dark-border: #1a1a1a;
    --white: #FFFFFF;
    --gray: #999999;
    --gray-light: #CCCCCC;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--gray-light);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 600;
}

/* =============================================
   TOP ACCENT BAR
   ============================================= */
.top-accent-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 10000;
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    top: 3px;
}

#mainNav.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
    height: 55px;
    transition: var(--transition);
}

#mainNav.scrolled .nav-logo {
    height: 42px;
}

#mainNav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--gold);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 60%;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black) !important;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold) !important;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 10px 30px;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35);
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(10,10,10,1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    width: 140px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 4px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-buttons .btn {
    padding: 14px 40px;
    margin: 5px 10px;
    font-size: 0.85rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll a {
    color: var(--gold);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PAGE HERO (Sub-pages)
   ============================================= */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(10,10,10,0.9) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-hero .breadcrumb-item a {
    color: var(--gold);
}

.page-hero .breadcrumb-item.active {
    color: var(--gray);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray);
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark-section);
}

.section-darker {
    background: var(--dark-card);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.section-heading .section-label::before,
.section-heading .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-heading .section-label::before { left: -20px; }
.section-heading .section-label::after { right: -20px; }

.section-heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto;
    border: none;
}

/* =============================================
   GOLD PRICE TICKER
   ============================================= */
.gold-ticker {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 15px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.ticker-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 500;
}

.ticker-item .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-body);
}

.ticker-item .change {
    font-size: 0.8rem;
    font-weight: 600;
}

.ticker-item .change.up { color: #00c853; }
.ticker-item .change.down { color: #ff1744; }

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section .intro-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.intro-section .intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.intro-section .intro-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
}

.intro-section .intro-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-section .intro-text p {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   SERVICES / FEATURES
   ============================================= */
.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =============================================
   FEATURED GALLERY (Home)
   ============================================= */
.featured-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.featured-gallery .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =============================================
   GALLERY PAGE (Masonry)
   ============================================= */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-grid .gallery-card {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-grid .gallery-card img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-grid .gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-grid .gallery-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-grid .gallery-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    font-size: 2rem;
    color: var(--gold);
}

/* =============================================
   VIDEO PAGE
   ============================================= */
.video-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--black);
}

.video-card .video-info {
    padding: 20px;
}

.video-card .video-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.video-card .video-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-content {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.9;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image-box {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

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

.about-image-box .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.value-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
    z-index: 1;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 40px;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.contact-form .form-control::placeholder {
    color: var(--gray);
}

.contact-form label {
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--gold);
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-info-card h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-card a {
    color: var(--gray-light);
}

.contact-info-card a:hover {
    color: var(--gold);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    filter: grayscale(80%) contrast(1.1) brightness(0.8);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(30%) contrast(1) brightness(0.9);
}

/* =============================================
   TRADINGVIEW WIDGET
   ============================================= */
.tradingview-section {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    overflow: hidden;
    min-height: 550px;
}

.tradingview-section .tradingview-widget-container {
    height: 550px;
}

.tradingview-section .tradingview-widget-container > div {
    height: 550px !important;
}

.tradingview-section .tradingview-widget-container iframe {
    height: 550px !important;
}

/* =============================================
   CURRENCY CONVERTER
   ============================================= */
.converter-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    padding: 30px;
}

.converter-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.converter-card .form-control,
.converter-card .form-select {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 12px;
}

.converter-card .form-control:focus,
.converter-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: none;
    color: var(--white);
}

.converter-result {
    text-align: center;
    padding: 20px;
    margin-top: 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.converter-result .amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
}

.cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(212,175,55,0.1) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-card);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 33px;
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 9998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #050505;
    position: relative;
}

.footer-gold-line {
    height: 2px;
    background: var(--gold-gradient);
}

.footer-logo {
    height: 65px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.88rem;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact li a {
    color: var(--gray);
}

.footer-contact li a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-tagline-bottom {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
    font-size: 0.9rem;
}

/* =============================================
   ALERT MESSAGES
   ============================================= */
.alert-success-gold {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    border-radius: 4px;
    padding: 15px 20px;
}

.alert-error {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: #ff8a80;
    border-radius: 4px;
    padding: 15px 20px;
}

/* =============================================
   GOLD SHIMMER EFFECT
   ============================================= */
.gold-shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner-gold {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199.98px) {
    .featured-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 220px);
    }

    .featured-gallery .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .featured-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .featured-gallery .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-grid {
        column-count: 2;
    }

    #mainNav .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        margin: 15px -12px -8px;
        padding: 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 0 0 8px 8px;
    }

    .intro-section .intro-image::after {
        display: none;
    }

    .intro-section .intro-image img {
        height: 350px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        display: block;
        margin: 8px auto;
        max-width: 250px;
    }

    .hero-logo {
        width: 100px;
    }

    .section {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .featured-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-grid {
        column-count: 1;
    }

    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-item .stat-number {
        font-size: 1.5rem;
    }

    .ticker-wrapper {
        gap: 15px;
    }

    .ticker-item {
        padding: 6px 12px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 23px;
        width: 36px;
        height: 36px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .intro-stats {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }
}
