/* Rumelkon - Modern & Minimalist Premium Styling */

:root {
    --primary-color: #bfa17a;
    /* Soft Premium Bronze/Gold */
    --primary-dark: #ad8f68;
    --primary-light: #f2ebd9;
    --dark-bg: #0f0f0f;
    /* Pitch Black/Charcoal */
    --dark-surface: #181818;
    --dark-border: #2a2a2a;
    --light-bg: #FAF7F2;
    /* Very soft luxury cream */
    --light-surface: #ffffff;
    --light-border: #eae4d8;
    --text-light-primary: #f5f5f5;
    --text-light-secondary: #a0a0a0;
    --text-dark-primary: #1e1e1e;
    /* Soft dark charcoal */
    --text-dark-secondary: #6e6b64;
    /* Soft warm gray */
    --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);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
}

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

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

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

/* Glassmorphism Navbar (Adapted for Corporate Logo with #faf7f2 background) */
.navbar-premium {
    background-color: #faf7f2 !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-premium.scrolled {
    padding: 0.6rem 0;
    background-color: #faf7f2 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-premium .navbar-brand img.logo-img {
    height: 76px;
    width: auto;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.navbar-premium.scrolled .navbar-brand img.logo-img {
    height: 60px;
}

.navbar-premium .nav-link {
    color: #1e1e1e !important;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem !important;
    position: relative;
    opacity: 0.9;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    opacity: 1;
    color: var(--primary-color) !important;
}

.navbar-premium .nav-link-social {
    color: #1e1e1e !important;
}

.navbar-premium .nav-link-social:hover {
    color: var(--primary-color) !important;
}

.navbar-premium .nav-link-search {
    color: #1e1e1e !important;
}

.navbar-premium .nav-link-search:hover {
    color: var(--primary-color) !important;
}

.navbar-premium .btn-outline-light {
    color: #1e1e1e !important;
    border-color: rgba(0, 0, 0, 0.25) !important;
}

.navbar-premium .btn-outline-light:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

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

.navbar-premium .nav-link-social::after,
.navbar-premium .nav-link-search::after {
    display: none !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

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

.toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #1e1e1e !important;
    display: block;
    position: relative;
    transition: var(--transition-smooth);
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: #1e1e1e !important;
    display: block;
    position: absolute;
    transition: var(--transition-smooth);
}

.toggler-icon::before {
    top: -6px;
}

.toggler-icon::after {
    bottom: -6px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background-color: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 991.98px) {
    .navbar-premium .navbar-collapse {
        background-color: #faf7f2 !important;
        padding: 1.5rem;
        border-top: 1px solid rgba(197, 168, 128, 0.2);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        margin-top: 0.8rem;
    }
}



/* Premium Buttons */
.btn-premium {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

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

.btn-premium-gold:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--text-light-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-premium-outline:hover {
    background-color: var(--text-light-primary);
    color: #121212;
    border-color: var(--text-light-primary);
}

.btn-premium-dark-outline {
    background-color: transparent;
    color: var(--text-dark-primary);
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.btn-premium-dark-outline:hover {
    background-color: var(--text-dark-primary);
    color: var(--light-bg);
    border-color: var(--text-dark-primary);
}

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

.bg-dark-section {
    background-color: var(--dark-bg);
    color: var(--text-light-primary);
}

.bg-dark-section p {
    color: var(--text-light-secondary);
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Dark Theme specific overrides for titles */
.bg-dark-section .section-title {
    color: var(--text-light-primary);
}

/* Hero Section */
.hero-slider-section {
    height: 100vh;
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.45) 0%, rgba(15, 15, 15, 0.65) 100%);
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-light-primary);
    margin-bottom: 25px;
}

.hero-title span {
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--text-light-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Custom Hero Controls (For 7 Slides) */
.hero-indicators {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-indicator-btn {
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-indicator-btn.active {
    width: 45px;
    background-color: var(--primary-color);
}

/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border: 1px solid var(--light-border);
}

.bg-dark-section .video-container {
    border-color: var(--dark-border);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.video-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.35);
    border: none;
    margin-bottom: 20px;
}

/* Compensating triangle play icon centering alignment offset */
html[dir="ltr"] .video-play-btn i {
    margin-left: 5px;
}

html[dir="rtl"] .video-play-btn i {
    margin-right: 5px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.5);
    background-color: var(--primary-dark);
}

.video-container.playing .video-overlay-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Cards & Grid Blocks */
.premium-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bg-dark-section .premium-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bg-dark-section .premium-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.card-link i {
    transition: var(--transition-smooth);
}

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

html[dir="rtl"] .card-link:hover i {
    transform: translateX(-5px);
}

/* Rich service list items styles */
.service-rich-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.service-rich-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: var(--text-dark-secondary);
}

