/* ===== Sivan Technologies - Frontend Styles ===== */

:root {
    --primary: #0d1b3e;
    --primary-dark: #09122e;
    --gold: #c9a84c;
    --gold-light: #dfc36a;
    --gold-dark: #a8882e;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #4a4a6a;
    --text-light: #8888a8;
    --border: #e8e8f0;
    --shadow: 0 5px 25px rgba(13, 27, 62, 0.08);
    --shadow-hover: 0 15px 50px rgba(13, 27, 62, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== Global Utility Classes ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.25);
}

/* ===== Section Spacing ===== */
.section-padding {
    padding: 90px 0;
}

.bg-light {
    background: var(--light) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-gold {
    background: var(--gold) !important;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 2px solid var(--gold);
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
}

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

.top-bar .contact-info span {
    margin-right: 1.5rem;
}

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

.top-bar .social-links a {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    margin-left: 6px;
    transition: var(--transition);
}

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

/* ===== Main Navigation ===== */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.main-nav.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.4s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    z-index: 9999;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.main-nav .navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.main-nav.nav-sticky .navbar-brand img {
    height: 45px;
}

.main-nav .navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.5rem 1rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px 2px 0 0;
}

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

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

.main-nav .nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.main-nav .nav-cta:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.main-nav .nav-cta::after {
    display: none !important;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .owl-stage-outer {
    overflow: hidden;
}

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

.hero-slider .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.4) 50%, rgba(13,27,62,0.2) 100%);
    z-index: 1;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 15px;
}

.hero-slider .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-slider .hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-slider .hero-content .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-slider .hero-content .btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.hero-slider .hero-content .btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.hero-slider .hero-content .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Owl Carousel Hero Overrides */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
    z-index: 3;
}

.hero-slider .owl-nav button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 1.3rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero-slider .owl-nav button:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    border-radius: 50%;
    display: block;
    transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* ===== About Section ===== */
.about-section .about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-section .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.about-section .about-image:hover img {
    transform: scale(1.03);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(201,168,76,0.3);
}

.about-section .about-image .experience-badge span {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-section .about-image .experience-badge small {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section .about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-section .about-content h2 span {
    color: var(--gold);
}

.about-section .about-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-section .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light);
    border-radius: 12px;
    transition: var(--transition);
}

.about-section .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-section .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.about-section .stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-section .btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.about-section .btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

/* ===== Categories Section ===== */
.categories-section .category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.categories-section .category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.categories-section .category-card .cat-image {
    height: 220px;
    overflow: hidden;
}

.categories-section .category-card .cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.categories-section .category-card:hover .cat-image img {
    transform: scale(1.1);
}

.categories-section .category-card .cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13,27,62,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-section .category-card:hover .cat-overlay {
    opacity: 1;
}

.categories-section .category-card .cat-overlay a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: var(--transition);
    transform: translateY(20px);
}

.categories-section .category-card:hover .cat-overlay a {
    transform: translateY(0);
}

.categories-section .category-card .cat-overlay a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.categories-section .category-card .cat-body {
    padding: 1.25rem;
    text-align: center;
}

.categories-section .category-card .cat-body h5 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.categories-section .category-card .cat-body small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Featured Products ===== */
.products-section .product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.products-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.products-section .product-card .prod-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.products-section .product-card .prod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.products-section .product-card:hover .prod-image img {
    transform: scale(1.1);
}

.products-section .product-card .prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.products-section .product-card .prod-badge.badge-new {
    background: #28a745;
    color: var(--white);
}

.products-section .product-card .prod-badge.badge-offer {
    background: #dc3545;
    color: var(--white);
}

.products-section .product-card .prod-body {
    padding: 1.25rem;
}

