/* --- NEW BRANDING COLOR PALETTE --- */
:root {
    --primary-color: #0A3A53; /* Deep Navy Blue */
    --secondary-color: #A8C4A9; /* Sage Green */
    --accent-color: #E4B5C6; /* Dusty Pink */
    --bg-main: #FDFBF7; /* Soft Beige */
    --text-color: #5C554B; /* Taupe/Brown */
    --white: #FFFFFF;
    --charcoal: #1E1E1E;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white h2 { color: var(--white); }

/* Background Utility Classes */
.bg-sage { background-color: var(--secondary-color); color: var(--primary-color); }
.bg-sage p { color: var(--primary-color); }
.bg-navy { background-color: var(--primary-color); color: var(--bg-main); }
.bg-navy p { color: var(--bg-main); }
.bg-navy h2, .bg-navy h4 { color: var(--accent-color); }
.mt-4 { margin-top: 2rem; }

/* --- Global Watermark --- */
.global-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-family: var(--font-heading);
    color: var(--primary-color);
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(10, 58, 83, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(10, 58, 83, 0.25);
    background-color: #072b3e;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(228, 181, 198, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    background-color: #d69db0;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-link:hover { color: var(--accent-color); gap: 12px; }

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}
.nav-links a:hover { color: var(--accent-color); }

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background: url('https://images.unsplash.com/photo-1599447421416-3414500d18a5?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(253, 251, 247, 0.9), rgba(253, 251, 247, 0.4));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 5%;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Glassmorphism & Blobs (Updated to Watercolor Palette) */
.glass-card {
    background: rgba(253, 251, 247, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.hero-stats {
    position: absolute;
    bottom: 5%;
    display: flex;
    gap: 40px;
    padding: 20px 50px;
}

.stat-item h3 {
    font-size: 2.5rem;
    display: inline;
    color: var(--primary-color);
}
.stat-item span {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: -1;
    opacity: 0.5;
}
.blob-1 {
    width: 400px; height: 400px;
    background: var(--accent-color);
    top: -10%; right: -5%;
}
.blob-2 {
    width: 300px; height: 300px;
    background: var(--secondary-color);
    bottom: 10%; left: -5%;
}

/* --- About Section --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.floating-leaf {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--accent-color);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    color: inherit;
}
.accent-text { color: var(--accent-color); font-style: italic; }

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-list i { color: var(--secondary-color); font-size: 1.2rem; }

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(228, 181, 198, 0.15) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 58, 83, 0.1);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-color);
}
.service-benefits i { color: var(--accent-color); }

/* --- Why Choose Us --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.icon-wrapper {
    width: 80px; height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

/* --- Journey Timeline --- */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 30px; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.2);
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 60px; height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.timeline-step h4 { color: var(--bg-main); }

/* --- Transformation --- */
.infographic-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.info-box {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    flex: 1;
}

.info-box h3 { text-align: center; font-size: 2rem; margin-bottom: 20px; }
.info-box.before h3 { color: var(--text-color); }
.info-box.after h3 { color: var(--primary-color); }

.info-box ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.before ul li i { color: #e74c3c; }
.after ul li i { color: var(--primary-color); }

.arrow-divider {
    font-size: 3rem;
    color: var(--primary-color);
}

/* --- Testimonials --- */
.testimonial-slider { padding: 50px 10px; }
.swiper-slide {
    padding: 40px;
    text-align: center;
}

.stars { color: var(--accent-color); margin-bottom: 20px; }
.review {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info img {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

/* --- FAQ Accordion --- */
.accordion-container { max-width: 800px; margin: 50px auto 0; }
.accordion-item {
    background: var(--bg-main);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-header h4 { margin: 0; color: var(--primary-color); font-family: var(--font-body); font-weight: 500;}
.accordion-header i { transition: transform 0.4s ease; color: var(--primary-color); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}
.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.blog-card {
    background: var(--bg-main);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-10px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 30px; }

/* --- Contact & Booking --- */
.full-width { width: 100%; display: block; }

.contact-details { margin-top: 30px; }
.contact-item {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 20px;
}
.contact-item i {
    font-size: 1.5rem; color: var(--accent-color);
}
.contact-item h4 { margin: 0; color: var(--accent-color); font-size: 1rem;}

.social-embed {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.instagram-card {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 10px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.instagram-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}
.instagram-card i { font-size: 1.8rem; color: #E1306C; }
.instagram-card span { font-weight: 500; font-size: 1.1rem; }

/* --- Footer --- */
.footer {
    background: var(--bg-main);
    color: var(--text-color);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-watermark {
    position: absolute;
    bottom: -10%; right: -5%;
    font-family: var(--font-heading);
    font-size: 15vw;
    color: var(--primary-color);
    opacity: 0.03;
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.footer h2 { color: var(--primary-color); font-size: 2.5rem; }
.footer h4 { color: var(--primary-color); }
.social-icons { margin-top: 20px; display: flex; gap: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
}
.social-icons a:hover { background: var(--accent-color); color: var(--primary-color); border-color: var(--accent-color); }

.footer-links ul li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent-color); }

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

/* --- WhatsApp Integrations --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; left: 30px;
    background: #25D366; color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform 0.4s;
}
.floating-whatsapp:hover { transform: scale(1.1); }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .split-layout { grid-template-columns: 1fr; }
    .infographic-container { flex-direction: column; }
    .arrow-divider { transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .timeline { flex-direction: column; gap: 40px; margin-left: 30px; }
    .timeline-line {
        width: 2px; height: 100%;
        top: 0; left: 30px;
    }
    .timeline-step { display: flex; align-items: flex-start; text-align: left; gap: 20px; padding: 0; }
    .step-number { margin: 0; flex-shrink: 0; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .hamburger { display: block; }
    
    .hero-title { font-size: 2.8rem; }
    .hero-stats { position: relative; bottom: 0; margin-top: 50px; flex-direction: column; gap: 20px; padding: 30px; }
    .hero-buttons { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; }
}