.bg-dark-section .service-rich-list li {
    color: var(--text-light-secondary);
}

.service-rich-list li strong {
    color: var(--text-dark-primary);
}

.bg-dark-section .service-rich-list li strong {
    color: var(--text-light-primary);
}

html[dir="ltr"] .service-rich-list li {
    padding-left: 20px;
}

html[dir="ltr"] .service-rich-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

html[dir="rtl"] .service-rich-list li {
    padding-right: 20px;
    padding-left: 0;
}

html[dir="rtl"] .service-rich-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Stats Block */
.stat-box {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--primary-color);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light-secondary);
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark-secondary);
    padding: 5px 15px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.bg-dark-section .filter-btn {
    color: var(--text-light-secondary);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary-color);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.filter-btn.active::after {
    transform: scaleX(1);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 380px;
    cursor: pointer;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 30%, rgba(15, 15, 15, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

/* Dynamic visual cues for lightboxes on hover */
.portfolio-overlay::before {
    content: "\f00e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: var(--transition-smooth);
}

html[dir="rtl"] .portfolio-overlay::before {
    right: auto;
    left: 30px;
    transform: translate(10px, 10px);
}

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

.portfolio-item:hover .portfolio-overlay::before {
    opacity: 1;
    transform: translate(0, 0);
}

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

.portfolio-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 1.4rem;
    color: var(--text-light-primary);
    margin-bottom: 5px;
}

/* Call to Action Banner */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.85);
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-light-primary);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-light-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Contact Info Layout */
.contact-info-card {
    background-color: var(--light-surface);
    border: 1px solid var(--light-border);
    padding: 40px;
    margin-bottom: 30px;
}

.bg-dark-section .contact-info-card {
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-border);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-text {
    font-size: 1.05rem;
}