.products-section .product-card .prod-body .prod-brand {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-section .product-card .prod-body h5 {
    font-size: 1.05rem;
    margin: 0.4rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.products-section .product-card .prod-body .prod-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-section .product-card .prod-body .prod-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.products-section .product-card .prod-body .prod-price .old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.products-section .product-card .prod-body .prod-actions {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.products-section .product-card .prod-body .prod-actions .btn {
    flex: 1;
    font-size: 0.82rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.products-section .product-card .prod-body .prod-actions .btn-details {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    text-decoration: none;
    text-align: center;
}

.products-section .product-card .prod-body .prod-actions .btn-details:hover {
    background: transparent;
    color: var(--primary);
}

.products-section .product-card .prod-body .prod-actions .btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: 2px solid #25d366;
    text-decoration: none;
    text-align: center;
}

.products-section .product-card .prod-body .prod-actions .btn-whatsapp i {
    font-size: 1.6rem;
}

.products-section .product-card .prod-body .prod-actions .btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
}

/* ===== Services Section ===== */
.services-section .service-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.services-section .service-card .service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.services-section .service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.services-section .service-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.services-section .service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

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

.why-section .feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-section .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-section .feature-card .feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.why-section .feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--white);
}

.why-section .feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-section .feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--white);
}

.testimonials-section .testimonial-card {
    background: var(--light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin: 15px;
    position: relative;
    transition: var(--transition);
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonials-section .testimonial-card .quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(201,168,76,0.15);
}

.testimonials-section .testimonial-card .client-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--gold);
}

.testimonials-section .testimonial-card .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonials-section .testimonial-card .message {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonials-section .testimonial-card h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.testimonials-section .testimonial-card small {
    color: var(--text-light);
    font-size: 0.82rem;
}

.testimonials-section .owl-nav button {
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    font-size: 1rem !important;
    transition: var(--transition);
    margin: 0 5px;
}

.testimonials-section .owl-nav button:hover {
    background: var(--gold) !important;
}

.testimonials-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--border);
    border-radius: 50%;
    display: block;
    transition: var(--transition);
}

.testimonials-section .owl-dots .owl-dot.active span {
    background: var(--gold);
    width: 25px;
    border-radius: 5px;
}

/* ===== Brand Logos ===== */
.brands-section {
    background: var(--light);
}

