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

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

em {
    font-style: italic;
    color: #FACAB8;
    font-weight: 500;
}

strong {
    font-weight: 600;
    color: #E89B85;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FACAB8;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #E89B85;
}

.phone-link i {
    font-size: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #fefefe 0%, #f9f7f4 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

.hero-intro {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    color: #666;
}

.hero-description {
    margin-top: 2rem;
}

.hero-description p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #E89B85;
    line-height: 1.8;
    font-style: italic;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Introduction Quote */
.intro {
    padding: 80px 20px;
    background: #FACAB8;
    color: white;
    text-align: center;
}

.intro-quote p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services */
.services {
    padding: 120px 20px;
    background-image: url('images/IMG_0462.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 254, 254, 0.65);
    backdrop-filter: blur(1px);
}

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

.services-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-block {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #FACAB8;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(250, 202, 184, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(250, 202, 184, 0.3);
}

.service-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.service-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-block p:last-child {
    margin-bottom: 0;
}

/* Mobile optimizations for services */
@media (max-width: 768px) {
    .services {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-block {
        padding: 20px;
    }
    
    .service-block h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-block p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .services-intro {
        margin-bottom: 40px;
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;
    background: #f9f7f4;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #E89B85;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: #FACAB8;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 120px 20px;
    background: #fefefe;
}

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

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Special Offer */
.special-offer {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FACAB8, #F5B5A1);
    color: white;
    text-align: center;
}

.offer-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.offer-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.offer-price {
    font-size: 3rem;
    font-weight: 600;
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
}

.offer-note {
    font-style: italic;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 120px 20px;
    background: #f9f7f4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #FACAB8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 16px;
}

.contact-details strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.contact-details a {
    color: #FACAB8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #E89B85;
}

.contact-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-note p {
    color: #888;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FACAB8;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
    background: white;
}

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

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #FACAB8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #E89B85;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    padding: 60px 20px 20px;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

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

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

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }
    
    .phone-link {
        font-size: 12px;
    }
    
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro {
        padding: 60px 15px;
    }
    
    .services {
        padding: 80px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials {
        padding: 80px 15px;
    }
    
    .about {
        padding: 80px 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .special-offer {
        padding: 80px 15px;
    }
    
    .contact {
        padding: 80px 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-item,
    .testimonial-item,
    .contact-method {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .service-item:nth-child(1) { animation-delay: 0.1s; }
    .service-item:nth-child(2) { animation-delay: 0.2s; }
    .service-item:nth-child(3) { animation-delay: 0.3s; }
    .service-item:nth-child(4) { animation-delay: 0.4s; }
    .service-item:nth-child(5) { animation-delay: 0.5s; }
    .service-item:nth-child(6) { animation-delay: 0.6s; }
}

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

/* Print Styles */
@media print {
    .header,
    .contact-form-container,
    .footer {
        display: none;
    }
    
    .hero,
    .intro,
    .special-offer {
        background: white !important;
        color: black !important;
    }
    
    .services,
    .testimonials,
    .about,
    .contact {
        page-break-inside: avoid;
    }
}
