/* 
========================================================================
   Maara Granites Private Limited - Premium Luxury Industrial Stylesheet
========================================================================
   Colors: Dark Obsidian (#0a0a0a), Industrial Slate (#161616), 
           Luxurious Gold (#d4af37), Elegant Pale White (#f9f9f9)
   Fonts: Playfair Display (Serif Headings), Montserrat (Sans Body)
========================================================================
*/

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

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #121212;
    --card-dark: #181818;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b89025;
    --accent-gold-rgb: 212, 175, 55;
    --granite-red: #8c1d1d;
    --granite-red-hover: #a62424;
    --granite-red-dark: #520f0f;
    --light-grey: #f1f5f9;
    --body-text-dark: #cbd5e1; /* Premium high-contrast slate-grey */
    --body-text-light: #2b2b2b;
    --white: #ffffff;
    --section-padding: 5rem 0;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.7;
    font-weight: 400;
}

p {
    color: var(--body-text-dark);
    font-weight: 400;
}

.text-body-dark {
    color: var(--body-text-dark) !important;
}

/* Global legibility override: bump Bootstrap's 50% opacity white text to 80% on dark layout */
.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-muted {
    color: #94a3b8 !important; /* Soft slate-grey for subtle yet highly readable hierarchy */
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* Selection Highlight */
::selection {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* ==========================================
   UTILITY & STRUCTURAL STYLES
   ========================================== */
.section-padding {
    padding: var(--section-padding);
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-dark-obsidian {
    background-color: var(--primary-dark);
}

.bg-slate-grey {
    background-color: var(--secondary-dark);
}

.bg-pure-white {
    background-color: var(--white);
    color: var(--body-text-light);
}

.bg-pure-white h1, 
.bg-pure-white h2, 
.bg-pure-white h3, 
.bg-pure-white h4, 
.bg-pure-white h5, 
.bg-pure-white h6 {
    color: var(--primary-dark);
}

.bg-pure-white p {
    color: var(--body-text-light);
}

.gold-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1.5rem 0;
}

.gold-divider.mx-auto {
    margin: 1.5rem auto;
}

/* ==========================================
   BUTTONS & ACTIONS (CHISELED GRANITE BLOCK DESIGN)
   ========================================== */
.btn-granite, .btn-gold {
    background: linear-gradient(135deg, var(--granite-red) 0%, var(--granite-red-dark) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0.9rem 2.2rem;
    border: 2px solid var(--granite-red);
    border-radius: 0; /* Clean, heavy 90-degree square-cut blocks */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    /* 3D Chiseled Stone Block effect */
    box-shadow: 4px 4px 0px #3a0000, 6px 6px 12px rgba(0, 0, 0, 0.5), inset 1px 1px 0px rgba(255, 255, 255, 0.2);
}

.btn-granite::before, .btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--granite-red-dark) 0%, var(--primary-dark) 100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-granite:hover, .btn-gold:hover {
    color: var(--white);
    border-color: var(--granite-red-hover);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #3a0000, 8px 8px 18px rgba(140, 29, 29, 0.4), inset 1px 1px 0px rgba(255, 255, 255, 0.3);
}

.btn-granite:hover::before, .btn-gold:hover::before {
    left: 0;
}

.btn-granite:active, .btn-gold:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #3a0000, 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-outline-granite, .btn-outline-gold {
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0.9rem 2.2rem;
    border: 2px solid var(--granite-red);
    border-radius: 0; /* Clean, heavy 90-degree square-cut blocks */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3), inset 0 0 0 rgba(0, 0, 0, 0);
}

.btn-outline-granite::before, .btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--granite-red) 0%, var(--granite-red-dark) 100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-outline-granite:hover, .btn-outline-gold:hover {
    color: var(--white);
    border-color: var(--granite-red-hover);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #3a0000, 8px 8px 18px rgba(140, 29, 29, 0.3);
}

.btn-outline-granite:hover::before, .btn-outline-gold:hover::before {
    left: 0;
}

.btn-outline-granite:active, .btn-outline-gold:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px #3a0000, 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   NAVIGATION BAR & HEADER
   ========================================== */
.top-bar {
    background-color: #050505;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.top-bar a {
    color: #a0a0a0;
}

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

