/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #FAF7F2;
    overflow-x: hidden;
}

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

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(108, 99, 155, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6C639B, #B794C4);
    width: 0%;
    transition: width 0.1s ease;
}

/* Header Styles - Enhanced */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(245, 242, 232, 0.95), rgba(237, 231, 217, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(245, 242, 232, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
    order: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d5a44;
    font-weight: 800;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

.logo-icon {
    transition: transform 0.3s ease;
}

.logo-placeholder:hover .logo-icon {
    transform: rotate(180deg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    order: 2;
}

.contact-details {
    display: none;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(108, 99, 155, 0.3);
    color: #2D2D2D;
    padding: 12px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    min-height: 44px;
    min-width: 44px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 155, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    border-color: #6C639B;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 155, 0.2);
}

.nav-btn.active {
    background: rgba(108, 99, 155, 0.15);
    border-color: #6C639B;
    transform: translateY(-1px);
}

.cta-btn {
    background: linear-gradient(135deg, #6C639B, #B794C4) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(108, 99, 155, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 99, 155, 0.4);
}

/* Hero Section - Dynamic Layout */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    display: flex;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 45, 45, 0.4), 
        rgba(108, 99, 155, 0.3),
        rgba(45, 90, 68, 0.2)
    );
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 20px;
}

.hero-text {
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: titleSlideIn 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-line.highlight {
    background: linear-gradient(135deg, #034224, #022b18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: subtitleFadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes subtitleFadeIn {
    to { opacity: 0.9; }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Enhanced Typography and Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background: linear-gradient(135deg, #6C639B, #B794C4);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.booking-shape {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6C639B, #B794C4);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
}

.section-title.light {
    color: #FFFFFF;
}

.section-title .highlight {
    background: linear-gradient(135deg, #6C639B, #B794C4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.light .highlight {
    background: linear-gradient(135deg, #FFFFFF, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle.light {
    color: #FFFFFF;
}

/* Asymmetric Layouts */
.section-content.asymmetric {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.asymmetric.reverse {
    direction: rtl;
}

.section-content.asymmetric.reverse > * {
    direction: ltr;
}

/* About Section - New Layout */
.section-about {
    background: linear-gradient(135deg, #F5F2E8, #EDE7D9);
    color: #2D2D2D;
    .about-img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(108, 99, 155, 0.2);
  border: 2px solid rgba(108, 99, 155, 0.2);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(108, 99, 155, 0.25);
}

}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.about-text-content {
    order: 1;
}

.about-photo {
    order: 2;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px dashed rgba(108, 99, 155, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    border-color: rgba(108, 99, 155, 0.5);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 99, 155, 0.15);
}

.placeholder-icon {
    color: rgba(108, 99, 155, 0.6);
}

.photo-placeholder p {
    color: rgba(108, 99, 155, 0.8);
    font-weight: 600;
    font-size: 1.1rem;
}

.about-text {
    margin-bottom: 0;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
}

.highlight-text {
    color: #6C639B !important;
    font-weight: 600;
    font-style: italic;
}

/* Education Section - Full Width */
.education-section-full {
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(108, 99, 155, 0.1);
    margin-top: 40px;
}

.education-section-full h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #2D2D2D;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
    justify-content: center;
}

.education-section-full h4::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #6C639B, #B794C4);
    border-radius: 2px;
}

.education-section-full h4::after {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #6C639B, #B794C4);
    border-radius: 2px;
}

.education-content-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.education-content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.education-content-text strong {
    color: #6C639B;
    font-weight: 600;
}

/* Services Section - Single Profile Design */
.section-services {
    background: linear-gradient(135deg, #064e3b, #065f46, #047857);
    color: #FFFFFF;
    position: relative;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Single Service Container */
.single-service-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-profile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.service-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-profile:hover::before {
    left: 100%;
}

.service-profile:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.physio-profile {
    border-left: 4px solid #6C639B;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6C639B, #B794C4);
}

.profile-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.service-list {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.service-item p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-weight: 600;
    opacity: 0.8;
}

.price-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF;
}

/* Booking Section - Enhanced with reversed layout */
.section-booking {
    background: linear-gradient(135deg, #F5F2E8, #EDE7D9);
    color: #2D2D2D;
}

.booking-content {
    max-width: 700px;
}

.booking-info {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(108, 99, 155, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 99, 155, 0.15);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6C639B, #B794C4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.info-content h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #2D2D2D;
    font-size: 1.2rem;
}

.info-content p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

.info-content strong {
    color: #6C639B;
}

.preparation-list p {
    margin-bottom: 15px;
    font-weight: 600;
}

.preparation-items {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.preparation-items li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.preparation-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6C639B;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid transparent;
    min-height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #6C639B, #B794C4);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(108, 99, 155, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 155, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #6C639B;
    border-color: #6C639B;
}

.btn-secondary:hover {
    background: rgba(108, 99, 155, 0.1);
    transform: translateY(-2px);
}

/* Opening Hours - Enhanced */
.opening-hours-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.opening-hours-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(108, 99, 155, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.opening-hours-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(108, 99, 155, 0.1);
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6C639B, #B794C4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon svg {
    color: #FFFFFF;
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D2D2D;
    margin: 0;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(245, 242, 232, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: rgba(245, 242, 232, 0.8);
    transform: translateX(5px);
}

.hours-row.closed {
    background: rgba(45, 45, 45, 0.05);
    opacity: 0.7;
}

.day {
    font-weight: 600;
    color: #2D2D2D;
    font-size: 1rem;
}

.hours {
    font-weight: 600;
    color: #6C639B;
    font-size: 1rem;
}

.hours-row.closed .hours {
    color: #999;
    font-style: italic;
}

.card-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(108, 99, 155, 0.1);
    display: flex;
    justify-content: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ef4444;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D2D2D, #1a1a1a);
    border-top: 1px solid #E5DDD1;
    padding: 60px 0 30px;
    color: #FAF7F2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #6C639B;
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6C639B, #B794C4);
    border-radius: 2px;
}

.footer-section p {
    color: #B8B8B8;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4A4A4A;
    color: #B8B8B8;
}

/* TABLET STYLES */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-end;
        order: 2;
    }
    
    .contact-details {
        display: flex;
        gap: 24px;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #2D2D2D;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }
    
    .contact-item svg {
        color: #2d5a44;
        flex-shrink: 0;
    }
    
    .nav-buttons {
        gap: 12px;
    }
    
    .nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .logo {
        order: 1;
    }
    
    .hero {
        margin-top: 90px;
    }
    
    .section {
        padding: 120px 0;
    }
    
    .section-content.asymmetric {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .about-main-content {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }
    
    .about-text-content {
        order: 1;
    }
    
    .about-photo {
        order: 2;
    }
    
    .service-list {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .opening-hours-card {
        max-width: 500px;
        padding: 50px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-section h4::after {
        left: 0;
        transform: none;
    }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
    .header-content {
        gap: 40px;
    }
    
    .contact-details {
        gap: 32px;
    }
    
    .nav-buttons {
        gap: 16px;
    }
    
    .nav-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .section {
        padding: 140px 0;
    }
    
    .section-content.asymmetric {
        gap: 100px;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
    
    .service-profile {
        padding: 50px;
    }
    
    .slider-controls {
        padding: 0 60px;
    }
    
    .slider-btn {
        width: 70px;
        height: 70px;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-btn,
    .btn,
    .slider-btn,
    .dot {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Focus styles for accessibility */
.nav-btn:focus,
.btn:focus,
.slider-btn:focus,
.dot:focus {
    outline: 3px solid #6C639B;
    outline-offset: 2px;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section-content > * {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .section-content.animate > * {
        opacity: 1;
        transform: translateY(0);
    }
    
    .service-profile {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-profile.animate {
        opacity: 1;
        transform: translateY(0);
    }
}
