/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation Links */
.nav-link {
    color: #C4C4C4;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #E31E24;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E31E24;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #E31E24 0%, #B8181D 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    padding: 10px 20px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF3B42 0%, #E31E24 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #E31E24;
    color: #E31E24;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-outline:hover {
    background: #E31E24;
    color: #fff;
}

/* Section Styles */
section {
    scroll-margin-top: 88px;
}

.section-label {
    display: inline-block;
    color: #E31E24;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.logo-container {
    display: inline-block;
    padding: 0 10px;
    background: white;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.85) 100%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: #E31E24;
    border-color: #E31E24;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-200 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-300 {
    animation-delay: 0.3s;
    opacity: 0;
}

/* Service Cards */
.service-card {
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
}

.service-card-content {
    padding: 1.5rem;
}

/* Services Slider */
.service-gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: all .4s ease;
}

.spaGallery .swiper-slide:hover .service-gallery-image {
    transform: scale(1.05);
}

.spaGallery {
    overflow: hidden;
}

.spaGallery .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
}

.spaGallery .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.spaGallery .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #8A8A8A;
    opacity: 1;
}

.spaGallery .swiper-pagination-bullet-active {
    background: #E31E24;
}

@media (max-width:768px) {
    .service-gallery-image {
        height: 220px;
    }
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .15));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonialSwiper {
    overflow: hidden;
    padding-bottom: 60px;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: #141414;
    border: 1px solid rgba(227, 30, 36, .15);
    border-radius: 20px;
    padding: 30px;
    transition: all .3s ease;
}

.testimonial-card:hover {
    border-color: #E31E24;
    transform: translateY(-5px);
}

.testimonial-pagination {
    margin-top: 40px;
    position: relative !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #8A8A8A;
    opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #E31E24;
}

/* Forms */
.form-label {
    display: block;
    color: #C4C4C4;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #E31E24;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15);
}

.form-input::placeholder {
    color: #8A8A8A;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238A8A8A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.booking-form-wrapper {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(227, 30, 36, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E31E24;
    flex-shrink: 0;
}

/* Floating Buttons */
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Service Page Hero */
.service-hero {
    min-height: 50vh;
}

/* Header scroll effect */
#main-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Dropdown */
.dropdown-menu {
    z-index: 60;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selection color */
::selection {
    background: #E31E24;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #E31E24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF3B42;
}