.brands-section .brand-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.brands-section .brand-logo img {
    max-height: 50px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brands-section .brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Gallery Section ===== */
.gallery-section .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-section .gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,27,62,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-section .gallery-item .gallery-overlay a {
    color: var(--white);
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    transition: var(--transition);
    transform: scale(0.5);
}

.gallery-section .gallery-item:hover .gallery-overlay a {
    transform: scale(1);
}

.gallery-section .gallery-item .gallery-overlay a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ===== Blog Section ===== */
.blog-section .blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-section .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-section .blog-card .blog-image {
    height: 220px;
    overflow: hidden;
}

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

.blog-section .blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-section .blog-card .blog-body {
    padding: 1.5rem;
}

.blog-section .blog-card .blog-body .blog-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-section .blog-card .blog-body .blog-meta span {
    margin-right: 1rem;
}

.blog-section .blog-card .blog-body .blog-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.blog-section .blog-card .blog-body .blog-category {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-section .blog-card .blog-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-section .blog-card .blog-body h5 a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-section .blog-card .blog-body h5 a:hover {
    color: var(--gold);
}

.blog-section .blog-card .blog-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section .blog-card .blog-body .read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.blog-section .blog-card .blog-body .read-more i {
    transition: var(--transition);
    margin-left: 4px;
}

.blog-section .blog-card .blog-body .read-more:hover {
    color: var(--primary);
}

.blog-section .blog-card .blog-body .read-more:hover i {
    margin-left: 8px;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
    animation: ctaPulse 8s ease infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

.cta-section .cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section .cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-section .cta-content .btn {
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin: 0 8px;
}

.cta-section .cta-content .btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.cta-section .cta-content .btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.cta-section .cta-content .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

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

.whatsapp-float:hover {
    background: #1da851;
    color: var(--white);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

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

/* ===== Sticky Mobile Bar ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 8px 0;
}

.mobile-sticky-bar .sticky-item {
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    flex: 1;
    padding: 4px 6px;
    transition: var(--transition);
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-sticky-bar .sticky-item i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.mobile-sticky-bar .sticky-item:hover {
    color: var(--gold);
}

.mobile-sticky-bar .sticky-item.sticky-whatsapp {
    color: #25d366;
}
.mobile-sticky-bar .sticky-item.sticky-whatsapp i {
    font-size: 1.5rem;
}

.mobile-sticky-bar .sticky-item.sticky-phone {
    color: var(--primary);
}

.mobile-sticky-bar .sticky-item.sticky-enquiry {
    color: var(--gold);
}

@media (max-width: 767px) {
    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 65px;
    }

    .whatsapp-float {
        bottom: 75px;
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
        right: 15px;
    }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    padding-top: 70px;
}

.site-footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.site-footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.site-footer .footer-links li {
    margin-bottom: 0.6rem;
}

.site-footer .footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.site-footer .footer-links a i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.75rem;
}

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

.site-footer .footer-contact li {
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.site-footer .footer-social {
    margin-top: 1.5rem;
}

.site-footer .footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    margin-right: 8px;
    transition: var(--transition);
}

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

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.88rem;
}

.site-footer .footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== Newsletter Form ===== */
.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form .btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--gold-light);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 1199px) {
    .hero-slider .hero-slide { height: 70vh; }
    .hero-slider .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    .hero-slider .hero-slide { height: 60vh; min-height: 400px; }
    .hero-slider .hero-content h1 { font-size: 2.2rem; }
    .hero-slider .hero-content p { font-size: 1rem; }
    .top-bar .contact-info span { margin-right: 0.8rem; }
    .about-section .about-image { margin-bottom: 2rem; }
    .about-section .about-image .experience-badge {
        right: -10px;
        width: 110px;
        height: 110px;
    }
    .about-section .about-image .experience-badge span { font-size: 2rem; }
    .cta-section .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .section-padding { padding: 55px 0; }
    .section-title { font-size: 1.7rem; }
    .section-header { margin-bottom: 2.5rem; }
    .hero-slider .hero-slide { height: 50vh; min-height: 350px; }
    .hero-slider .hero-content { text-align: center; max-width: 100%; }
    .hero-slider .hero-content h1 { font-size: 1.8rem; }
    .hero-slider .hero-content p { font-size: 0.9rem; }
    .hero-slider .owl-nav { display: none; }
    .top-bar .contact-info span { font-size: 0.75rem; }
    .top-bar .social-links { display: none; }
    .main-nav .navbar-brand img { height: 40px; }
    .about-section .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
    .about-section .stat-item { padding: 1rem 0.5rem; }
    .about-section .stat-item h3 { font-size: 1.4rem; }
    .about-section .stat-item p { font-size: 0.78rem; }
    .about-section .about-image .experience-badge {
        right: 10px;
        bottom: -10px;
        width: 90px;
        height: 90px;
    }
    .about-section .about-image .experience-badge span { font-size: 1.5rem; }
    .about-section .about-image .experience-badge small { font-size: 0.65rem; }
    .cta-section { padding: 60px 0; }
    .cta-section .cta-content h2 { font-size: 1.5rem; }
    .cta-section .cta-content .btn { display: block; margin: 10px auto; width: 80%; }
}

@media (max-width: 575px) {
    .hero-slider .hero-slide { height: 45vh; min-height: 300px; }
    .hero-slider .hero-content h1 { font-size: 1.5rem; }
    .hero-slider .hero-content p { font-size: 0.85rem; }
    .main-nav .navbar-nav .nav-link { padding: 0.6rem 0; }
}

/* ===== Page Header / Breadcrumb ===== */
.page-header-section {
    background: var(--primary);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.page-header-section h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.page-header-section h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 1rem;
    border-radius: 2px;
}

.page-header-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header-section .breadcrumb .breadcrumb-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.page-header-section .breadcrumb .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

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

.page-header-section .breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
}

.page-header-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ===== Services Page ===== */
.services-page .service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.services-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.services-page .service-card .service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.services-page .service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services-page .service-card:hover .service-img img {
    transform: scale(1.1);
}

.services-page .service-card .service-icon-lg {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    font-size: 4rem;
    color: var(--gold);
    transition: var(--transition);
}

.services-page .service-card:hover .service-icon-lg {
    background: var(--gold);
    color: var(--white);
}

.services-page .service-card .service-body {
    padding: 1.5rem;
    text-align: center;
}

.services-page .service-card .service-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.services-page .service-card .service-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-page .service-card .service-body .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
}

