/* ============================================
   VARIABLES & BASE STYLES
   ============================================ */
:root {
    --primary: #b76e79;
    --primary-dark: #9e5a64;
    --primary-light: #d4a0a8;
    --primary-bg: #fdf2f4;
    --secondary: #2c3e50;
    --text: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --off-white: #fafafa;
    --gold: #c9a96e;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    line-height: 1.3;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
}

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

.top-bar-contact i {
    margin-right: 6px;
    color: var(--primary-light);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.top-bar-social a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--white);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.flag-icon {
    font-size: 0.9rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.map-navigate-btn {
    display: block;
    text-align: center;
    padding: 10px 15px;
    margin-top: 8px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.map-navigate-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.map-navigate-btn i {
    margin-right: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-bg);
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 0;
}

.dropdown li a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    padding-left: 25px;
}

.nav-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 25px !important;
    padding: 10px 24px !important;
}

.nav-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
}

.flash-message {
    padding: 16px 45px 16px 20px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.4s ease;
    position: relative;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.flash-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4a0a8 40%, #b76e79 100%);
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.25);
}

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

.page-header h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    margin: 0 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4a0a8 40%, #b76e79 100%);
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.55) 0%, rgba(183, 110, 121, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-greeting {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 15px;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(183, 110, 121, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   CARDS SECTION
   ============================================ */
.cards-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.info-card h3 span {
    color: var(--primary);
}

.info-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-bg), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary);
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.about-image-placeholder span {
    opacity: 0.6;
    font-weight: 500;
}

.about-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-light);
    border-radius: var(--radius);
    z-index: -1;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.section-title span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 25px;
    border-radius: 3px;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.85;
}

.about-content .btn {
    margin-top: 10px;
}

.about-signature {
    margin-top: 25px;
}

.signature-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   BIO DETAILS (About Page)
   ============================================ */
.bio-details-section {
    padding: 80px 0;
    background: var(--white);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.bio-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.bio-column h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-bg);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--primary-bg);
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Memberships */
.memberships-section {
    padding: 80px 0;
    background: var(--off-white);
}

.memberships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.membership-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.membership-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.membership-item h4 {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   OFFICE SECTION
   ============================================ */
.office-section {
    padding: 80px 0 40px;
    background: var(--white);
}

.office-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-title-center {
    font-size: 2.2rem;
    text-align: center;
}

.section-divider-center {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 25px;
    border-radius: 3px;
}

.office-intro {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 10px;
}

.office-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.office-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.office-card-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-bg), #e8d5d8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
}

.office-card-img i {
    font-size: 3rem;
    opacity: 0.4;
}

.office-card-img span {
    font-weight: 500;
    opacity: 0.6;
}

/* Office Gallery Large (Office Page) */
.office-gallery-section {
    padding: 0 0 80px;
    background: var(--white);
}

.office-gallery-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card-large {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

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

.office-card-large .office-card-img {
    aspect-ratio: 16/10;
}

.office-card-info {
    padding: 25px;
}

.office-card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.office-card-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Office Features */
.office-features-section {
    padding: 80px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--off-white);
}

.services-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-page-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: calc(100% + 60px);
    margin: -40px -30px 25px;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-card-large .service-card-img {
    width: calc(100% + 70px);
    margin: -45px -35px 25px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card-large {
    padding: 45px 35px;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* ============================================
   SERVICE DETAIL (Sub-pages)
   ============================================ */
.service-detail-section {
    padding: 80px 0;
    background: var(--off-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 35px 0 25px;
    color: var(--secondary);
}

.service-detail-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 15px;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.detail-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.detail-item h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Sidebar */
.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-bg);
}

.sidebar-card h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card ul li {
    margin-bottom: 5px;
}

.sidebar-card ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.92rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.sidebar-card ul li a:hover,
.sidebar-card ul li.active a {
    background: var(--primary-bg);
    color: var(--primary);
    padding-left: 20px;
}

.sidebar-card ul li a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.sidebar-cta {
    background: var(--primary-bg);
    text-align: center;
}

.sidebar-cta > i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sidebar-contact {
    text-align: center;
}

.sidebar-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary) !important;
    font-family: 'Playfair Display', serif;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), #1a252f);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-light);
    display: inline;
}

.stat-unit {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-light);
    display: inline;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 15px;
}

.reviews-rating {
    text-align: center;
    margin-bottom: 40px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.stars i {
    color: #f4c430;
    font-size: 1.3rem;
}

.rating-text {
    font-weight: 600;
    color: var(--secondary);
}

.reviews-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 280px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.5s ease;
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #f4c430;
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.review-author strong {
    display: block;
    color: var(--secondary);
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-bg);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    border-color: var(--primary);
}

