/* ============================================
   HAJAR'S GLOW NAIL SALON - COMPLETE STYLESHEET
   Color Scheme: Pink Primary (#ff6b8b)
   ============================================ */

/* CSS Variables */
:root {
    --pink-primary: #ff6b8b;
    --pink-dark: #e85575;
    --pink-light: #ffb8c9;
    --pink-bg: #fff5f7;
    --pink-ultra-light: #fffafc;
    --gray-dark: #2c2c2c;
    --gray-medium: #666;
    --gray-light: #f5f5f5;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-pink: 0 10px 30px rgba(255,107,139,0.15);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--pink-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    color: var(--pink-primary) !important;
    font-weight: 700;
    font-size: 1.8rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: var(--pink-dark) !important;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    margin: 0 5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--pink-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-book {
    background-color: var(--pink-primary);
    color: white !important;
    border-radius: 30px;
    padding: 8px 25px !important;
    margin-left: 10px;
}

.btn-book:hover {
    background-color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-book::after {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--pink-bg) 0%, #ffe4ec 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,139,0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,107,139,0.05) 0%, transparent 70%);
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.hero-section h1 {
    color: var(--pink-dark);
    margin-bottom: 20px;
    font-size: 3.5rem;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-image {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
}

.btn-primary:hover {
    background-color: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-outline-primary {
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--pink-primary);
    border-color: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-light {
    background-color: white;
    color: var(--pink-primary);
}

.btn-light:hover {
    background-color: var(--pink-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background-color: #25D366;
}

/* ============================================
   SERVICE CARDS - NO EXTRA PADDING
   ============================================ */
.services {
    background-color: white;
    width: 100%;
    overflow-x: hidden;
}

/* Fix for Bootstrap row padding */
.services .row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix for column padding */
.services [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(255,107,139,0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pink-primary), var(--pink-light));
    transition: var(--transition);
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-pink);
    border-color: transparent;
}

.service-icon {
    font-size: 50px;
    color: var(--pink-primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--pink-primary);
    margin: 15px 0;
}

.service-duration {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-title {
    color: var(--pink-dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--pink-light);
    display: inline-block;
}

.category-title i {
    margin-right: 10px;
}

/* Mobile fix for service cards */
@media (max-width: 768px) {
    .services [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-price {
        font-size: 24px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
}

/* ============================================
   REVIEW SECTION
   ============================================ */
.reviews {
    background: linear-gradient(135deg, var(--pink-bg) 0%, white 100%);
    width: 100%;
    overflow-x: hidden;
}

/* Fix for reviews row */
.reviews .row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix for reviews columns */
.reviews [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    margin: 15px 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.review-card::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255,107,139,0.1);
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: var(--warning);
    margin-right: 3px;
    font-size: 18px;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.reviewer-info strong {
    color: var(--pink-dark);
    font-size: 1.1rem;
}

/* Mobile fix for reviews */
@media (max-width: 768px) {
    .reviews [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .review-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   CONTACT RIBBON
   ============================================ */
.contact-ribbon {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
    padding: 70px 0;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Fix for contact ribbon container */
.contact-ribbon .container {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Fix for contact ribbon row */
.contact-ribbon .row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix for contact ribbon columns */
.contact-ribbon [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.contact-ribbon::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-ribbon h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px 20px;
    margin: 10px 0;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.contact-info-box:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 45px;
    margin-bottom: 15px;
}

.contact-info-box h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info-box p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Mobile fix for contact ribbon */
@media (max-width: 768px) {
    .contact-ribbon {
        padding: 50px 0;
    }
    
    .contact-ribbon h2 {
        font-size: 1.8rem;
    }
    
    .contact-ribbon .lead {
        font-size: 1rem;
    }
    
    .contact-ribbon [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-info-box {
        padding: 20px 15px;
        margin: 8px 0;
    }
    
    .contact-info-box i {
        font-size: 35px;
    }
    
    .contact-info-box h5 {
        font-size: 1rem;
    }
    
    .contact-info-box p {
        font-size: 0.85rem;
    }
}

/* Small mobile fix */
@media (max-width: 576px) {
    .services [class*="col-"],
    .reviews [class*="col-"],
    .contact-ribbon [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .service-card {
        padding: 15px 12px;
    }
    
    .contact-info-box {
        padding: 15px 12px;
    }
}

/* Ensure no horizontal scroll on any screen */
body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Fix for g-4 Bootstrap gutter class */
.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.g-4 > [class*="col-"] {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* Override for g-4 on mobile */
@media (max-width: 768px) {
    .g-4 {
        --bs-gutter-x: 1rem;
    }
}
/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.floating-whatsapp a {
    color: white;
    font-size: 38px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--gray-dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer h5 {
    color: var(--pink-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--pink-primary);
    padding-left: 5px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: var(--transition);
    margin-right: 8px;
}

.social-link:hover {
    background: var(--pink-primary);
    transform: translateY(-3px);
    color: white;
}

.footer hr {
    background-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
    background-color: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px 20px 20px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h5 {
    margin: 0;
    font-size: 1.1rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.about-image-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-item:hover img {
    transform: scale(1.05);
}

.stats-counter {
    background: linear-gradient(135deg, var(--pink-bg) 0%, white 100%);
    padding: 70px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--pink-primary);
    margin-bottom: 10px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 0;
    color: white;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 55px;
    color: var(--pink-primary);
    margin-bottom: 20px;
}

.contact-card h4 {
    color: var(--pink-dark);
    margin-bottom: 15px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    padding: 12px 15px;
    border: 2px solid #eee;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255,107,139,0.1);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-media-icons a {
    display: inline-flex;
    width: 55px;
    height: 55px;
    background: var(--pink-primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: var(--transition);
    font-size: 24px;
}

.social-media-icons a:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
}

/* ============================================
   BOOKING MODAL & STEPS
   ============================================ */
.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    color: white;
    border: none;
    padding: 20px 30px;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: white;
    color: #999;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.step.active {
    background: var(--pink-primary);
    color: white;
    box-shadow: var(--shadow-pink);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.time-slot {
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
}

.time-slot.btn-outline-primary {
    background: white;
}

.time-slot.btn-outline-primary:hover,
.time-slot.selected {
    background-color: var(--pink-primary);
    color: white;
    border-color: var(--pink-primary);
}

.time-slot.btn-secondary {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-sidebar {
    background-color: var(--gray-dark);
    min-height: 100vh;
    color: white;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.8) !important;
    padding: 12px 20px;
    border-radius: 10px;
    margin: 5px 15px;
}

.admin-sidebar .nav-link:hover {
    background: rgba(255,107,139,0.2);
    color: var(--pink-primary) !important;
}

.admin-sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.status-pending { 
    background-color: #ffc107; 
    color: #000; 
}

.status-confirmed { 
    background-color: #28a745; 
    color: #fff; 
}

.status-cancelled { 
    background-color: #dc3545; 
    color: #fff; 
}

.status-completed { 
    background-color: #17a2b8; 
    color: #fff; 
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* Tablet */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .btn {
        margin-bottom: 10px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .booking-steps {
        font-size: 11px;
    }
    
    .step {
        padding: 8px 5px;
    }
    
    .review-card {
        margin: 10px 0;
    }
    
    .contact-info-box {
        margin-bottom: 15px;
    }
    
    .contact-ribbon h2 {
        font-size: 1.8rem;
    }
    
    .contact-ribbon {
        padding: 50px 0;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp a {
        font-size: 30px;
    }
    
    .about-image-gallery {
        gap: 15px;
    }
    
    .about-image-item img {
        height: 200px;
    }
    
    .stat-box {
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .social-media-icons a {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin: 0 5px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .text-end {
        text-align: center !important;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .service-price {
        font-size: 24px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    
    .time-slot {
        padding: 8px;
        font-size: 12px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step {
        flex: auto;
        min-width: 80px;
        font-size: 10px;
    }
    
    .booking-steps::before {
        display: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-pink {
    color: var(--pink-primary);
}

.bg-pink {
    background-color: var(--pink-primary);
}

.bg-pink-light {
    background-color: var(--pink-bg);
}

.rounded-custom {
    border-radius: 20px;
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.shadow-pink {
    box-shadow: var(--shadow-pink);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--pink-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--pink-light);
    border-top-color: var(--pink-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-left {
    animation: slideInLeft 0.6s ease;
}

.slide-right {
    animation: slideInRight 0.6s ease;
}

/* Print Styles */
@media print {
    .floating-whatsapp,
    .contact-ribbon,
    .btn-book,
    .navbar-toggler {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero-section {
        background: none;
        padding: 20px 0;
    }
}