/* ==========================================================================
   POOJAS - Raymond Exclusive Showroom
   Core Premium Style Sheet
   Author: Antigravity AI
   Color Palette: Raymond Blue (#0F2C59), Luxury Gold (#D4AF37),
                  Deep Dark (#111111), Off-White (#F8F9FA)
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --color-primary: #0F2C59;      /* Raymond Blue */
    --color-primary-dark: #0A1E3D; /* Deep Navy */
    --color-gold: #D4AF37;         /* Luxury Gold */
    --color-gold-hover: #B8932D;   /* Darker Gold */
    --color-accent: #C5A880;       /* Muted Gold/Champagne */
    --color-dark: #111111;         /* Off-Black */
    --color-dark-muted: #444444;   /* Dark Grey */
    --color-light: #F8F9FA;        /* Off-White */
    --color-light-accent: #F1F4F9; /* Very Light Blue-Gray */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(15, 44, 89, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(15, 44, 89, 0.08);
}

/* 2. Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

/* 3. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.loader-logo span {
    color: var(--color-gold);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--color-gold);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

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

/* 4. Top Header */
.top-header {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

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

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

/* 5. Sticky Navigation */
.navbar {
    background-color: #ffffff;
    padding: 18px 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.navbar-scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-primary) !important;
    text-transform: uppercase;
}

.navbar-brand span {
    color: var(--color-gold);
}

.navbar-brand-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--color-dark-muted);
    font-weight: 600;
    margin-top: -4px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 16px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

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

/* 6. Hero Section (Slider) */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: calc(100vh - 120px);
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 44, 89, 0.85) 0%, rgba(15, 44, 89, 0.4) 100%);
    z-index: 1;
}

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

.hero-badge {
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: capitalize;
}

.hero-title span {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
}

/* Buttons */
.btn-premium {
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-gold {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-navy {
    background-color: var(--color-primary);
    color: #ffffff;
    border: 1px solid var(--color-primary);
}

.btn-navy:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 44, 89, 0.2);
}

.btn-whatsapp-cta {
    background-color: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
}

.btn-whatsapp-cta:hover {
    background-color: #128C7E;
    color: #ffffff;
    border-color: #128C7E;
    transform: translateY(-3px);
}

/* 7. Section Titles */
.section-title-container {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

/* 8. About Company Section */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-main {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
}

.about-img-floating {
    position: absolute;
    width: 60%;
    right: 0;
    bottom: 0;
    border: 8px solid #ffffff;
    box-shadow: var(--shadow-medium);
    border-radius: 4px;
}

.about-experience-badge {
    position: absolute;
    left: -20px;
    top: 50px;
    background-color: var(--color-gold);
    color: var(--color-primary);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.about-experience-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
}

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

.highlight-list {
    list-style: none;
    margin-bottom: 30px;
}

.highlight-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.highlight-list li i {
    color: var(--color-gold);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* 9. Our Collections Card styles */
.collections-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.collection-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.3);
}

.collection-img-box {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.collection-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 44, 89, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collection-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.collection-card:hover .collection-title {
    color: var(--color-gold);
}

.collection-desc {
    font-size: 0.9rem;
    color: var(--color-dark-muted);
    margin-bottom: 20px;
}

.btn-learn-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    align-self: flex-start;
}

.btn-learn-more i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.btn-learn-more:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-learn-more:hover i {
    transform: translateX(4px);
}

/* 10. Our Services */
.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.service-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(15, 44, 89, 0.05);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--color-light-accent);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-dark-muted);
    transition: var(--transition-smooth);
    margin-bottom: 0;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* 11. Why Choose POOJAS */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    position: relative;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.why-choose-section .section-title {
    color: #ffffff;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.why-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

/* 12. Categories We Offer */
.categories-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 44, 89, 0.9) 0%, rgba(15, 44, 89, 0.1) 80%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.3) 100%);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
}

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

.category-info {
    position: relative;
    z-index: 3;
    color: #ffffff;
    width: 100%;
}