/* Reviews Full Page (grid layout) */
.reviews-full-page {
    padding-top: 80px;
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f4ff, #fff0f5);
    border-radius: 12px;
    border: 1px solid rgba(142, 68, 173, 0.15);
}

.rating-big-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8e44ad;
    line-height: 1;
}

.rating-big-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-big-details .stars {
    color: #f1c40f;
    font-size: 1.2rem;
}

.rating-count {
    font-size: 0.95rem;
    color: #666;
}

.reviews-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card-static {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-card-static .review-text {
    font-size: 0.92rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5e6e8 0%, var(--primary-light) 50%, var(--primary) 100%);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.95;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-top-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Quick contact cards */
.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-quick-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-quick-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-quick-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-quick-card a,
.contact-quick-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-quick-card a:hover {
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-bg);
}

.contact-card h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.contact-info p {
    padding: 8px 0;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

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

.contact-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-social span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-social a {
    width: 36px;
    height: 36px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.contact-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-bg);
}

.contact-hours h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-hours h4 i {
    margin-right: 8px;
}

.contact-hours p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 3px 0;
}

.contact-map {
    margin-top: 25px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-bg);
}

.contact-form-wrapper h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--off-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    color: var(--primary-light);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(183, 110, 121, 0.3);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    padding: 5px 0;
}

.footer ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 0.88rem;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
}

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

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-name {
        font-size: 3.5rem;
    }

    .cards-grid,
    .services-grid,
    .office-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image-decoration {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bio-grid {
        grid-template-columns: 1fr;
    }

    .memberships-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar {
        order: -1;
    }

    .reviews-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-gallery-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-contact {
        display: none;
    }

    .top-bar-right {
        margin: 0 auto;
    }

    .top-bar-social {
        margin: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 0 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        display: block;
        width: 100%;
        position: static;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 14px 25px;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
        font-size: 0.95rem;
    }

    .has-dropdown > a .dropdown-arrow {
        font-size: 0.65rem;
    }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease;
    }

    .has-dropdown.dropdown-open .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .has-dropdown.dropdown-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown li a {
        padding: 12px 25px 12px 45px;
        text-align: left;
        font-size: 0.85rem;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-btn {
        margin: 15px 25px 0;
        text-align: center !important;
        width: calc(100% - 50px);
    }

    .hero {
        min-height: 75vh;
    }

    .hero-pinterest {
        display: none;
    }

    .hero-name {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .cards-grid,
    .services-grid,
    .office-gallery {
        grid-template-columns: 1fr;
    }

    .cards-section {
        margin-top: -40px;
    }

    .section-title,
    .section-title-center {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-slider {
        min-height: 340px;
    }

    .review-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 60px 0;
    }

    .reviews-grid-full {
        grid-template-columns: 1fr;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .flash-messages {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.2rem;
    }

    .hero-greeting {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .review-text {
        font-size: 0.92rem;
    }

    .memberships-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.alert i { font-size: 1.2rem; }
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   REVIEW FORM
   ============================================ */
.review-form-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}
.review-form {
    max-width: 600px;
    margin: 30px auto 0;
}
.review-form .form-group {
    margin-bottom: 20px;
}
.review-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}
.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}
.review-form input[type="text"]:focus,
.review-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 180, 80, 100), 0.15);
}
.review-notice {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}
.user-reviews-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}
.user-review {
    border-left: 3px solid var(--primary);
}

/* Star Rating Widget */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.star-rating-input input[type="radio"] {
    display: none;
}
.star-rating-input label {
    cursor: pointer;
    font-size: 1.6rem;
    color: #ddd;
    transition: color 0.2s;
    margin-bottom: 0;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input[type="radio"]:checked ~ label {
    color: #f5c518;
}

/* ============================================
   APPOINTMENT PAGE
   ============================================ */
.appointment-section {
    padding: 80px 0;
    background: var(--off-white);
}
.appointment-header {
    text-align: center;
    margin-bottom: 20px;
}
.appointment-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.calendar-container {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.appointment-calendar-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.appointment-calendar-wrapper h3,
.appointment-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.appointment-calendar-wrapper h3 i,
.appointment-form-wrapper h3 i {
    color: var(--primary);
    margin-right: 8px;
}
.cal-nav {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cal-nav:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.cal-month-year {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: #666;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.legend-dot.available {
    background: var(--primary-light);
}
.legend-dot.unavailable {
    background: #ddd;
}
.legend-dot.selected {
    background: var(--primary);
}
.loading-slots,
.no-slots {
    text-align: center;
    color: #999;
    padding: 30px 0;
    font-size: 0.95rem;
}
.loading-slots i,
.no-slots i {
    margin-right: 8px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.calendar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}
.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: default;
    color: #ccc;
    transition: var(--transition);
}
.cal-day.available {
    color: var(--dark);
    cursor: pointer;
    font-weight: 500;
}
.cal-day.available:hover {
    background: var(--primary-light);
    color: var(--white);
}
.cal-day.selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}
.cal-day.today {
    border: 2px solid var(--primary);
}
.cal-day.disabled {
    color: #ddd;
    cursor: not-allowed;
}
.cal-day.past {
    color: #ddd;
    text-decoration: line-through;
}

/* Time Slots */
.time-slots-container {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.time-slots-container h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.time-slot-btn {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}
.time-slot-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--white);
}
.time-slot-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.time-slots-placeholder {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-size: 0.95rem;
}
.time-slots-placeholder i {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ccc;
}

