/* =========================================
   Güzellik Merkezi - Frontend CSS
   Pink Theme: #e91e8c
   ========================================= */

:root {
    --pink: #e91e8c;
    --pink-dark: #c0166e;
    --pink-light: #f8e6f3;
    --pink-ultra-light: #fdf3fa;  
    --dark: #222222;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border: #e8e8e8;
    --shadow: 0 4px 20px rgba(233,30,140,0.1);
    --shadow-hover: 0 8px 30px rgba(233,30,140,0.25);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
    background: var(--pink);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.topbar a { color: var(--white); }
.topbar a:hover { opacity: 0.8; }
.topbar-social a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    font-size: 12px;
}
.topbar-social a:hover { background: rgba(255,255,255,0.4); }
.flag-icon { width: 22px; height: 16px; border-radius: 2px; }

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar-main {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}
.navbar-main.scrolled {
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}
.navbar-brand img { max-height: 60px; }
.navbar-brand .site-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--pink);
}
.navbar-brand .site-tagline {
    font-size: 11px;
    color: var(--gray);
    display: block;
    margin-top: -3px;
}
.nav-link {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark) !important;
    padding: 28px 14px !important;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--pink) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pink);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 220px;
    border-top: 3px solid var(--pink);
    margin-top: 0 !important;
    animation: fadeInDown 0.2s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--pink-light);
    color: var(--pink);
    padding-left: 28px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    min-height: 600px;
    background: linear-gradient(135deg, #fff5fb 0%, #fce4f3 40%, #fff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--pink);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-subtitle { font-size: 16px; color: var(--gray); margin-bottom: 30px; }
.hero-img { border-radius: 20px; box-shadow: var(--shadow-hover); }

/* Reservation Form */
.reservation-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(233,30,140,0.2);
    padding: 30px;
    position: relative;
    z-index: 10;
}
.reservation-card h4 {
    color: var(--dark);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light-gray);
}
.form-control:focus, .form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
    background: var(--white);
    outline: none;
}
.form-control::placeholder { color: #aaa; }

/* =========================================
   BUTTONS
   ========================================= */
.btn-pink {
    background: var(--pink);
    color: var(--white);
    border: 2px solid var(--pink);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}
.btn-pink:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233,30,140,0.4);
}
.btn-outline-pink {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}
.btn-outline-pink:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--pink);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   SECTION STYLES
   ========================================= */
.section-padding { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), transparent);
    border-radius: 2px;
}
.section-title p { color: var(--gray); font-size: 16px; margin-top: 15px; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section { background: var(--white); }
.stat-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--pink-ultra-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--pink);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
}
.stat-label { font-size: 13px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* =========================================
   NAIL MODELS
   ========================================= */
.nail-models-section { background: var(--light-gray); padding: 60px 0; }
.nail-model-item { text-align: center; padding: 10px; }
.nail-model-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
    border: 3px solid transparent;
}
.nail-model-item:hover img {
    border-color: var(--pink);
    transform: scale(1.03);
}
.nail-model-item .model-name { font-size: 12px; font-weight: 600; margin-top: 8px; color: var(--gray); }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section { background: var(--pink-ultra-light); }
.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover img { transform: scale(1.05); }
.service-card-body { padding: 20px; }
.service-card-body h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.service-card-body p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.service-card-body a { color: var(--pink); font-weight: 600; font-size: 13px; }

/* =========================================
   TEAM SECTION
   ========================================= */
