/* Base Styles */
:root {
    --primary: #b784a7;
    --secondary: #f8e9f0;
    --accent: #87677b;
    --dark: #3a2932;
    --light: #fff9fb;
    --transition: all 0.3s ease;
    --spacing-unit: 8px;
    --typography-base: 1rem;
    --sidebar-width: 280px;
    --sidebar-collapsed: 80px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background-color: var(--light);
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s ease;
}

body.sidebar-collapsed {
    margin-left: var(--sidebar-collapsed);
}

/* Typography Scale */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

p {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.section {
    margin-bottom: calc(var(--spacing-unit) * 10);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Side Navigation */
.side-navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: 1000;
    transition: width 0.3s ease;
    overflow: hidden;
}

.side-navbar.collapsed {
    width: var(--sidebar-collapsed);
}

.nav-container {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    text-align: center;
    margin-bottom: 50px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.side-navbar.collapsed .logo {
    opacity: 0;
}

.logo h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}

.logo span {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    flex-grow: 1;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.nav-link i {
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.nav-link span {
    transition: opacity 0.3s ease;
}

.side-navbar.collapsed .nav-link span {
    opacity: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.nav-toggle {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-toggle:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light), var(--secondary));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 132, 167, 0.1), rgba(135, 103, 123, 0.1));
}

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    padding: 0 50px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    animation: underlineGrow 1s ease-out 1s both;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 40px;
    max-width: 600px;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 500px;
    margin-right: 50px;
}

.hero-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    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.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 20px rgba(184, 132, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(184, 132, 167, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    color: var(--dark);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.service-content {
    padding: 30px;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 20px;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-content h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--accent);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--secondary);
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slideshow-slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.slideshow-slide.active {
    display: block;
}

.slideshow-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-dots {
    text-align: center;
    padding: 30px 0;
    background: white;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.client-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    margin: 0 2px;
    font-size: 18px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-name {
    font-weight: 600;
    color: var(--dark);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 0;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(184, 132, 167, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(184, 132, 167, 0.5);
}

.fab-btn i {
    font-size: 24px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(184, 132, 167, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(184, 132, 167, 0.6);
    }
    100% {
        box-shadow: 0 8px 20px rgba(184, 132, 167, 0.4);
    }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideRight 0.8s ease-out forwards;
}

.animate-scale-up {
    opacity: 0;
    animation: scaleUp 0.6s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    
    .hero-content {
        padding: 0 30px;
        margin-bottom: 50px;
    }
    
    .hero-image {
        margin-right: 0;
        max-width: 400px;
    }
    
    .hero-main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        margin-left: 0;
    }
    
    .side-navbar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .side-navbar.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        right: 20px;
        top: 20px;
        position: fixed;
        z-index: 1001;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
    }
    
    .fab-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services,
    .portfolio,
    .testimonials {
        padding: 60px 0;
    }
    
    .service-card,
    .testimonial-card {
        margin: 0 10px;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-left: calc(-1 * var(--sidebar-width));
    padding-left: var(--sidebar-width);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
    background: white;
}

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

.about-text h2 {
    color: var(--dark);
    margin-bottom: 30px;
}

.about-text p {
    color: var(--accent);
    margin-bottom: 25px;
    line-height: 1.7;
}

.credentials {
    margin-top: 40px;
}

.credentials h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--accent);
}

.credentials li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 16px;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: var(--secondary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.philosophy-icon i {
    font-size: 30px;
    color: white;
}

.philosophy-card h3 {
    color: var(--dark);
    margin-bottom: 20px;
}

.philosophy-card p {
    color: var(--accent);
    line-height: 1.6;
}

/* Specialties Section */
.specialties {
    padding: 100px 0;
    background: white;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.specialty-item {
    text-align: center;
    padding: 30px 20px;
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.specialty-icon i {
    font-size: 24px;
    color: white;
}

.specialty-item h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.specialty-item p {
    color: var(--accent);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Booking Page Styles */
.booking-section {
    padding: 100px 0;
    background: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-form-container h2 {
    color: var(--dark);
    margin-bottom: 30px;
}

.setmore-booking-widget {
    background: var(--secondary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.setmore-booking-widget p {
    color: var(--accent);
    margin-bottom: 30px;
}

.setmore-booking-widget img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.setmore-booking-widget img:hover {
    transform: scale(1.05);
}

.booking-info h3 {
    color: var(--dark);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--accent);
    line-height: 1.6;
}

.pricing-info {
    margin-top: 50px;
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.pricing-info h3 {
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(184, 132, 167, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--dark);
    font-weight: 500;
}

.price-item span:last-child {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Policies Section */
.policies {
    padding: 100px 0;
    background: var(--secondary);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.policy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.policy-icon i {
    font-size: 24px;
    color: white;
}

.policy-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.policy-card p {
    color: var(--accent);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.contact-item i {
    font-size: 30px;
    color: var(--primary);
    margin-right: 20px;
}

.contact-item h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--accent);
    line-height: 1.6;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .page-hero {
        margin-left: 0;
        padding-left: 0;
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-placeholder {
        width: 250px;
        height: 300px;
    }
    
    .philosophy-grid,
    .specialties-grid,
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}


