﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --primary-color: #B76E79; /* Rose Gold */
    --primary-glow: rgba(183, 110, 121, 0.3);
    --secondary-color: #e8a598; /* Peach/Soft Coral */
    --bg-color: #FFF0F5; /* Lavender Blush / Light Pink */
    --bg-lighter: #FFFFFF; /* White */
    --text-color: #4a4a4a;
    --text-muted: #777777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

p { margin-bottom: 15px; color: var(--text-muted); }
a { text-decoration: none; color: var(--primary-color); transition: var(--transition); }
a:hover { color: var(--secondary-color); }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; text-transform: capitalize; position:relative; display:inline-block; }
.section-title::after {
    content:''; position:absolute; left:50%; bottom:-10px; transform:translateX(-50%);
    width: 50px; height: 2px; background: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block; padding: 14px 35px; background-color: transparent;
    color: var(--primary-color); border: 2px solid var(--primary-color);
    font-family: var(--font-heading); border-radius: 30px;
    font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
.btn:hover { background-color: var(--primary-color); color: var(--bg-lighter); box-shadow: 0 8px 15px var(--primary-glow); transform: translateY(-3px); }
.btn-primary { background-color: var(--primary-color); color: var(--bg-lighter); }
.btn-primary:hover { background-color: transparent; color: var(--primary-color); }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); padding: 15px 0; z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container img { height: 50px; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links li a { color: var(--text-color); font-size: 1.05rem; font-weight: 500; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--primary-color); font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover; background-position: center;
    position: relative; display: flex; align-items: center; padding-top: 80px;
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,240,245,0.7) 100%); z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; max-width: 600px;
    animation: fadeInUp 1.5s ease;
}
.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--primary-color); }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 35px; color: var(--text-color); font-family: var(--font-heading); font-style: italic; }

/* Dashboard / Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.service-card {
    background: var(--bg-lighter); padding: 40px 30px;
    border-radius: var(--border-radius); text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition);
    border: 1px solid rgba(183,110,121,0.1);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(183,110,121,0.15); border-color: var(--primary-color); }
.service-icon { font-size: 3.5rem; color: var(--secondary-color); margin-bottom: 25px; transition: var(--transition); }
.service-card:hover .service-icon { color: var(--primary-color); transform: scale(1.1); }
.service-card h3 { font-size: 1.5rem; color: var(--primary-color); }

/* About Section */
.about-content { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; border-radius: var(--border-radius); box-shadow: 0 20px 40px rgba(0,0,0,0.1); position:relative; z-index:2; }
.about-image::before {
    content:''; position:absolute; width:100%; height:100%; top:20px; left:-20px;
    background: var(--secondary-color); opacity: 0.2; border-radius: var(--border-radius); z-index:1;
}

.features-list { list-style: none; margin-top: 25px; }
.features-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; color: var(--text-color); font-weight: 500; }
.features-list li i { color: var(--primary-color); font-size: 1.2rem; }

/* Testimonials */
.testimonials { background-color: var(--bg-lighter); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background: var(--bg-color); padding: 40px; border-radius: var(--border-radius);
    text-align: center; position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: -10px; left: 20px;
    font-size: 6rem; color: var(--primary-color); opacity: 0.2; font-family: var(--font-heading);
}
.testimonial-text { font-style: italic; margin-bottom: 20px; font-size: 1.1rem; position:relative; z-index:2; }
.testimonial-author { color: var(--primary-color); font-weight: bold; font-family: var(--font-heading); font-size: 1.2rem; }

/* Gallery slider & Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--border-radius); height: 350px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.pricing-card {
    background: var(--bg-lighter); padding: 50px 30px; text-align: center;
    border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(183,110,121,0.15); }
.pricing-card h3 { font-size: 2rem; }
.pricing-price { font-size: 3rem; color: var(--primary-color); margin: 20px 0; font-family: var(--font-heading); }
.pricing-list { list-style: none; margin-bottom: 35px; }
.pricing-list li { padding: 12px 0; border-bottom: 1px dashed rgba(183,110,121,0.2); }
.pricing-list li:last-child { border-bottom: none; }

/* Forms */
.form-container {
    background: var(--bg-lighter); padding: 50px; border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); max-width: 700px; margin: 0 auto;
}
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; color: var(--text-color); font-weight: 500; }
.form-control {
    width: 100%; padding: 15px 20px; background: var(--bg-color);
    border: 1px solid transparent; color: var(--text-color);
    border-radius: 30px; font-family: var(--font-body); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary-color); background: var(--bg-lighter); box-shadow: 0 0 10px var(--primary-glow); }
textarea.form-control { resize: vertical; height: 150px; border-radius: 20px; }

/* Page Header */
.page-header { background-color: var(--primary-color); padding: 150px 0 80px; text-align: center; color: var(--bg-lighter); position:relative; overflow:hidden;}
.page-header::before {
    content:''; position:absolute; inset:0; background: url('https://www.transparenttextures.com/patterns/cream-pixels.png'); opacity:0.1;
}
.page-header h1 { font-size: 3.5rem; margin-bottom: 15px; color: var(--bg-lighter); position:relative; z-index:2;}
.page-header p { font-style: italic; font-size: 1.3rem; color: rgba(255,255,255,0.9); position:relative; z-index:2;}

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-lighter); margin-bottom: 20px; border-radius: var(--border-radius); overflow:hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.faq-q { padding: 25px; cursor: pointer; display: flex; justify-content: space-between; font-family: var(--font-heading); color: var(--primary-color); font-size: 1.3rem; font-weight: 600; }
.faq-a { padding: 0 25px; max-height: 0; overflow: hidden; transition: var(--transition); background: var(--bg-color); }
.faq-item.active .faq-a { padding: 25px; max-height: 500px; }
.faq-item.active .faq-q { background: var(--primary-color); color: var(--bg-lighter); }

/* Floating Buttons */
.floating-whatsapp {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366;
    color: white; width: 65px; height: 65px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
    box-shadow: 0 10px 20px rgba(37,211,102,0.3); z-index: 1000; transition: var(--transition);
}
.floating-whatsapp:hover { transform: translateY(-5px); color: white; box-shadow: 0 15px 25px rgba(37,211,102,0.4); }

.floating-call {
    position: fixed; bottom: 105px; right: 30px; background-color: var(--primary-color);
    color: white; width: 55px; height: 55px; border-radius: 50%;
    display: none; align-items: center; justify-content: center; font-size: 24px;
    box-shadow: 0 10px 20px var(--primary-glow); z-index: 1000;
}

/* Footer */
footer { background-color: var(--bg-lighter); padding: 80px 0 30px; border-top: 1px solid rgba(183,110,121,0.1); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.5rem; position:relative; padding-bottom:10px; }
.footer-col h4::after { content:''; position:absolute; left:0; bottom:0; width:30px; height:2px; background:var(--primary-color); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary-color); padding-left: 5px; }

.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a {
    width: 45px; height: 45px; background: var(--bg-color);
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    color: var(--primary-color); transition: var(--transition);
}
.social-links a:hover { background: var(--primary-color); color: var(--bg-lighter); transform:translateY(-3px); }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.05); font-size: 0.95rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; flex-direction: column; width: 100%; position: absolute;
        top: 100%; left: 0; background: var(--bg-lighter); padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 3rem; }
    .about-content { flex-direction: column; }
    .floating-call { display: flex; }
    .section { padding: 60px 0; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* Force Logo Sizes */
.logo { max-height: 40px !important; width: auto !important; object-fit: contain !important; }
.logo-container img { max-height: 40px !important; height: auto !important; }

