/*
 * Tuğçe Sarıkaya Beauty Lounge
 * Premium Rose Gold & Dark Theme
 * ================================
 */

/* ===================== CSS Variables ===================== */
:root {
    --primary: #b76e79;
    --primary-light: #e8c4c8;
    --primary-dark: #8a4f57;
    --primary-rgb: 183, 110, 121;
    --dark: #1a1a2e;
    --dark-light: #252535;
    --dark-lighter: #2d2d42;
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    --cream: #faf5f0;
    --cream-dark: #f0e6dc;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --text-dark: #2c2c2c;
    --text-body: #555555;
    --text-muted: #888888;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===================== Reset & Base ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================== Top Bar ===================== */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    color: var(--primary);
    font-size: 12px;
}

.top-bar-info a {
    color: rgba(255,255,255,0.7);
}

.top-bar-info a:hover {
    color: var(--white);
}

.top-bar-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.top-bar-social a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

/* ===================== Navbar ===================== */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    top: 0;
}

.navbar.scrolled .top-bar-hide {
    display: none;
}

.navbar-subpage {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    top: 38px;
}

.navbar-subpage.scrolled {
    top: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.homepage .navbar:not(.scrolled) .brand-name {
    color: var(--white);
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.navbar-logo {
    height: 50px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.homepage .navbar:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.85);
}

.homepage .navbar:not(.scrolled) .nav-link:hover,
.homepage .navbar:not(.scrolled) .nav-link.active {
    color: var(--white);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-appointment {
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-appointment:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.homepage .navbar:not(.scrolled) .toggler-icon span {
    background: var(--white);
}

/* ===================== Hero Section ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.6) 50%, rgba(183,110,121,0.3) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.08;
    z-index: 2;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .text-accent {
    color: var(--primary-light);
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 50px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* ===================== Section Styles ===================== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 5px 18px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--radius-pill);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.section-title .text-accent {
    color: var(--primary);
    font-style: italic;
}

/* ===================== Service Cards ===================== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
    border-radius: 0 0 4px 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.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.08);
}

.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    z-index: 2;
}

.service-card-body {
    padding: 35px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-title a {
    color: var(--text-dark);
}

.service-card-title a:hover {
    color: var(--primary);
}

.service-card-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* No image variant */
.service-card-noimg {
    padding: 35px 25px;
    text-align: center;
}

.service-card-noimg .service-icon-lg {
    width: 75px;
    height: 75px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon-lg {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ===================== Gallery ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
}

.gallery-item-category {
    color: var(--primary-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--text-body);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===================== Testimonials ===================== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-title {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===================== Blog Cards ===================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: var(--text-dark);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

/* ===================== Page Header (Subpages) ===================== */
.page-header {
    background: var(--dark);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.06;
    filter: blur(60px);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-custom {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-custom li a {
    color: var(--primary-light);
}

.breadcrumb-custom li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255,255,255,0.3);
}

/* ===================== Contact ===================== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-info-text a {
    color: var(--text-body);
}

.contact-info-text a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===================== Buttons ===================== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-dark);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: inherit;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

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

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================== Footer ===================== */
.footer-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: var(--white);
}

.footer-cta h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 0;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-main {
    background: var(--dark);
    padding: 80px 0 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-sub {
    font-size: 11px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-about {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.text-rose {
    color: var(--primary) !important;
}

/* ===================== WhatsApp Float ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===================== Back to Top ===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================== About Section ===================== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--primary);
    font-size: 16px;
}

/* ===================== Service Detail ===================== */
.service-detail-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-body);
}

.service-detail-content h3,
.service-detail-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    margin-bottom: 8px;
    position: relative;
}

.service-detail-sidebar {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 30px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-service-list {
    list-style: none;
    padding: 0;
}

.sidebar-service-list li {
    margin-bottom: 8px;
}

.sidebar-service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-service-list a:hover,
.sidebar-service-list a.active {
    background: var(--primary);
    color: var(--white);
}

.sidebar-service-list a i {
    font-size: 12px;
}

/* ===================== Blog Detail ===================== */
.blog-detail-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text-body);
}

.blog-detail-content h2, .blog-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary);
}

/* ===================== Alert Styles ===================== */
.alert-custom {
    border: none;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    font-size: 14px;
}

.alert-success-custom {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger-custom {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ===================== Pagination ===================== */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination-custom .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    color: var(--text-body);
    font-size: 14px;
    transition: var(--transition);
}

.pagination-custom .page-link:hover,
.pagination-custom .active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===================== Responsive ===================== */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        top: 0;
        background: var(--white);
        padding: 12px 0;
        box-shadow: var(--shadow-sm);
    }
    
    .homepage .navbar:not(.scrolled) .brand-name {
        color: var(--dark);
    }
    
    .homepage .navbar:not(.scrolled) .nav-link {
        color: var(--text-dark);
    }
    
    .homepage .navbar:not(.scrolled) .toggler-icon span {
        background: var(--dark);
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-md);
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-cta {
        text-align: center;
        padding: 40px 0;
    }
    
    .footer-cta .text-lg-end {
        margin-top: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        bottom: -10px;
        right: 10px;
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-filter {
        gap: 5px;
    }
    
    .gallery-filter-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    
    .back-to-top {
        right: 80px;
    }
}

/* ===================== Service Detail Image Placeholder ===================== */
.service-img-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 48px;
}

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

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