/**
 * AP's Salon - Modern Beauty & Salon Website
 * Comprehensive CSS Stylesheet
 * Author: Professional Development Team
 * Version: 2.0
 */

/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    /* Primary Color Palette */
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #e8d5a3;
    
    /* Secondary Colors */
    --secondary-color: #8b4513;
    --accent-color: #ff6b6b;
    
    /* Neutral Colors */
    --dark-color: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Dancing Script', cursive;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 100px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    line-height: 1.1;
}
h2 { 
    font-size: 2.75rem; 
    font-weight: 700;
}
h3 { 
    font-size: 2.25rem; 
    font-weight: 600;
}
h4 { 
    font-size: 1.75rem; 
    font-weight: 600;
}
h5 { 
    font-size: 1.375rem; 
    font-weight: 600;
}
h6 { 
    font-size: 1.125rem; 
    font-weight: 500;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    /* line-height: 1.8; */
}

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

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-gray) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-logo {
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
    text-shadow: 0 2px 10px rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo img {
    animation: pulse 2s ease-in-out infinite;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212,175,55,0.2);
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    position: relative;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(212,175,55,0.3);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.99);
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--text-white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-link {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--primary-color);
}

.top-bar-link svg {
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    padding: 0.7rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo-img { 
    width: 240px;
}

.logo-text {
    color: var(--primary-color);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    position: relative;
    transition: var(--transition-fast);
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-appointment {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    margin-left: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-appointment:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

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

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(212,175,55,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 800px;
}

.hero-content h6 {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(212,175,55,0.5);
    font-family: var(--font-primary);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 3px 3px 15px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-content h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-content a {
    color: var(--text-white);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
    background: var(--primary-color);
    border-color: rgba(255,255,255,0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-padding {
    padding: 5rem 0;
}

/* Section with pattern background */
.section-pattern {
    position: relative;
    overflow: hidden;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212,175,55,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-pattern > * {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(212,175,55,0.1);
    border-radius: 30px;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    position: relative;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 2rem auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 767.98px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(184,148,31,0.1) 100%);
    transition: var(--transition-slow);
    z-index: 0;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212,175,55,0.2);
    border-color: var(--primary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(212,175,55,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 15px rgba(212,175,55,0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.service-card:hover .service-icon {
    background: #fff;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    inset: -10px;
}

.service-icon i { 
    color: var(--primary-color);
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-card:hover .service-icon i {
    color: var(--text-white);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.service-card h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #f9f4e5;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    /* line-height: 1.9; */
    font-size: 1.0625rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    border: 1px solid #999;
}

.feature-item:hover {
    background: rgba(212,175,55,0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 38px;
    height: 38px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    background: #fff;
    border-radius: 20px;
}

.about-images {
    display: grid;
    /* grid-template-columns: 1fr 1fr;
    gap: 1rem; */
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition-normal);
    position: relative;
    margin-bottom: 30px;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.25);
}

.about-image img {
    width: 100%; 
    object-fit: contain;
    transition: var(--transition-slow); 
}

.about-image:hover img {
    transform: scale(1.15);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(212,175,55,0.3);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.85) 0%, rgba(184,148,31,0.85) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::after {
    display: none;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    transition: var(--transition-normal);
    opacity: 0;
    pointer-events: none;
}

.gallery-icon i {
    font-size: 3rem;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2);
    filter: brightness(0.7);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(212,175,55,0.15);
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(212,175,55,0.15) 100%);
    color: var(--primary-dark);
    font-weight: 700;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: rotate(0deg);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.2);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-date {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.blog-date span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-content h5 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-content h5 a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.blog-content h5 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    gap: 1rem;
}

/* ============================================
   REVIEWS/TESTIMONIALS SECTION
   ============================================ */
.reviews-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-gray) 50%, var(--dark-color) 100%);
    background-size: 200% 200%;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    animation: gradientShift 12s ease infinite;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212,175,55,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.reviews-section > .container {
    position: relative;
    z-index: 1;
}

.reviews-slider {
    margin-top: 3rem;
}

.review-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    /* background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%); */
    opacity: 0;
    transition: var(--transition-slow);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.3);
    border-color: rgba(212,175,55,0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.review-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
    transition: var(--transition-normal);
}

.review-card:hover .review-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-text {
    font-style: italic;
    color: rgba(255,255,255);
    margin-bottom: 1.5rem; 
    font-size: 16px;
    position: relative;
    padding: 0 1rem;
}

.review-text::before,
.review-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: var(--font-heading);
    position: absolute;
    line-height: 1;
}

.review-text::before {
    top: -10px;
    left: -10px;
}

.review-text::after {
    bottom: -30px;
    right: -10px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.review-stars {
    color: var(--primary-color); 
    font-size: 1.25rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h5 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(212,175,55,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212,175,55,0.2);
    transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.contact-item:hover .contact-icon svg {
    color: var(--text-white);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.contact-details h6 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    margin: 0;
}

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

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
    background: #fafafa;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

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

/* ============================================
   APPOINTMENT SECTION
   ============================================ */
.appointment-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-gray) 50%, var(--dark-color) 100%);
    background-size: 200% 200%;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.appointment-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.appointment-section > .container {
    position: relative;
    z-index: 1;
}

.appointment-form {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.appointment-form .form-control {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--text-white);
}
.appointment-form select.form-control{ 
    color: #000 !important;
}

.appointment-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.appointment-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-color);
}

.appointment-form .form-label {
    color: var(--text-white);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark-color);
    color: var(--text-white);
    padding-top: var(--spacing-xl);
}