.category-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.category-card:hover .category-info p {
    opacity: 1;
    transform: translateY(0);
}

/* 13. Shopping Experience */
.experience-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.process-step-wrapper {
    position: relative;
}

/* Connecting line for process steps on larger screens */
@media (min-width: 992px) {
    .process-step-wrapper::after {
        content: '';
        position: absolute;
        width: 80%;
        height: 2px;
        background-color: rgba(15, 44, 89, 0.1);
        top: 40px;
        left: 10%;
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border: 3px solid var(--color-gold);
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.process-step:hover .process-number {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--color-dark-muted);
}

/* 14. Statistics Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: #ffffff;
    background-image: linear-gradient(rgba(15, 44, 89, 0.95), rgba(15, 44, 89, 0.95)), url('https://images.unsplash.com/photo-1556740758-90de374c12ad?q=80&w=1200&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* 15. Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery-filters {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filter-btn {
    background-color: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    height: 280px;
    cursor: pointer;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 44, 89, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
    padding: 20px;
    text-align: center;
}

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

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

.gallery-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-icon {
    transform: translateY(0);
}

.gallery-item-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition-smooth) 0.1s;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-cat {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-smooth) 0.2s;
}

.gallery-item:hover .gallery-item-cat {
    transform: translateY(0);
}

/* 16. Customer Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.testimonial-card {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
    margin: 15px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
}

.testimonial-stars {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.testimonial-profile {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-right: 15px;
}

.testimonial-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--color-dark-muted);
}

/* Testimonial slider indicators custom styling */
.carousel-indicators [data-bs-target] {
    background-color: var(--color-primary);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid transparent;
}

.carousel-indicators .active {
    background-color: var(--color-gold);
}

/* 17. FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.accordion-item {
    border: 1px solid rgba(15, 44, 89, 0.08);
    margin-bottom: 15px;
    border-radius: 6px !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    padding: 20px 25px;
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button::after {
    background-size: 1.25rem;
}

.accordion-body {
    padding: 25px;
    font-size: 0.92rem;
    color: var(--color-dark-muted);
    background-color: #ffffff;
    line-height: 1.8;
}

/* 18. Contact Section (Inquiry Form & Map) */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.contact-card-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-light-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--color-gold);
    color: var(--color-primary);
}

.contact-info-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.contact-form-box {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.form-control, .form-select {
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

/* 19. Google Map Section */
.map-section {
    position: relative;
    height: 450px;
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* 20. Footer Section */
.footer {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff !important;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-widget h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.footer-links a:hover i {
    transform: translateX(3px);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

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

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 21. Floating Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.btn-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-float:hover {
    transform: translateY(-5px) scale(1.05);
    color: #ffffff;
}

.btn-float-whatsapp {
    background-color: #25D366;
}

.btn-float-call {
    background-color: var(--color-gold);
}

.btn-float-email {
    background-color: var(--color-primary);
}

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

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

.btn-back-to-top:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-5px);
}

/* 22. Page Headers (Subpages) */
.page-header {
    background-color: var(--color-primary-dark);
    background-image: linear-gradient(rgba(10, 30, 61, 0.85), rgba(10, 30, 61, 0.85)), url('https://images.unsplash.com/photo-1594938298603-c8148c4dae35?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.breadcrumb-item.active {
    color: var(--color-gold);
}

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

/* Glassmorphism Cards Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-glass);
}

/* 23. Extra/Responsive Overrides */
@media (max-width: 991.98px) {
    .top-header {
        display: none; /* Hide top bar on tablet/mobile for clean layout */
    }
    .navbar {
        padding: 12px 0;
    }
    .hero-slide {
        height: 70vh;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .about-img-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }
    .about-experience-badge {
        left: 20px;
        top: 20px;
    }
    .page-header {
        padding: 70px 0;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-slide {
        height: 60vh;
        min-height: 480px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .contact-form-box, .contact-card-box {
        padding: 30px 20px;
    }
    .floating-actions {
        bottom: 20px;
        left: 20px;
    }
    .btn-float {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
