/* ===== Floating WhatsApp Button ===== */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.float-whatsapp .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.float-whatsapp .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.float-whatsapp:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .float-whatsapp .tooltip {
        display: none;
    }
}

/* Make sure the button is above other elements */
.float-whatsapp {
    z-index: 9999;
}

/* ===== Analog Clock Styles ===== */
.analog-clock {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 
                inset 0 0 15px rgba(0, 0, 0, 0.4),
                0 0 0 4px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 1rem;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-3px);
}

.hand {
    width: 50%;
    height: 3px;
    background: #D4AF37;
    position: absolute;
    top: 50%;
    transform-origin: 100%;
    transform: rotate(90deg);
    transition: transform 0.05s cubic-bezier(0.4, 2.3, 0.6, 1);
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.hour-hand {
    width: 35%;
    left: 15%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37);
    z-index: 3;
}

.min-hand {
    width: 45%;
    left: 5%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F9E0A0);
    z-index: 2;
}

.second-hand {
    width: 48%;
    left: 2%;
    height: 2px;
    background: #fff;
    z-index: 1;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.center-dot {
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border: 2px solid #F9E0A0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Clock numbers */
.clock-face::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    background: #D4AF37;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Business hours styling */
.business-hours {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.business-hours strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 5px;
}

.business-hours strong::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .analog-clock {
        width: 130px;
        height: 130px;
    }
    
    .business-hours {
        font-size: 0.85rem;
    }
}

/* Custom Luxury Gold Theme */
:root {
    --primary: #D4AF37; /* Gold */
    --secondary: #B8860B; /* Dark Goldenrod */
    --gold-light: #FFD700; /* Light Gold */
    --gold-dark: #996515; /* Dark Gold */
    --dark-bg: #1a1a1a; /* Dark background */
    --light-text: #ffffff; /* White text */
    --dark-text: #333333; /* Dark text */
}

/* Base Styles */
body {
    color: var(--dark-text);
    background-color: #ffffff;
}

/* Buttons */
.btn-primary {
    color: #000;
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    color: #000;
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    color: #000;
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Modern Luxury Hero Section */
.luxury-hero {
    position: relative;
    min-height: 100vh;
    background-color: #0B0B0B;
    color: #fff;
    overflow: hidden;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

/* About Section */
.about-section {
    background-color: #0B0B0B;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(200, 169, 81, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(200, 169, 81, 0.1);
    transition: transform 0.5s ease;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

/* Glass Card Effect */
.glass-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(200, 169, 81, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Section Title */
.section-title {
    margin-bottom: 2rem;
    position: relative;
}

.section-title h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #F2F2F2, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #C8A951);
    margin: 1.5rem 0;
}

/* About Text */
.about-text {
    color: rgba(242, 242, 242, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

/* Feature Items */
.about-features {
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #D4AF37;
}

.feature-item h5 {
    color: #F2F2F2;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-item p {
    color: rgba(242, 242, 242, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 100px 0;
    }
    
    .about-content {
        text-align: center;
        margin-top: 3rem;
    }
    
    .gold-line {
        margin: 1.5rem auto;
    }
    
    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,11,11,0.95) 0%, rgba(17,17,17,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 81, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #F2F2F2, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(242, 242, 242, 0.8);
}

/* Hero Buttons */
.btn-gold {
    background: linear-gradient(45deg, #D4AF37, #C8A951);
    color: #0B0B0B;
    border: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #0B0B0B;
}

.btn-outline-gold {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #F2F2F2;
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(200, 169, 81, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(242, 242, 242, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #D4AF37, transparent);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #D4AF37;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .luxury-hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-subtitle::before {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: -15px;
        width: 40px;
        height: 3px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-gold,
    .btn-outline-gold {
        width: 100%;
        max-width: 250px;
        margin: 0;
    }
    
    .hero-image-container {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-gold,
    .btn-outline-gold {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Section Headings */
.title h5 {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.title h1 {
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.title h1::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

/* Service Items */
.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-item .service-text {
    padding: 30px;
}

/* Testimonials */
.testimonial-item {
    background: #2a2a2a;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
    color: #fff;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Contact Form */
.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

/* Footer */
.bg-dark {
    background-color: #1a1a1a !important;
    color: #fff;
}

.footer a {
    color: #fff;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 5px;
    }
    
    .service-item {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Custom Utility Classes */
.text-gold {
    color: var(--primary) !important;
}

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

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