.navbar-luxury {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.navbar-luxury.navbar-scrolled {
    padding: 0.6rem 0;
    background-color: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand-img {
    height: 80px;
    transition: var(--transition-smooth);
}

.navbar-luxury.navbar-scrolled .navbar-brand-img {
    height: 40px;
}

.navbar-luxury .nav-link {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

.navbar-luxury .nav-link:hover::after, 
.navbar-luxury .nav-link.active::after {
    width: calc(100% - 2.4rem);
}

.navbar-toggler-luxury {
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    padding: 0.35rem 0.6rem;
}

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

.navbar-toggler-luxury .toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO BANNER SLIDER (SWIPER)
   ========================================== */
.hero-slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.6) 100%);
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 7s ease-out;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease 0.5s;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    border: 1px solid var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 700px;
    color: #ffffff;
}

/* Custom Swiper Controls */
.swiper-button-luxury {
    color: var(--accent-gold) !important;
    width: 60px !important;
    height: 60px !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.6);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.swiper-button-luxury:hover {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    border-color: var(--accent-gold);
}

.swiper-button-luxury::after {
    font-size: 1.25rem !important;
}

.swiper-pagination-luxury .swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.4;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    transition: var(--transition-smooth);
}

.swiper-pagination-luxury .swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    opacity: 1;
    transform: scale(1.2);
}

/* ==========================================
   PAGE BANNER / INNER HERO
   ========================================== */
.page-banner {
    position: relative;
    padding: 10rem 0 6rem 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.4));
    z-index: 1;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.breadcrumb-luxury {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.breadcrumb-luxury a {
    color: var(--accent-gold);
}

.breadcrumb-luxury .breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(212, 175, 55, 0.4);
    content: " \f105 " !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding: 0 10px;
}

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

/* ==========================================
   ABOUT US LAYOUTS
   ========================================== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .main-image {
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-image-wrapper .accent-border {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--accent-gold);
    z-index: -1;
    pointer-events: none;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1.5rem 2rem;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

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

.about-experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Elegant Bullet Points */
.gold-check-list {
    list-style: none;
    padding-left: 0;
}

.gold-check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.gold-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 2px;
}

/* ==========================================
   QUARRY CARDS & SLATE CARDS
   ========================================== */
.quarry-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
    overflow: hidden;
}

.quarry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.quarry-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.quarry-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.quarry-card:hover .quarry-image-container img {
    transform: scale(1.08);
}

.quarry-location-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quarry-body {
    padding: 2rem;
}

.quarry-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quarry-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #a0a0a0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.quarry-capacity strong {
    color: var(--white);
}

.btn-card {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
}

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

.btn-card:hover {
    color: var(--white);
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* ==========================================
   WHY CHOOSE US (VALUES & COUNTERS)
   ========================================== */
.value-box {
    background-color: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    height: 100%;
}

.value-box:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background-color: #1c1c1c;
    transform: translateY(-5px);
}

.value-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.value-box:hover .value-icon-container {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.value-icon-container i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.value-box:hover .value-icon-container i {
    color: var(--primary-dark);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--body-text-dark);
}

/* Dynamic Counter Layout */
.counter-section {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6rem 0;
}

.counter-box {
    text-align: center;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.counter-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-grey);
}

/* ==========================================
   CLIENTS & TESTIMONIALS
   ========================================== */
.client-logo-wrapper {
    background-color: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: var(--transition-smooth);
}

.client-logo-wrapper:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background-color: #161616;
}

.client-logo-wrapper .client-logo {
    max-height: 50px;
    filter: grayscale(1) brightness(0.65) contrast(1.2);
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.client-logo-wrapper:hover .client-logo {
    filter: grayscale(0) brightness(1) contrast(1);
    opacity: 1;
}

/* Testimonial Box */
.testimonial-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.05);
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    margin-right: 15px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-company {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   MASONRY FILTERABLE GALLERY
   ========================================== */
.gallery-filters {
    margin-bottom: 3rem;
}

.btn-filter {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    margin: 0 0.25rem 0.5rem 0.25rem;
    transition: var(--transition-smooth);
    position: relative;
}

.btn-filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    width: 0;
    height: 2px;
    background-color: var(--granite-red);
    transition: var(--transition-smooth);
}

.btn-filter.active {
    color: var(--granite-red);
}

.btn-filter.active::after {
    width: calc(100% - 3rem);
}

