/* ============================================================
   Blessed Gadi — style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --gold:        #D4AF37;
    --gold-hover:  #b5952f;
    --black:       #050505;
    --dark-grey:   #111111;
    --light-grey:  #1a1a1a;
    --text-pure:   #ffffff;
    --text-light:  #F8F8F8;
    --text-silver: #CCCCCC;
    --transition:  all 0.3s ease;
    --wa-number:   1234567890;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body, html {
    background-color: var(--black);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Playfair Display', serif;
    color: var(--text-pure);
}

p            { color: var(--text-light); line-height: 1.7; }
a            { text-decoration: none; }
img          { max-width: 100%; }

.text-gold   { color: var(--gold) !important; }
.text-muted  { color: var(--text-silver) !important; }
.bg-black    { background-color: var(--black); }
.bg-dark-grey  { background-color: var(--dark-grey); }
.bg-light-grey { background-color: var(--light-grey); }
.letter-spacing-2 { letter-spacing: 2px; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: padding 0.3s ease;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.navbar-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--gold);
    transition: var(--transition);
    padding: 14px 35px;
    border-radius: 0;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-gold:hover,
.btn-gold:focus {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--gold);
    transition: var(--transition);
    padding: 14px 35px;
    border-radius: 0;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline-gold:hover,
.btn-outline-gold:focus {
    background-color: var(--gold);
    color: var(--black);
}

.btn-cta-dark {
    border: 2px solid var(--black);
    color: var(--black);
    background-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 40px;
    border-radius: 0;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-cta-dark:hover,
.btn-cta-dark:focus {
    background-color: var(--black);
    color: var(--gold);
}

/* ── Hero Carousel ──────────────────────────────────────────── */
.hero-carousel {
    height: 100vh;
    min-height: 600px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.carousel-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.92) 20%, rgba(5,5,5,0.3) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-pure);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 650px;
    letter-spacing: 0.5px;
    color: var(--text-light);
    line-height: 1.7;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--gold);
    width: 40px;
    height: 3px;
    border-radius: 0;
    opacity: 0.4;
    border: none;
    transition: opacity 0.3s ease;
}
.carousel-indicators .active { opacity: 1; }

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

/* ── Sections ───────────────────────────────────────────────── */
section { padding: 120px 0; }

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-pure);
    font-weight: 700;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--gold);
    margin: 0 auto 40px;
    display: block;
}
.divider.left { margin: 0 0 40px; }

/* ── Experience Image ───────────────────────────────────────── */
.experience-img-frame {
    border: 1px solid var(--gold);
    padding: 10px;
    line-height: 0;
}
.experience-img-frame img { display: block; width: 100%; }

/* ── Feature Cards ──────────────────────────────────────────── */
.feature-box {
    padding: 50px 40px;
    background-color: var(--light-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
}
.feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background-color: #222;
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

/* ── Process Timeline ───────────────────────────────────────── */
.process-step {
    position: relative;
    padding-left: 75px;
    margin-bottom: 60px;
}
.process-number {
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.2);
    font-weight: 700;
    line-height: 1;
    user-select: none;
}
.process-content { position: relative; z-index: 1; }

/* ── Gallery Grid ───────────────────────────────────────────── */
.reel-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: var(--dark-grey);
    display: block;
    transition: border-color 0.3s ease;
}
.reel-item:hover { border-color: var(--gold); }

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.reel-item:hover img { transform: scale(1.06); }

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.reel-views {
    color: var(--text-pure);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-box {
    padding: 55px 45px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: var(--light-grey);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.6;
    margin-bottom: 20px;
    display: block;
}

.quote-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.85;
    font-style: italic;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
#faqAccordion .accordion-item {
    background: transparent;
    border: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

#faqAccordion .accordion-button {
    background-color: transparent;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 22px 0;
    box-shadow: none !important;
}

#faqAccordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background-color: transparent;
}

#faqAccordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(79%) sepia(45%) saturate(600%) hue-rotate(5deg);
}

#faqAccordion .accordion-body {
    color: var(--text-silver);
    padding: 0 0 22px 0;
    line-height: 1.8;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
    background-color: var(--gold);
    padding: 100px 0;
    text-align: center;
}
.cta-section h2 { color: var(--black); }
.cta-section p  { color: var(--black); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid #222; }

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-links { line-height: 2.2; }
.footer-links a {
    color: var(--text-silver);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
}
@media (min-width: 768px) { .social-links { justify-content: flex-end; } }

.social-links a {
    color: var(--text-silver);
    font-size: 1.3rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* ── Floating WhatsApp ──────────────────────────────────────── */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-wa:hover {
    transform: scale(1.12) translateY(-5px);
    background-color: #1ebe57;
    color: white;
}

/* ── Entrance Animations ────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-title    { font-size: 3.5rem; }
    .section-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .hero-carousel { height: 100svh; }
    .hero-title    { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2.2rem; }
    section        { padding: 80px 0; }
    .testimonial-box { padding: 40px 25px; }
    .feature-box   { padding: 35px 25px; }
    .process-step  { padding-left: 55px; }
}

@media (max-width: 480px) {
    .hero-title    { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .floating-wa   { width: 55px; height: 55px; font-size: 28px; bottom: 20px; right: 20px; }
    .btn-gold,
    .btn-outline-gold { padding: 12px 24px; }
}