.footer-top {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
    position: relative;
    padding-bottom: 1rem;
}

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

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-normal);
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}
.footer-links li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.3em;
    line-height: 1.7;
}
.footer-links li::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: #FFD700; /* Gold/yellow */
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.75rem;
    font-weight: 600;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--primary-color);
}

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

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

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: rgba(255,255,255,0.3);
}

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

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

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-gray) 50%, var(--dark-color) 100%);
    background-size: 200% 200%;
    padding: 4rem 0;
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.breadcrumb-section > .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    color:#fff
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.7);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* ============================================
   BLOG DETAIL PAGE
   ============================================ */
.blog-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.blog-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-date-badge,
.blog-author-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.blog-detail-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.125rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-share {
    display: flex;
    gap: 1rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.recent-post-link:hover {
    transform: translateX(5px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-widget > * {
    position: relative;
    z-index: 1;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Services Box Section */
.services-box-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.services-box-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212,175,55,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-box-section > .container {
    position: relative;
    z-index: 1;
}

/* Additional Utility Classes */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-white { color: var(--text-white); }
.bg-white { background: var(--white); }
.rounded { border-radius: var(--radius-md); }
.shadow { box-shadow: var(--shadow-md); }

/* Elegant Divider */
.elegant-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 2rem auto;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .section-heading {
        font-size: 2.25rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .btn-appointment {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
        .hero-content h4 {
        font-size: 1rem;
    }
    
    .services-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .section-heading::before {
        width: 40px;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form,
    .appointment-form {
        padding: 1.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .breadcrumb-title {
        font-size: 1.75rem;
    }
    
    .preloader-logo {
        font-size: 2rem;
    }
    
    .service-card,
    .blog-card {
        padding: 1.5rem;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

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

/* ============================================
   ERROR & SUCCESS MESSAGES
   ============================================ */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left-color: #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left-color: #dc3545;
}

.notification-toast {
    animation: slideInRight 0.4s ease;
    min-width: 350px;
    max-width: 500px;
}

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

.error-text {
    width: 100%;
    margin-top: 5px;
    font-size: 13px;
    color: #dc3545;
    background: #ff4073e6;
    /* padding: 0.5rem 1rem; */
    border-radius: var(--radius-sm);
    color: #ffe7e9 !important;
}
 
