* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #8B4513;
    --accent: #D4AF37;
    --light: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light);
    color: var(--primary);
    overflow-x: hidden;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    max-width: 390px;
    margin: 0 auto;
    
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--secondary);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.book-btn {
    background: linear-gradient(135deg, var(--secondary), #654321);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
    height: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 2rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 320px;
    margin: 0 auto;
}

.primary-btn {
    background: linear-gradient(135deg, var(--secondary), #654321);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.25);
    position: relative;
    overflow: hidden;
}

.primary-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;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.35);
}

.secondary-btn {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 0.85rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

/* Carousel Section */
.carousel-section {
    padding: 1rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    height: 650px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: var(--secondary);
}

/* Services Section */
.services {
    padding: 2.5rem 1.5rem;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
}

.section-title p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    max-width: 350px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 400px;
    margin: 0 auto;
}

.service-card {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    background: rgba(139, 69, 19, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--primary);
    font-weight: 600;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

/* About Section */
.about {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
}

.about-text {
    max-width: 400px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 2.5rem 1.5rem;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.author-info p {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
}

.contact-container {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.contact-text p, .contact-text a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.footer-column p, .footer-column a {
    color: #adb5bd;
    text-decoration: none;
    line-height: 1.6;
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design for Mobile */
@media (max-width: 500px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        max-width: 100%;
    }
    
    .book-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .carousel-container {
        height: 420px;
    }
}

/* Founder Section */
.founder-section {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
    text-align: center;
}

.founder-container {
    max-width: 400px;
    margin: 0 auto;
}

.founder-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.founder-icon i {
    font-size: 2.5rem;
    color: white;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-title {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Instagram Button Styling */
.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, #E1306C, #C13584);
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #C13584, #E1306C);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.4);
    transform: translateY(-2px);
}

.instagram-btn i {
    font-size: 1.1rem;
}

.instagram-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(193, 53, 132, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instagram-circle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.4);
}

.instagram-circle i {
    position: relative;
    z-index: 1;
    left: 23px;
    bottom: -18px;
    
}

.instagram-circle::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;
}

.instagram-circle:hover::before {
    left: 100%;
}