.team-section { background: var(--white); }
.team-card {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pink-light);
    transition: var(--transition);
    margin-bottom: 15px;
}
.team-card:hover img { border-color: var(--pink); }
.team-card h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-card span { font-size: 13px; color: var(--pink); font-weight: 500; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--pink-ultra-light); }
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--pink-light);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.testimonial-stars { color: #ffc107; margin-bottom: 10px; font-size: 14px; }
.testimonial-text { font-size: 14px; color: var(--gray); font-style: italic; margin-bottom: 15px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.testimonial-author h6 { font-size: 14px; font-weight: 700; margin: 0; }
.testimonial-author small { font-size: 12px; color: var(--gray); }

/* =========================================
   PACKAGES
   ========================================= */
.packages-section { background: var(--white); }
.package-card {
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--pink-dark));
}
.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: var(--shadow-hover);
}
.package-card.featured {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    border-color: transparent;
    color: var(--white);
}
.package-card.featured::before { background: rgba(255,255,255,0.3); }
.package-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.package-price { font-size: 36px; font-weight: 800; color: var(--pink); margin: 15px 0; }
.package-card.featured .package-price { color: var(--white); }
.package-price span { font-size: 16px; font-weight: 400; }
.package-features { list-style: none; margin: 20px 0; text-align: left; }
.package-features li { padding: 6px 0; font-size: 14px; }
.package-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--pink);
    margin-right: 8px;
}
.package-card.featured .package-features li::before { color: rgba(255,255,255,0.8); }
.badge-featured {
    position: absolute;
    top: 15px;
    right: -20px;
    background: #ffc107;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* =========================================
   PARTNERS
   ========================================= */
.partners-section { background: var(--light-gray); padding: 50px 0; }
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.partner-item:hover { filter: none; opacity: 1; transform: scale(1.05); }
.partner-item img { max-height: 60px; max-width: 150px; object-fit: contain; }

/* =========================================
   BLOG
   ========================================= */
.blog-section { background: var(--white); }
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-meta { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.blog-meta span { margin-right: 12px; }
.blog-meta i { color: var(--pink); margin-right: 4px; }
.blog-card-body h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.blog-card-body p { font-size: 13px; color: var(--gray); }
.blog-card-body a { color: var(--pink); font-weight: 600; font-size: 13px; }

/* =========================================
   PAGE HERO (Breadcrumb)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    left: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.page-hero h1 { font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 15px; position: relative; z-index: 2; }
.breadcrumb {
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.breadcrumb-item { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.breadcrumb-item.active { color: var(--white); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }
.breadcrumb-item a { color: rgba(255,255,255,0.85); }
.breadcrumb-item a:hover { color: var(--white); }

/* =========================================
   SERVICE DETAIL PAGE
   ========================================= */
.page-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-menu {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}
.sidebar-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.sidebar-menu a:hover, .sidebar-menu a.active {
    background: var(--pink);
    color: var(--white);
    padding-left: 28px;
}
.sidebar-menu a:last-child { border-bottom: none; }
.sidebar-contact-box {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    border-radius: 12px;
    padding: 25px;
    color: var(--white);
    text-align: left;
}
.sidebar-contact-box h4 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 12px;
}
.sidebar-contact-box p { font-size: 13px; opacity: 0.9; margin-bottom: 18px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: 100%;
}
.contact-info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
    font-size: 14px;
}
.contact-info-item h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--dark); margin: 0; }
.contact-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: var(--pink);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    font-size: 14px;
    transition: var(--transition);
}
.contact-social a:hover { background: var(--pink-dark); transform: translateY(-3px); }

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

/* =========================================
   BRANCHES PAGE
   ========================================= */
.branch-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.branch-card:hover { border-color: var(--pink); box-shadow: var(--shadow-hover); }
.branch-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--pink);
    font-size: 18px;
}
.branch-city { font-size: 20px; font-weight: 700; color: var(--pink); margin-bottom: 5px; }
.branch-district { font-size: 14px; color: var(--gray); margin-bottom: 10px; }
.branch-address { font-size: 13px; color: var(--dark); margin-bottom: 15px; line-height: 1.6; }
.branch-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.branch-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 6px;
}
.branch-contact-item i { color: var(--pink); width: 18px; }

/* =========================================
   DOCUMENTS PAGE
   ========================================= */
.document-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
}
.document-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.document-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.document-card-body { padding: 15px; }
.document-card-body h6 { font-size: 14px; font-weight: 600; color: var(--pink); margin: 0; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-img { border-radius: 20px; box-shadow: var(--shadow-hover); }

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-list-card {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    transition: var(--transition);
}
.blog-list-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-list-card img { width: 220px; height: 160px; object-fit: cover; flex-shrink: 0; }
.blog-list-card-body { padding: 20px; }

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(233,30,140,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 28px; }

/* =========================================
   FAQ PAGE
   ========================================= */
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--pink);
    background: var(--pink-ultra-light);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}
.faq-accordion .accordion-item { border: 2px solid var(--border); border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; }
.faq-accordion .accordion-body { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* =========================================
   TEAM PAGE
   ========================================= */
.team-page-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}
.team-page-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.team-page-card img { width: 100%; height: 250px; object-fit: cover; }
.team-page-card h5 { font-size: 16px; font-weight: 700; margin: 15px 0 5px; }
.team-page-card span { font-size: 13px; color: var(--pink); font-weight: 500; }
.team-page-card p { font-size: 13px; color: var(--gray); padding: 0 15px; margin-top: 8px; }

/* =========================================
   CAREER PAGE
   ========================================= */
.career-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--pink);
    transition: var(--transition);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.career-card:hover { box-shadow: var(--shadow-hover); transform: translateX(5px); }
.career-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.career-card p { font-size: 13px; color: var(--gray); margin: 0; }
.career-badge {
    background: var(--pink-light);
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* =========================================
   BANK ACCOUNTS PAGE
   ========================================= */
.bank-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-top: 4px solid var(--pink);
    transition: var(--transition);
}
.bank-card:hover { box-shadow: var(--shadow-hover); }
.bank-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--pink); }
.bank-info { display: flex; flex-direction: column; gap: 6px; }
.bank-info-row { display: flex; gap: 8px; font-size: 14px; }
.bank-info-row span:first-child { font-weight: 600; color: var(--gray); min-width: 100px; }
.bank-copy-btn { font-size: 12px; cursor: pointer; color: var(--pink); }

/* =========================================
   INSTAGRAM SECTION
   ========================================= */
