/* ============================================
   IFRA AL Dayury - Custom Stylesheet
   Color Scheme: Gold #C8962E / Dark #1A1A2E
   ============================================ */

:root {
    --gold: #C8962E;
    --gold-light: #e6b84d;
    --gold-dark: #a67a1e;
    --dark: #1A1A2E;
    --dark-light: #16213E;
    --text-dark: #2D2D2D;
    --text-muted: #6c757d;
    --bg-light: #F8F5F0;
    --bg-white: #FFFFFF;
    --border-light: #e8e0d4;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
}

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

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

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
}

.top-bar-info span {
    margin-right: 20px;
    display: inline-block;
}

.top-bar-info i {
    color: var(--gold);
    margin-right: 6px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    font-size: 0.9rem;
}

.top-bar-social a:hover { color: var(--gold); }

/* ---- Navbar ---- */
#mainNavbar {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

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

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px !important;
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

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

.btn-gold-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 4px 15px rgba(200,150,46,0.3);
}

.btn-gold-nav:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,150,46,0.4);
    color: #fff !important;
}

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(200,150,46,0.3);
    transition: var(--transition);
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200,150,46,0.4);
    color: #fff;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.btn-dark-custom {
    background: var(--dark);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-dark-custom:hover {
    background: var(--dark-light);
    color: #fff;
    transform: translateY(-3px);
}

/* ---- Section Styles ---- */
.section-padding { padding: 100px 0; }

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

.section-title .subtitle {
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-title .title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 15px auto 20px;
    border-radius: 2px;
}

/* ---- Hero Slider ---- */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(22,33,62,0.7) 50%, rgba(200,150,46,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span { color: var(--gold-light); }

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* ---- About Section (Home) ---- */
.about-section { background: var(--bg-white); }

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(200,150,46,0.3);
}

.about-img-badge h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.about-img-badge p {
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-text h2 { margin-bottom: 20px; font-size: 2.5rem; }

.about-text .lead {
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-item i {
    width: 40px;
    height: 40px;
    background: rgba(200,150,46,0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,150,46,0.15), transparent);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(200,150,46,0.15);
    border: 2px solid rgba(200,150,46,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--gold-light);
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.stat-item p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- Products Section ---- */
.products-section { background: var(--bg-light); }

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-card-body {
    padding: 25px;
}

.product-card-body h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.product-card:hover .product-card-body h5 { color: var(--gold); }

.product-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-card-link:hover { color: var(--gold-dark); gap: 10px; }

/* ---- Category Cards ---- */
.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img { transform: scale(1.1); }

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(200,150,46,0.9) 0%, rgba(200,150,46,0.3) 100%);
}

.category-overlay h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.category-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ---- Why Choose Us ---- */
.why-section { background: var(--bg-white); }

.why-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    height: 100%;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200,150,46,0.1), rgba(200,150,46,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.why-card:hover .icon-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
}

.why-card h5 { margin-bottom: 12px; font-size: 1.15rem; }

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---- Testimonials ---- */
.testimonials-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '\201C';
    position: absolute;
    top: 30px;
    left: 5%;
    font-size: 20rem;
    color: rgba(200,150,46,0.06);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    margin: 20px 10px;
}

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

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-author-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-author h6 {
    margin-bottom: 2px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gold);
}

/* ---- CTA Banner ---- */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200,150,46,0.12), transparent);
    border-radius: 50%;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ---- Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,150,46,0.1), transparent);
    border-radius: 50%;
}

.page-banner h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
}

.page-banner .breadcrumb {
    justify-content: center;
    position: relative;
}

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

.page-banner .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ---- About Page ---- */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--gold);
    z-index: 2;
}

.timeline-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }

.value-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
}

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

.value-card .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200,150,46,0.1), rgba(200,150,46,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--gold);
}

/* ---- Product Filter ---- */
.product-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.product-filter .filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.product-filter .filter-btn:hover,
.product-filter .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ---- Product Detail ---- */
.product-detail-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product-detail-info h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.product-detail-info .category-badge {
    display: inline-block;
    background: rgba(200,150,46,0.1);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ---- Gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.7), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

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

.gallery-item-overlay h6 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

/* ---- Contact Page ---- */
.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

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

.contact-info-card .icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(200,150,46,0.1), rgba(200,150,46,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
}

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

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

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 45px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(200,150,46,0.15);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); }

.footer-top { padding: 80px 0 40px; }

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-widget h5 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    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.9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

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

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 33px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(200,150,46,0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ---- Placeholder Image ---- */
.placeholder-img {
    background: linear-gradient(135deg, #f0e6d2, #e8dcc8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    width: 100%;
    height: 100%;
}

/* ---- Alert Custom ---- */
.alert-custom {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2.2rem; }
    .navbar-collapse { background: #fff; padding: 15px; border-radius: 12px; margin-top: 10px; box-shadow: var(--shadow); }
    .btn-gold-nav { width: 100%; text-align: center; margin-top: 10px; }
    .top-bar { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-content { width: calc(100% - 60px); margin-left: 50px !important; }
}

@media (max-width: 767px) {
    .hero-slider, .hero-slide { height: 70vh; min-height: 450px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .section-padding { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; }
    .stat-item h3 { font-size: 2rem; }
    .footer-top { padding: 50px 0 20px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .page-banner h1 { font-size: 2rem; }
    .page-banner { padding: 80px 0 50px; }
    .contact-form-wrapper { padding: 25px; }
    .cta-section h2 { font-size: 1.8rem; }
}

@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}
