@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --dark-red: #8b0000;
    --white: #ffffff;
    --text-dark: #333333;
    --light-bg: #f8f9fa;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px rgba(139, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.text-dark-red { color: var(--dark-red) !important; }
.bg-dark-red { background-color: var(--dark-red) !important; }
.ls-2 { letter-spacing: 2px; }

/* Buttons */
.btn-primary {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #660000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 0, 0, 0.3);
}

.btn-outline-dark {
    padding: 12px 30px;
    font-weight: 600;
}

/* Luxury Styling */
.hero-slider {
    background: #000;
    position: relative;
}

.carousel-item {
    height: 90vh;
    min-height: 700px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content .gold-text {
    color: var(--gold);
    display: block;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

/* Service Boxes Redesign */
.service-box {
    border: 1px solid #eee !important;
    border-radius: 20px !important;
    overflow: hidden;
    background: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box:hover {
    transform: translateY(-20px);
    border-color: var(--gold) !important;
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15) !important;
}

.service-box .icon-box {
    width: 90px;
    height: 90px;
    background: var(--light-bg);
    border-radius: 50% !important;
    margin: -45px auto 25px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-box:hover .icon-box {
    background: var(--dark-red);
    transform: rotateY(180deg);
}

/* Luxury Sections */
.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.bg-luxury {
    background: radial-gradient(circle at center, #ffffff 0%, #f9f6f0 100%);
}

.img-luxury {
    border-radius: 30px;
    box-shadow: 30px 30px 0 var(--light-bg);
    transition: 0.5s;
}

.img-luxury:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 0 var(--gold);
}

/* Stats Section */
.stats-box {
    background: var(--dark-red);
    color: white;
    padding: 60px 0;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Condition Cards */
.condition-card:hover {
    background: var(--dark-red) !important;
    color: white !important;
}

.condition-card:hover i {
    color: white !important;
}

/* Feature Items */
.feature-item {
    transition: 0.3s;
}

.hover-bg-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.icon-box-white {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline */
.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.timeline-row::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--dark-red) 0, var(--dark-red) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

/* Custom Utilities */
.ls-2 { letter-spacing: 2px; }
.transition-all { transition: all 0.3s; }
.hover-up:hover { transform: translateY(-5px); }

@media (max-width: 991px) {
    .timeline-row::after { display: none; }
    .carousel-item { min-height: auto; padding: 60px 0; }
}