.services-page .service-card .service-body .read-more-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Service Detail Page ===== */
.service-detail .detail-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-detail .detail-image img {
    width: 100%;
    border-radius: 16px;
}

.service-detail .detail-image .detail-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-detail h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-detail .detail-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 2rem;
}

.service-detail .detail-description p {
    margin-bottom: 1rem;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    background: var(--light);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--text);
    transition: var(--transition);
}

.features-list li:hover {
    background: rgba(201,168,76,0.1);
    transform: translateX(5px);
}

.features-list li i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* FAQs Accordion */
.faqs-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: var(--white);
}

.faq-accordion .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    box-shadow: none;
}

.faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: rgba(201,168,76,0.05);
}

.faq-accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-item .accordion-body {
    padding: 0.5rem 1.25rem 1.25rem;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ===== Sidebar Widgets ===== */
.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.sidebar-widget .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    position: relative;
}

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

.other-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-services-list li {
    margin-bottom: 0.5rem;
}

.other-services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 0.85rem;
    background: var(--light);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.other-services-list li a i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: var(--transition);
}

.other-services-list li a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.other-services-list li a:hover i {
    color: var(--gold);
}

/* Contact Info Sidebar */
.sidebar-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.sidebar-contact li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
}

.sidebar-contact li a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Quick Links Sidebar */
.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 0.5rem;
}

.quick-links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.quick-links-list li:last-child a {
    border-bottom: none;
}

.quick-links-list li a i {
    color: var(--gold);
    font-size: 0.75rem;
    transition: var(--transition);
}

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

/* Enquiry Form Sidebar */
.enquiry-form .form-control {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    transition: var(--transition);
}

.enquiry-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.enquiry-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.enquiry-form .btn-submit {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 0.65rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
}

