/* ==========================================
   CAPTUREZA PHOTOGRAPHY - CUSTOM STYLESHEET
   ========================================== */

/* Design Tokens & Custom Variables */
:root {
    --bg-primary: #FDFBF7;
    --bg-secondary: #FFFFFF;
    --bg-cream: #FAF5EB;
    --text-dark: #1B1A18;
    --text-muted: #5A5956;
    --text-light: #8E8D89;
    --color-gold: #BCA374;
    --color-gold-hover: #A58B5C;
    --color-gold-light: #FAF6ED;
    --border-color: #EAE3D5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global & Reset Styles */
body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 500;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
}

::selection {
    background-color: var(--color-gold);
    color: var(--bg-secondary);
}

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

/* Common Layout Utilities */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

.section-tag {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-bottom: 0.5rem;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 15px 0;
}

/* Button & Link System */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 0px;
    transition: var(--transition-smooth);
    padding: 0.8rem 1.8rem;
}

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

.btn-gold:hover, .btn-gold:focus {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 163, 116, 0.3);
}

.btn-dark {
    background-color: var(--text-dark);
    color: var(--bg-secondary);
    border: 1px solid var(--text-dark);
}

.btn-dark:hover, .btn-dark:focus {
    background-color: transparent;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 26, 24, 0.15);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline-dark:hover, .btn-outline-dark:focus {
    background-color: var(--text-dark);
    color: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-xs {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.btn-link-gold {
    color: var(--color-gold);
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-link-gold:hover {
    color: var(--color-gold-hover);
    padding-left: 5px;
}

/* Header & Glassmorphism Navbar */
.navbar-wrapper {
    transition: var(--transition-smooth);
    z-index: 1050;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar-wrapper.scrolled {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.navbar-brand .logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    display: block;
    line-height: 1;
}

.navbar-brand .logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-gold);
    display: block;
    line-height: 1.5;
}

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

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

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

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

.tel-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.tel-link:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero-section {
    background-color: #12110F;
    min-height: 100vh;
    position: relative;
}

/* Ensure Owl Carousel stretches to full viewport height to prevent black background gap on mobile */
.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
    height: 100vh !important;
    min-height: 100vh !important;
}

.hero-carousel .item {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1);
}

/* Ken Burns Zoom Effect */
.owl-item.active .hero-slide-bg {
    animation: kenBurnsZoom 10s ease-out forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 17, 15, 0.85) 0%, rgba(18, 17, 15, 0.5) 60%, rgba(18, 17, 15, 0.3) 100%);
    z-index: -1;
}