.instagram-section {
    background: var(--pink);
    padding: 40px 0;
    text-align: center;
}
.instagram-icon-box {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.instagram-icon-box i { font-size: 40px; background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.instagram-section h5 { color: var(--white); font-size: 20px; font-weight: 700; margin: 0; }

/* =========================================
   FOOTER
   ========================================= */
.footer-main {
    background: var(--pink);
    color: var(--white);
    padding: 60px 0 30px;
}
.footer-logo img { max-height: 60px; margin-bottom: 15px; }
.footer-logo h4 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.footer-logo p { font-size: 12px; color: rgba(255,255,255,0.7); }

.footer-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    display: inline-block;
    margin: 0 15px 5px 0;
    transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-subscribe h5 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.footer-subscribe-form {
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
}
.footer-subscribe-form input {
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: var(--white);
    font-size: 14px;
    flex: 1;
    outline: none;
}
.footer-subscribe-form input::placeholder { color: rgba(255,255,255,0.6); }
.footer-subscribe-form button {
    background: rgba(255,255,255,0.25);
    border: none;
    padding: 12px 18px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.footer-subscribe-form button:hover { background: rgba(255,255,255,0.4); }

.footer-hours h5, .footer-contact h5 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.footer-hours table { width: 100%; font-size: 13px; }
.footer-hours td { padding: 4px 0; color: rgba(255,255,255,0.85); }
.footer-hours td:first-child { font-weight: 600; color: var(--white); width: 110px; }
.footer-hours .closed { color: #ff9999; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}
.footer-contact-item i { color: rgba(255,255,255,0.7); margin-top: 2px; width: 16px; }
.footer-contact-item span { color: rgba(255,255,255,0.85); }
.footer-contact-item strong { display: block; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

.footer-social { margin-top: 15px; }
.footer-social h5 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 5px;
    transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.4); transform: translateY(-3px); }

.footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.footer-bottom a { color: rgba(255,255,255,0.85); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   FLOATING SIDEBAR BUTTONS
   ========================================= */
.floating-sidebar {
    position: fixed;
    left: 0;
    bottom: 40%;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.floating-btn {
    display: flex;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 0 8px 8px 0;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}
.floating-btn i { min-width: 45px; text-align: center; }
.floating-btn span { display: none; padding-right: 12px; font-size: 13px; font-weight: 600; }
.floating-btn:hover { width: auto; color: var(--white); }
.floating-btn:hover span { display: block; }
.floating-phone { background: var(--pink); }
.floating-whatsapp { background: #25d366; }
.floating-telegram { background: #0088cc; }
.floating-instagram { background: linear-gradient(135deg, #405de6, #833ab4, #e1306c); }

/* =========================================
   BACK TO TOP
   ========================================= */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(233,30,140,0.4);
    transition: var(--transition);
}
#backToTop:hover { background: var(--pink-dark); transform: translateY(-3px); }
#backToTop.show { display: flex; }

/* =========================================
   POPUP
   ========================================= */
.popup-modal .modal-content { border-radius: 16px; overflow: hidden; border: none; }
.popup-modal .modal-body { padding: 0; }
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   ALERTS & MESSAGES
   ========================================= */
.alert-success-custom {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
}
.alert-error-custom {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
}

/* =========================================
   SLICK SLIDER CUSTOM ARROWS
   ========================================= */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: var(--pink) !important;
    border-radius: 50%;
    z-index: 10;
}
.slick-prev::before, .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    opacity: 1;
}
.slick-prev::before { content: '\f053'; }
.slick-next::before { content: '\f054'; }
.slick-prev { left: -20px; }
.slick-next { right: -20px; }
.slick-dots li button::before { color: var(--pink); font-size: 10px; }
.slick-dots li.slick-active button::before { color: var(--pink); }

/* =========================================
   REFERENCES PAGE
   ========================================= */
.reference-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition);
}
.reference-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.reference-card img { max-height: 80px; max-width: 160px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.reference-card:hover img { filter: none; opacity: 1; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .navbar-main { padding: 10px 0; }
    .nav-link { padding: 10px 15px !important; }
    .nav-link::after { display: none; }
    .hero-section { padding: 50px 0; text-align: center; }
    .hero-title { font-size: 32px; }
    .reservation-card { margin-top: 30px; }
    .floating-sidebar { bottom: 30%; }
    .section-title h2 { font-size: 28px; }
    .page-hero h1 { font-size: 30px; }
}

@media (max-width: 767px) {
    .topbar .d-flex { flex-direction: column; gap: 5px; text-align: center; }
    .hero-title { font-size: 26px; }
    .stat-number { font-size: 36px; }
    .section-padding { padding: 50px 0; }
    .blog-list-card { flex-direction: column; }
    .blog-list-card img { width: 100%; height: 200px; }
    .branch-card { margin-bottom: 20px; }
    .floating-btn { width: 40px; height: 40px; font-size: 16px; }
    .footer-main { padding: 40px 0 20px; }
    #backToTop { bottom: 20px; right: 15px; }
    .package-card { margin-bottom: 20px; }
}

@media (max-width: 575px) {
    .hero-section { padding: 40px 0; }
    .hero-title { font-size: 22px; }
    .page-hero { padding: 50px 0; }
    .page-hero h1 { font-size: 26px; }
}