.enquiry-form .btn-submit:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.enquiry-form .form-message {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.enquiry-form .form-message.text-success {
    color: #28a745;
}

.enquiry-form .form-message.text-danger {
    color: #dc3545;
}

/* ===== Gallery Page ===== */
.gallery-page .gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.gallery-page .gallery-filters .filter-btn {
    padding: 0.55rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-page .gallery-filters .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-page .gallery-filters .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.gallery-page .gallery-item-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.gallery-page .gallery-item-wrapper .gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-page .gallery-item-wrapper .gallery-thumb-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-page .gallery-item-wrapper .gallery-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-page .gallery-item-wrapper:hover .gallery-thumb-wrap img {
    transform: scale(1.1);
}

.gallery-page .gallery-item-wrapper .gallery-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-page .gallery-item-wrapper .gallery-overlay-content h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-page .gallery-item-wrapper:hover .gallery-overlay-content h5 {
    transform: translateY(0);
}

.gallery-page .gallery-item-wrapper .gallery-overlay-content span {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    transform: translateY(10px);
    transition: var(--transition) 0.05s;
}

.gallery-page .gallery-item-wrapper:hover .gallery-overlay-content span {
    transform: translateY(0);
}

.gallery-page .gallery-item-wrapper .gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    z-index: 2;
}

.gallery-page .gallery-item-wrapper:hover .gallery-overlay-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-page .gallery-item-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(201,168,76,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    z-index: 2;
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid rgba(255,255,255,0.3);
}

.gallery-page .gallery-item-wrapper:hover .play-button {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal .modal-content {
    background: transparent;
    border: none;
}

.video-modal .modal-body {
    padding: 0;
    position: relative;
}

.video-modal .btn-close {
    position: absolute;
    top: -35px;
    right: 0;
    color: var(--white);
    opacity: 1;
    filter: brightness(0) invert(1);
}

.video-modal .ratio {
    border-radius: 12px;
    overflow: hidden;
}

/* Gallery Pagination / Load More */
.gallery-page .load-more-wrap {
    text-align: center;
    margin-top: 1rem;
}

.gallery-page .btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 2.5rem;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-page .btn-load-more:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-page .btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Gallery masonry grid */
.gallery-masonry .gallery-col {
    padding: 0 0.75rem;
}

.gallery-masonry .gallery-item-wrapper {
    margin-bottom: 1.5rem;
}

.gallery-masonry .gallery-item-wrapper .gallery-thumb-wrap {
    border-radius: 12px;
}

.gallery-masonry .gallery-item-wrapper .gallery-thumb-wrap img {
    width: 100%;
    display: block;
}

/* Gallery item hidden state for filter */
.gallery-item-wrapper.gallery-hidden {
    display: none;
}

/* ===== CTA Section Inside Pages ===== */
.cta-inner-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.cta-inner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

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

.cta-inner-section .cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-inner-section .cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-inner-section .cta-content .btn {
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin: 0 8px;
}

.cta-inner-section .cta-content .btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.cta-inner-section .cta-content .btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.cta-inner-section .cta-content .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== Pagination ===== */
.pagination {
    gap: 5px;
}

.pagination .page-item .page-link {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    background: var(--white);
}

.pagination .page-item .page-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* ===== Page Banner / Breadcrumb ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.page-banner .breadcrumb-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.page-banner .breadcrumb-nav a:hover {
    color: var(--gold);
}

.page-banner .breadcrumb-nav i {
    font-size: 0.65rem;
    color: var(--gold);
}

.page-banner .breadcrumb-nav span {
    color: var(--gold-light);
}

.page-banner .page-title h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-banner .title-underline {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* ===== Contact Page ===== */
.contact-form-wrap {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-wrap .form-group {
    margin-bottom: 0;
}

.contact-form-wrap .form-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-form-wrap .form-control {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    transition: var(--transition);
}

.contact-form-wrap .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.contact-form-wrap textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.25);
}

.btn-gold:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline-light {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.contact-info-wrap h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .contact-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 12px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-info-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.contact-info-card p a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-social {
    margin-top: 1.5rem;
}

.contact-social h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-social .social-icons {
    display: flex;
    gap: 10px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social .social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.contact-whatsapp {
    margin-top: 1.5rem;
}

.btn-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-whatsapp-link:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.btn-whatsapp-link i {
    font-size: 1.8rem;
}

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

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

/* ===== About Page ===== */
.mission-vision-section .mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-vision-section .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mission-vision-section .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
}

.mission-vision-section .mission-card .mv-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 12px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.mission-vision-section .mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.mission-vision-section .mission-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .stats-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stats-section .stats-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.stats-section .stats-card .stats-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.stats-section .stats-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.stats-section .stats-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* ===== Team Section ===== */
.team-section .team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-section .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-section .team-card .team-image {
    height: 280px;
    overflow: hidden;
}

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

.team-section .team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-section .team-card .team-info {
    padding: 1.25rem;
    text-align: center;
}

.team-section .team-card .team-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-section .team-card .team-info span {
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 500;
}

/* ===== Blog Listing ===== */
.blog-card .blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card .blog-image .blog-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
    padding: 6px 12px;
    min-width: 55px;
    z-index: 2;
    line-height: 1.2;
}

.blog-card .blog-image .blog-date-badge .date-day {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.blog-card .blog-image .blog-date-badge .date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.blog-card .blog-image .blog-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Sidebar ===== */
.sidebar .sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar .sidebar-widget .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    position: relative;
}

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

.sidebar-search .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border);
}

