/* ═══════════════════════════════════════════════════════════
   IMPERIAL GLOW - ULTRA LUXURY FEMININE DESIGN
   Elegant Grey to Rose Gold Transitions
   ═══════════════════════════════════════════════════════════ */

:root {
    /* IMPERIAL GLOW - WHITE/GREY BACKGROUND + COPPER TEXT */
    --primary-color: #C58F6B;        /* Copper for text */
    --secondary-color: #FFFFFF;      /* Pure White */
    --accent-color: #B07856;         /* Dark Copper */
    --dark-color: #1A1A1A;           /* Pure Dark */
    --light-color: #F5F5F5;          /* Light Grey */
    
    /* Background Colors - ONLY WHITE/GREY */
    --bg-white: #FFFFFF;
    --bg-light-grey: #F8F8F8;
    --bg-grey: #ECECEC;
    --bg-dark: #1A1A1A;
    
    /* Text Colors - COPPER */
    --text-copper: #C58F6B;
    --text-dark-copper: #B07856;
    --text-light-copper: #D4A07A;
    --text-dark: #1A1A1A;
    --text-grey: #666666;
    
    /* Gradients - WHITE/GREY ONLY */
    --gradient-bg: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    --gradient-bg-alt: linear-gradient(135deg, #F8F8F8 0%, #ECECEC 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1A1A1A;
    margin-bottom: 60px;
    background: #FFFFFF;
}

/* Copper Text Effects */
.text-copper {
    color: #C58F6B;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(197, 143, 107, 0.2);
}

.text-copper-gradient {
    background: linear-gradient(135deg, #C58F6B 0%, #B07856 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION - ULTRA LUXURY IMPERIAL GLOW
   ═══════════════════════════════════════════════════════════ */

.hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    color: #1A1A1A;
    padding: 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

.service-card .card-header {
    background: linear-gradient(135deg, #E3E3E3 0%, #C58F6B 100%);
    color: white;
    padding: 1.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.service-card .card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #C58F6B;
    margin-bottom: 1rem;
}

/* Package Cards */
.package-card {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(217, 70, 239, 0.2);
}

.package-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #fdf4ff, white);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS - IMPERIAL GLOW LUXURY
   ═══════════════════════════════════════════════════════════ */

.btn-primary {
    background: #FFFFFF;
    border: 2px solid #C58F6B;
    color: #C58F6B;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(197, 143, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #C58F6B;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 143, 107, 0.4);
    color: white;
    border-color: #C58F6B;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline-primary {
    border: 2px solid #C58F6B;
    color: #C58F6B;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #C58F6B;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 143, 107, 0.5);
}

.btn-outline-primary:hover::before {
    width: 100%;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-box .number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-box .label {
    font-size: 1.1rem;
    color: #64748b;
}

/* Forms */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(217, 70, 239, 0.25);
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card, .package-card {
        margin-bottom: 1.5rem;
    }
}

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

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

/* Loading */
.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border: 0.4rem solid var(--primary-color);
    border-right-color: transparent;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Focus Styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}