/* Appointment Form */
.appointment-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.selected-datetime {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    padding: 18px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.selected-datetime i {
    font-size: 1.5rem;
}
.selected-datetime .dt-info {
    display: flex;
    gap: 30px;
}
.selected-datetime .dt-label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.selected-datetime .dt-value {
    font-size: 1.1rem;
    font-weight: 600;
}
.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.appointment-form .form-group {
    margin-bottom: 20px;
}
.appointment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}
.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form input[type="tel"],
.appointment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}
.appointment-form input:focus,
.appointment-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 180, 80, 100), 0.15);
}

/* Appointment Responsive */
@media (max-width: 768px) {
    .appointment-grid {
        grid-template-columns: 1fr;
    }
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }
    .selected-datetime .dt-info {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========== Admin Panel ========== */
.admin-section {
    padding: 120px 0 60px;
    min-height: 70vh;
}

.admin-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-logout-btn {
    padding: 8px 20px;
    border-radius: 25px;
    background: #666;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.admin-logout-btn:hover {
    background: #444;
}

.admin-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.admin-filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid #ddd;
    background: #fff;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.admin-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.admin-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 1.2rem 1.5rem;
    animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text-wrap {
    flex: 1;
    min-width: 220px;
}

.cookie-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.cookie-title i {
    color: var(--primary);
    margin-right: 0.4rem;
}

.cookie-text {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--primary);
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--primary-dark, #8a5a3a);
    border-color: var(--primary-dark, #8a5a3a);
}

.cookie-decline {
    background: transparent;
    color: var(--primary);
}

.cookie-decline:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

.admin-filter-btn.filter-confirmed.active {
    background: #2ecc71;
    border-color: #2ecc71;
}

.admin-filter-btn.filter-cancelled.active {
    background: #e74c3c;
    border-color: #e74c3c;
}

.admin-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.9rem;
}

.admin-table thead {
    background: var(--secondary);
    color: #fff;
}

.admin-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

.admin-table .row-cancelled {
    opacity: 0.55;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.admin-cancel-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.admin-cancel-btn:hover {
    background: #c0392b;
}

.admin-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.admin-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.admin-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.admin-tab {
    padding: 12px 25px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    position: relative;
}

.admin-tab:hover {
    color: var(--primary);
}

.admin-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.admin-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 700;
}

.review-stars-small {
    color: #f5a623;
    font-size: 0.85rem;
    white-space: nowrap;
}

.review-stars-small .far {
    color: #ddd;
}

.review-comment-cell {
    max-width: 300px;
    white-space: normal;
    line-height: 1.4;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.admin-actions-group {
    display: flex;
    gap: 6px;
}

.admin-approve-btn {
    background: #2ecc71;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-approve-btn:hover {
    background: #27ae60;
}

.admin-delete-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-delete-btn:hover {
    background: #c0392b;
}

@media (max-width: 768px) {
    .admin-section {
        padding: 100px 15px 40px;
    }
    .admin-table {
        font-size: 0.8rem;
    }
    .admin-table th,
    .admin-table td {
        padding: 10px 10px;
    }
}

/* ========== Login Page ========== */
.login-section {
    padding: 140px 20px 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 50px 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.login-form {
    text-align: left;
}

.login-field {
    margin-bottom: 20px;
}

.login-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.login-field input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.login-field input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 180, 80, 100), 0.15);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ============================================
   HERO VIDEO BACKGROUND
   ============================================ */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-pinterest {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0.93;
    max-height: 80vh;
    overflow-y: auto;
}

.hero-sound-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.hero-sound-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--white);
    transform: scale(1.1);
}

/* ============================================
   PINTEREST SECTION
   ============================================ */
.pinterest-section {
    padding: 80px 0;
    background: var(--white);
}

.pinterest-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pinterest-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    flex-shrink: 0;
}

.pinterest-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .pinterest-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .pinterest-item iframe {
        width: 100%;
        max-width: 345px;
    }
    .hero-sound-btn {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

/* ========== Additional Responsive Fixes ========== */
@media (max-width: 360px) {
    .hero-name {
        font-size: 1.8rem;
    }
    .section-title, .section-title-center {
        font-size: 1.5rem;
    }
    .admin-tab {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    .login-card {
        padding: 35px 25px;
    }
}

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