.sidebar-search .form-control {
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.sidebar-search .form-control:focus {
    box-shadow: none;
}

.sidebar-search .btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
}

.sidebar-search .btn-search:hover {
    background: var(--gold);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--gold);
    padding-left: 5px;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 1rem;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recent-post-img {
    width: 70px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.recent-post-info h6 a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-info h6 a:hover {
    color: var(--gold);
}

.recent-post-info small {
    font-size: 0.78rem;
    color: var(--text-light);
}

.recent-post-info small i {
    color: var(--gold);
    margin-right: 4px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list a {
    display: inline-block;
    background: var(--light);
    color: var(--text);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag-list a:hover {
    background: var(--gold);
    color: var(--white);
}

/* ===== Pagination ===== */
.pagination .page-item .page-link {
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    margin: 0 3px;
    transition: var(--transition);
    background: var(--light);
}

.pagination .page-item .page-link:hover {
    background: var(--gold);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

/* ===== Blog Detail ===== */
.blog-article .article-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog-article .article-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-article .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-article .article-meta span i {
    color: var(--gold);
    margin-right: 6px;
}

.blog-article .article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
}

.blog-article .article-content p {
    margin-bottom: 1.2rem;
}

.blog-article .article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.blog-article .article-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-article .article-tags strong {
    color: var(--primary);
    font-size: 0.9rem;
}

.blog-article .article-tags .tag-link {
    display: inline-block;
    background: var(--light);
    color: var(--text);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--transition);
}

.blog-article .article-tags .tag-link:hover {
    background: var(--gold);
    color: var(--white);
}

.blog-article .article-share {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-article .article-share strong {
    color: var(--primary);
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0a66c2; }
.share-whatsapp { background: #25d366; }

.share-facebook:hover { background: #0d65d9; }
.share-twitter:hover { background: #1a91da; }
.share-linkedin:hover { background: #0954a0; }
.share-whatsapp:hover { background: #1da851; }

.blog-article .article-comments {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.blog-article .article-comments h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== Sidebar Newsletter ===== */
.sidebar-newsletter p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.sidebar-newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border);
}

.sidebar-newsletter-form .form-control {
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.sidebar-newsletter-form .form-control:focus {
    box-shadow: none;
}

.sidebar-newsletter-form .btn-gold {
    border-radius: 0;
    padding: 0.6rem 1.2rem;
    border: none;
}

/* ===== Blog Listing Responsive ===== */
@media (max-width: 767px) {
    .page-banner { padding: 80px 0 35px; }
    .page-banner .page-title h1 { font-size: 1.8rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .blog-article .article-meta { gap: 0.8rem; font-size: 0.82rem; }
}

/* ===== Lightbox Custom ===== */
.lb-loader, .lightbox { z-index: 99999 !important; }

/* ===== Owl Carousel overrides ===== */
.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

/* Floating Social Bar */
.floating-social-bar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-social-bar .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-social-bar .social-icon:hover {
    transform: scale(1.1) translateX(-5px);
    color: #fff;
    background-color: var(--gold);
}

/* Social Media Brand Colors */
.floating-social-bar .social-facebook {
    background-color: #1877F2;
}
.floating-social-bar .social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.floating-social-bar .social-youtube {
    background-color: #FF0000;
}
.floating-social-bar .social-twitter,
.floating-social-bar .social-x {
    background-color: #000000;
}
.floating-social-bar .social-linkedin {
    background-color: #0077b5;
}
.floating-social-bar .social-whatsapp {
    background-color: #25D366;
}