.contact-info-text a {
    transition: var(--transition-smooth);
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

/* Form Styles */
.form-group-premium {
    margin-bottom: 25px;
    position: relative;
}

.form-control-premium {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--light-border);
    border-radius: 0;
    padding: 12px 5px;
    color: var(--text-dark-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.bg-dark-section .form-control-premium {
    border-bottom: 1px solid var(--dark-border);
    color: var(--text-light-primary);
}

.form-control-premium:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-label-premium {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark-secondary);
    display: block;
    margin-bottom: 0px;
}

.bg-dark-section .form-label-premium {
    color: var(--text-light-secondary);
}

.form-feedback-message {
    padding: 15px;
    margin-top: 20px;
    display: none;
    font-size: 0.9rem;
}

/* Footer Styling */
.footer-premium {
    background-color: #080808;
    color: var(--text-light-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-premium p {
    color: var(--text-light-secondary);
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
    width: auto;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

html[dir="rtl"] .footer-links a:hover {
    padding-right: 5px;
    padding-left: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-light-secondary);
}

.footer-bottom a {
    color: var(--text-light-secondary);
}

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

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

html[dir="rtl"] .whatsapp-widget {
    right: auto;
    left: 30px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Scroll to Top Button style */
.scroll-to-top-btn {
    position: fixed;
    bottom: 110px;
    /* Offset from bottom, above the WhatsApp widget */
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-surface);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

html[dir="rtl"] .scroll-to-top-btn {
    right: auto;
    left: 30px;
}

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

.scroll-to-top-btn:hover {
    background-color: var(--primary-color);
    color: #121212;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Lightbox Popup Modal design */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: block;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 75vh;
    object-fit: contain;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-light-primary);
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text-light-primary);
    font-size: 36px;
    font-weight: 300;
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 10000;
}

html[dir="rtl"] .lightbox-close {
    right: auto;
    left: 30px;
}

.lightbox-close:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Map iFrame */
.map-container {
    height: 400px;
    border: 1px solid var(--light-border);
    position: relative;
}

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

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .navbar-premium {
        padding: 0.8rem 1.2rem;
    }

    .navbar-collapse {
        background-color: #0f0f0f;
        margin-top: 15px;
        padding: 20px;
        border-top: 1px solid var(--dark-border);
    }

    .navbar-premium .nav-link {
        padding: 0.8rem 0 !important;
    }

    .navbar-premium .nav-link::after {
        left: 0;
        right: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .navbar-premium .navbar-brand img.logo-img {
        height: 80px;
        /* Scaled down logo on tablet/mobile screens */
    }

    .navbar-premium.scrolled .navbar-brand img.logo-img {
        height: 64px;
    }

    .video-container {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .navbar-premium .navbar-brand img.logo-img {
        height: 72px;
        /* Scaled down logo on mobile */
    }

    .navbar-premium.scrolled .navbar-brand img.logo-img {
        height: 56px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    html[dir="rtl"] .whatsapp-widget {
        right: auto;
        left: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .scroll-to-top-btn {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    html[dir="rtl"] .scroll-to-top-btn {
        right: auto;
        left: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    html[dir="rtl"] .lightbox-close {
        right: auto;
        left: 20px;
    }
}

/* ==========================================================================
   Soft & Light Premium Luxury Theme Overrides
   ========================================================================== */

/* 1. Body & Base Font Colors */
body {
    background-color: var(--light-bg);
    color: var(--text-dark-primary);
}

/* 2. Hero Section Light & Soft Override */
.hero-slide::after {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(15, 15, 15, 0.35) 45%, rgba(250, 247, 242, 0.95) 100%) !important;
}

.hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Light Outline Button for Hero */
.hero-content-wrapper .btn-premium-outline {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.hero-content-wrapper .btn-premium-outline:hover {
    background-color: #ffffff !important;
    color: #121212 !important;
}

.hero-indicator-btn {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

.hero-indicator-btn.active {
    background-color: var(--primary-color) !important;
}

/* 3. Dark Section to Soft Light Section Overrides */
.bg-dark-section {
    background-color: #f2ebd9 !important;
    /* Soft warm luxury beige/sand */
    color: var(--text-dark-primary) !important;
}

.bg-dark-section p,
.bg-dark-section .text-muted,
.bg-dark-section .service-rich-list li {
    color: var(--text-dark-secondary) !important;
}

.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4,
.bg-dark-section h5,
.bg-dark-section h6,
.bg-dark-section .text-white,
.bg-dark-section .section-title,
.bg-dark-section .card-title,
.bg-dark-section .contact-info-text,
.bg-dark-section .contact-info-text a {
    color: var(--text-dark-primary) !important;
}

.bg-dark-section .premium-card {
    background: #ffffff !important;
    border: 1px solid var(--light-border) !important;
}

.bg-dark-section .premium-card .card-title {
    color: var(--text-dark-primary) !important;
}

.bg-dark-section .premium-card:hover {
    box-shadow: 0 20px 40px rgba(184, 154, 108, 0.08) !important;
    border-color: var(--primary-color) !important;
}

.bg-dark-section .service-rich-list li strong {
    color: var(--text-dark-primary) !important;
}

/* Outline Buttons in Soft Light Sections */
.bg-dark-section .btn-premium-outline {
    border-color: var(--text-dark-primary) !important;
    color: var(--text-dark-primary) !important;
}

.bg-dark-section .btn-premium-outline:hover {
    background-color: var(--text-dark-primary) !important;
    color: #ffffff !important;
}

/* Form Styling in Soft Light Sections */
.bg-dark-section .form-control-premium {
    border-bottom: 1px solid var(--light-border) !important;
    color: var(--text-dark-primary) !important;
}

.bg-dark-section .form-control-premium:focus {
    border-color: var(--primary-color) !important;
}

.bg-dark-section .form-label-premium {
    color: var(--text-dark-secondary) !important;
}

.bg-dark-section .contact-info-card {
    background-color: #ffffff !important;
    border: 1px solid var(--light-border) !important;
}

/* 4. Statistics Section Overlay */
.bg-dark-section .stats-overlay {
    background-color: rgba(250, 247, 242, 0.88) !important;
    /* Soft light cream overlay */
}

/* Stats label text styling when section becomes light */
.bg-dark-section .stat-label {
    color: var(--text-dark-secondary) !important;
}

/* Video Section Overlay & Icon */
.bg-dark-section .video-container {
    border-color: var(--light-border) !important;
}

.bg-dark-section .video-play-btn {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.bg-dark-section .video-play-btn:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Catalog Button Custom Styling in Header */
.btn-catalog-nav {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: var(--transition-smooth) !important;
}

.btn-catalog-nav:hover {
    background-color: var(--primary-color) !important;
    color: #121212 !important;
    border-color: var(--primary-color) !important;
}

/* Search Overlay & Trigger Styles */
.nav-link-search {
    transition: var(--transition-smooth) !important;
}

.nav-link-search:hover {
    color: var(--primary-color) !important;
}

.search-close-btn:hover {
    color: #ffffff !important;
}

/* Premium Pagination Styles */
.pagination-premium .page-item .page-link {
    background-color: var(--dark-surface);
    color: var(--text-light-secondary);
    border: 1px solid var(--dark-border);
    padding: 10px 18px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.pagination-premium .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #121212 !important;
}

.pagination-premium .page-item .page-link:hover {
    background-color: #242424;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination-premium .page-item.disabled .page-link {
    background-color: #121212;
    color: #444444;
    border-color: var(--dark-border);
}

/* Premium Blog Card Hover Image Zoom */
.premium-card:hover .blog-card-img {
    transform: scale(1.06);
}

/* Social Share Component Styling */
.social-share-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--light-border) !important;
    transition: var(--transition-smooth);
}

.btn-share-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-dark-primary);
    background-color: #ffffff;
    border: 1px solid var(--light-border);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-share-icon:hover {
    transform: translateY(-4px);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-share-icon.btn-wa:hover { background-color: #25D366 !important; border-color: #25D366 !important; }
.btn-share-icon.btn-fb:hover { background-color: #1877F2 !important; border-color: #1877F2 !important; }
.btn-share-icon.btn-x:hover { background-color: #000000 !important; border-color: #000000 !important; }
.btn-share-icon.btn-li:hover { background-color: #0A66C2 !important; border-color: #0A66C2 !important; }
.btn-share-icon.btn-pin:hover { background-color: #E60023 !important; border-color: #E60023 !important; }
.btn-share-icon.btn-ig:hover { background-color: #E4405F !important; border-color: #E4405F !important; }
.btn-share-icon.btn-tt:hover { background-color: #000000 !important; border-color: #000000 !important; }
.btn-share-icon.btn-yt:hover { background-color: #FF0000 !important; border-color: #FF0000 !important; }
.btn-share-icon.btn-hz:hover { background-color: #4CBD6B !important; border-color: #4CBD6B !important; }
.btn-share-icon.btn-be:hover { background-color: #1769FF !important; border-color: #1769FF !important; }
.btn-share-icon.btn-go:hover { background-color: #4285F4 !important; border-color: #4285F4 !important; }
.btn-share-icon.btn-link:hover { background-color: var(--primary-color) !important; border-color: var(--primary-color) !important; }