@media (max-width: 991px) {
    .hero-slide-overlay {
        background: rgba(18, 17, 15, 0.75);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-weight: 700;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 12px;
    text-align: left;
    margin-top: 0;
    z-index: 20;
}

.hero-carousel .owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.hero-carousel .owl-dots .owl-dot.active span {
    width: 25px !important;
    border-radius: 4px !important;
    background: var(--color-gold) !important;
}

@media (max-width: 991px) {
    .hero-carousel .owl-dots {
        position: relative;
        left: auto;
        bottom: auto;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
    }
    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-carousel .owl-stage,
    .hero-carousel .owl-item,
    .hero-carousel .item {
        height: auto !important;
        min-height: auto !important;
    }
    .hero-carousel .item {
        flex-direction: column;
    }
    .hero-section .min-vh-100 {
        min-height: auto !important;
    }
    .hero-section .row.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 0 !important;
    }
    .hero-content-col.pt-5 {
        padding-top: 0.5rem !important;
    }
    /* Mobile Hero Buttons & Spacing Fixes */
    .hero-cta {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        margin-bottom: 0 !important;
    }
    .hero-cta .btn {
        flex: 1;
        padding: 0.8rem 0.5rem !important;
        font-size: 0.75rem !important;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-carousel .owl-dots {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Organic / Architectural Hero Masking */
.hero-image-wrapper {
    position: relative;
    width: 85%;
    max-width: 480px;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 8px solid var(--bg-secondary);
}

.hero-img {
    transition: transform 6s ease;
    object-fit: cover;
    aspect-ratio: 4/5;
    width: 100%;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.08);
}

/* Floating Stats on Hero */
.hero-stats-panel {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 1200px) {
    .hero-stats-panel {
        right: 0px;
    }
}

@media (max-width: 991px) {
    .hero-image-wrapper {
        width: 100%;
        margin-bottom: 50px;
    }
    .hero-stats-panel {
        position: relative;
        transform: none;
        top: 0;
        right: 0;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    min-width: 220px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(188, 163, 116, 0.15);
    border-color: rgba(188, 163, 116, 0.3);
}

.stat-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-gold-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.4rem;
}

.stat-number {
    font-weight: 700;
    font-size: 1.4rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.rating-stars {
    font-size: 0.7rem;
    display: flex;
    gap: 2px;
}

/* About Us Section */
.about-image-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
    border-radius: 30px 200px 30px 30px;
    overflow: hidden;
    border: 8px solid var(--bg-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.about-img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--color-gold);
    color: var(--bg-secondary);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(188, 163, 116, 0.4);
    border: 4px solid var(--bg-secondary);
    z-index: 5;
    animation: floatAnimation 3s ease-in-out infinite;
}

.badge-years {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 600;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.social-circle-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-circle-link:hover {
    background-color: var(--color-gold);
    color: var(--bg-secondary);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

/* Services Section */
.service-card {
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-img-container {
    aspect-ratio: 4/5;
    background: var(--bg-secondary);
}

.service-img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.service-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-title {
    color: var(--color-gold) !important;
}

.service-desc {
    font-size: 0.85rem;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-desc, .service-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
}

.service-card:hover .service-desc,
.service-card:hover .service-actions {
    opacity: 1;
    transform: translateY(0);
    max-height: 150px;
    margin-top: 10px;
}

/* Mobile Service Card Styling */
@media (max-width: 575.98px) {
    .service-card-title {
        font-size: 1.1rem;
    }
    
    .service-overlay {
        padding: 1.5rem !important;
    }
    
    .service-actions .btn {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
        letter-spacing: 0.5px;
    }
    
    /* Make desc/actions always visible on mobile since hover doesn't exist natively */
    .service-desc, .service-actions {
        opacity: 1;
        transform: translateY(0);
        max-height: 150px;
    }
}

/* Counter Items */
.counter-item {
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.counter-item:hover {
    transform: scale(1.05);
}

.counter-number {
    font-family: var(--font-heading);
    font-weight: 700;
}

.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stories Section */
.story-card {
    transition: var(--transition-smooth);
    background: var(--bg-secondary);
}

.story-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.story-card .card-title {
    font-weight: 700;
    line-height: 1.3;
    transition: var(--transition-smooth);
}

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

/* Decorative Stamp Badge */
.stamp-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 130px;
    height: 130px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    border: 1px solid var(--border-color);
}

.stamp-title {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.stamp-mid {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.2;
}

/* Why Choose Us */
.choose-icon {
    width: 46px;
    height: 46px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
}

.border-gold-thick {
    border: 6px solid var(--bg-secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* CTA Banner Section */
.cta-banner-section {
    background: linear-gradient(135deg, #FAF6ED 0%, #FFFFFF 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
}

.cta-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: 0 5px 15px rgba(188, 163, 116, 0.2);
    flex-shrink: 0;
}

.cta-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.font-serif {
    font-family: var(--font-heading);
}

/* Videos Carousel Section (Behind the Lens) */
.video-card {
    aspect-ratio: 16/9;
}

.video-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-card:hover .video-cover-img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 26, 24, 0.1) 0%, rgba(27, 26, 24, 0.75) 100%);
    z-index: 2;
}

.video-time {
    background: rgba(27, 26, 24, 0.6);
    backdrop-filter: blur(4px);
    color: var(--bg-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(188, 163, 116, 0.9);
    border-radius: 50%;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(188, 163, 116, 0.5);
    animation: pulsePlay 2s infinite;
}

.video-play-btn:hover {
    background-color: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(188, 163, 116, 0);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(188, 163, 116, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(188, 163, 116, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(188, 163, 116, 0);
    }
}

/* Gallery Carousel with Lightbox */
.gallery-img-wrapper {
    aspect-ratio: 4/5;
    background-color: var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 5px solid var(--bg-secondary);
}

.gallery-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 26, 24, 0.6);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

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

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

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

/* Testimonials Carousel */
.testimonial-card {
    max-width: 800px;
    margin: 15px auto;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gold);
}

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

/* Contact Section & Map Filter */
.contact-section {
    background-color: var(--bg-secondary);
}

.min-vh-400 {
    min-height: 400px;
}

@media (max-width: 991.98px) {
    .map-col {
        min-height: 300px;
    }
}

.absolute-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Luxury Map Grayscale Cohesive Styling */
.map-iframe {
    filter: grayscale(1) contrast(1.15) opacity(0.8);
    transition: var(--transition-smooth);
}

.map-col:hover .map-iframe {
    filter: grayscale(0.2) contrast(1) opacity(0.95);
}

/* Contact Form Input Styling */
.form-control, .form-select {
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 0px;
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    transition: var(--transition-smooth);
    background-color: var(--bg-secondary);
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(188, 163, 116, 0.15);
    background-color: var(--bg-secondary);
}

.form-label {
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Footer Section */
.footer {
    background-color: #12110F !important;
}

.footer-menu li a {
    transition: var(--transition-smooth);
}

.footer-menu li a:hover {
    color: var(--color-gold) !important;
    padding-left: 4px;
}

.social-icon-footer {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon-footer:hover {
    background-color: var(--color-gold);
    color: var(--bg-secondary);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.footer-contact-info li i {
    flex-shrink: 0;
}

/* Back to Top Button styling */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--color-gold);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-smooth);
}

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

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

/* Owl Carousel Custom Navigation Design */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: var(--bg-secondary) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color) !important;
    color: var(--text-dark) !important;
    font-size: 1.5rem !important;
    line-height: 45px !important;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.owl-nav .owl-prev {
    left: -25px;
}

.owl-nav .owl-next {
    right: -25px;
}

@media (max-width: 991px) {
    .owl-nav button {
        display: none !important;
    }
}

.owl-dots {
    margin-top: 25px;
}

.owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #E2DDD5 !important;
    transition: var(--transition-smooth);
}

.owl-dots .owl-dot.active span {
    width: 25px !important;
    background: var(--color-gold) !important;
}

@media (max-width: 768px) {
    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-carousel .owl-stage,
    .hero-carousel .owl-item {
        height: auto !important;
        min-height: auto !important;
    }
    .hero-carousel .item {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        padding-top: 0 !important;
        padding-bottom: 40px !important;
        align-items: stretch !important;
        background-color: #12110F;
    }
    .hero-mobile-banner-wrapper {
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .hero-mobile-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
    .hero-slide-overlay {
        display: none !important;
    }
    .hero-section .row {
        min-height: auto !important;
        height: auto !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-top: 15px !important;
    }
    .hero-desc {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
    }
    .hero-content-col {
        padding-top: 15px !important;
    }
}