/* Gallery Grid */
.gallery-item {
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

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

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

.gallery-icon-btn {
    width: 50px;
    height: 50px;
    background-color: var(--granite-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.gallery-overlay h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-box:hover .gallery-overlay h5 {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.15s;
}

.gallery-box:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Gallery Item Filter Animations */
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   CONTACT US FORM & MAP LAYOUTS
   ========================================== */
.contact-info-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.contact-info-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-details p, 
.contact-info-details a {
    font-size: 0.9rem;
    color: var(--body-text-dark);
    margin-bottom: 0;
}

/* Form Styles */
.form-luxury .form-control,
.form-luxury .form-select {
    background-color: #141414;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0;
    color: var(--white);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
    background-color: #1a1a1a;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    outline: none;
    color: var(--white);
}

.form-luxury label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-grey);
    margin-bottom: 0.5rem;
}

.map-placeholder-container {
    position: relative;
    width: 100%;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================
   TIMELINE (ABOUT PAGE)
   ========================================== */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
    padding: 2rem 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(212, 175, 55, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-block {
    position: relative;
    margin-bottom: 4rem;
    clear: both;
}

.timeline-block::after {
    content: "";
    display: table;
    clear: both;
}

.timeline-pointer {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-gold);
    border: 3px solid var(--primary-dark);
    border-radius: 50%;
    top: 25px;
    left: 50%;
    margin-left: -8px;
    z-index: 5;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-content {
    position: relative;
    width: 45%;
    background-color: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.timeline-block:nth-child(even) .timeline-content {
    float: right;
}

.timeline-block:nth-child(odd) .timeline-content {
    float: left;
    text-align: right;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--body-text-dark);
    margin-bottom: 0;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-container::after {
        left: 30px;
    }
    .timeline-pointer {
        left: 30px;
        margin-left: -8px;
    }
    .timeline-content {
        width: calc(100% - 60px);
        float: right !important;
        text-align: left !important;
    }
}

/* ==========================================
   LIGHTBOX CUSTOM MODAL STYLE
   ========================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-gold);
    text-decoration: none;
}

.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 80%;
    margin: auto;
}

.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.25);
    animation: zoomIn 0.35s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.95); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-caption {
    margin: 1.5rem auto 0 auto;
    width: 80%;
    text-align: center;
    color: #ccc;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 1rem;
    opacity: 0.5;
}

.lightbox-nav-btn:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer-luxury {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 5rem 0 2rem 0;
    color: #a0a0a0;
}

.footer-luxury h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-luxury .footer-logo-img {
    height: 55px;
    margin-bottom: 1.5rem;
}

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: #a0a0a0;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

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

.footer-links a:hover {
    color: var(--accent-gold);
}

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

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #a0a0a0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background-color: var(--granite-red);
    color: var(--white);
    border-color: var(--granite-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: 0.75rem;
}

.footer-bottom a {
    color: #a0a0a0;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* ==========================================
   RESPONSIVENESS ADJUSTMENTS
   ========================================== */
@media (max-width: 991px) {
    .navbar-luxury {
        background-color: rgba(10, 10, 10, 0.98);
        padding: 0.2rem 0;
    }
    .navbar-luxury .nav-link {
        padding: 0.8rem 1rem !important;
    }
    .navbar-luxury .nav-link::after {
        display: none;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .about-image-wrapper .main-image {
        width: 100%;
        margin-bottom: 2.5rem;
    }
    .about-image-wrapper .accent-border {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .counter-number {
        font-size: 2.5rem;
    }
}

/* ==========================================
   FIXED FLOATING CONTACT BUTTONS (WHATSAPP & CALL)
   ========================================== */
.fixed-contact-buttons {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    top: auto !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    z-index: 999999 !important; /* Promoted to sit on top of all AOS and Swiper 3D transform layers */
    transform: translate3d(0, 0, 0) !important; /* Hardware-accelerated GPU layer promotion for instant rendering on mobile viewports */
    -webkit-transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 1.6rem;
    transition: var(--transition-smooth);
    position: relative;
    text-decoration: none !important;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: var(--white);
}

.float-btn-whatsapp {
    background-color: #25d366;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
}

.float-btn-call {
    background-color: var(--granite-red);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn-call:hover {
    box-shadow: 0 10px 30px rgba(140, 29, 29, 0.5);
    background-color: var(--granite-red-hover);
    color: var(--white);
}

/* Tooltips for fixed buttons */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile responsive alignment */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        bottom: 20px !important;
        right: 20px !important;
        top: auto !important;
        left: auto !important;
        gap: 10px;
        position: fixed !important;
        display: flex !important;
        z-index: 999999 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .float-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .float-btn::before {
        display: none; /* Hide tooltips on mobile */
    }
}


.fs-5 {
    font-size: 1.05rem !important;
}

.me-3 {
    margin-right: 0.5rem !important;
}