/* CSS Variables & Design System */
:root {
    /* Brand Colors (From Mockup) */
    --color-navy: #1a2a47;      /* Main Navy text/background */
    --color-peach: #e38262;     /* Peach/Orange CTA */
    --color-peach-light: #fbece8; /* Soft Peach background */
    --color-peach-hover: #cf7153;
    
    /* Soft / Feminine Colors */
    --color-bg: #fdfdfd;
    --color-bg-alt: #fdf7f5;    /* Very light warm background */
    --color-white: #ffffff;
    
    /* Text Colors */
    --color-text-dark: #1a2a47; /* Navy text */
    --color-text-light: #64748b;
    
    /* Typography (Round Font) */
    --font-primary: 'Mitr', 'Prompt', sans-serif;
    
    /* UI Elements - Pill Shapes */
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --border-radius-pill: 50px; /* Fully rounded */
    
    --shadow-soft: 0 10px 40px -10px rgba(26, 42, 71, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(227, 130, 98, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-navy);
    line-height: 1.2;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: var(--color-navy);
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--color-peach);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-navy { color: var(--color-navy); }
.text-peach { color: var(--color-peach); }
.text-light { color: var(--color-text-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--border-radius-pill); /* Mockup uses pill shape */
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
}

.btn-primary {
    background-color: var(--color-peach);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(227, 130, 98, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-peach-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(26, 42, 71, 0.2);
}

.btn-navy:hover {
    background-color: #121e33;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-peach);
    border: 2px solid var(--color-peach);
}

.btn-outline:hover {
    background-color: var(--color-peach);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Mouse Icon Animation */
.mouse-icon {
    display: inline-block;
    width: 20px;
    height: 30px;
    border: 2px solid currentColor;
    border-radius: 10px;
    position: relative;
    vertical-align: middle;
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background-color: currentColor;
    border-radius: 2px;
    animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* Header & Navigation */
.header {
    background-color: rgba(253, 253, 253, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
}

.main-nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    align-items: center;
}

.main-nav a {
    color: var(--color-navy);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
}

.main-nav a:hover, .main-nav a.active {
    background-color: var(--color-peach-light);
    color: var(--color-peach);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-navy);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

/* Sections */
.section-pad {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--color-navy);
}
.section-title p {
    color: var(--color-text-light);
}

/* Soft Cards */
.soft-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

.soft-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* Two Column Layout */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Gallery / Works Grid */
.works-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}
.works-item {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    width: 100%;
    background-color: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
}
.works-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.works-item-top {
    position: relative;
    padding: 25px 20px 40px;
    border-radius: 12px 12px 0 0;
}
.works-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 10;
}
.works-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    margin-bottom: -35px;
}
.works-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -25px;
    display: flex;
    justify-content: center;
}
.works-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 4px solid white;
}
.works-item-bottom {
    padding: 10px 20px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.works-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
    margin-top: 15px;
}
.works-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}
.works-btn {
    display: inline-block;
    padding: 10px 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--color-navy);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}
.works-btn:hover {
    background-color: var(--color-peach-light);
    border-color: var(--color-peach);
    color: var(--color-peach);
}

/* Services / Pricing Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}
.service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-peach);
}
.service-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.service-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}
.service-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}
.service-list li::before {
    content: '✓';
    color: var(--color-navy);
}
.service-price {
    font-size: 1rem;
    color: var(--color-peach);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .two-cols {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(26, 42, 71, 0.1);
        border-radius: 0 0 20px 20px;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

.works-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

@media (max-width: 600px) {
    .works-grid {
        gap: 20px;
    }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.bg-blob { position: absolute; z-index: -1; opacity: 0.4; filter: blur(30px); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.blob-1 { width: 400px; height: 400px; background-color: var(--color-peach-light); top: -100px; left: -150px; }
.blob-2 { width: 350px; height: 350px; background-color: #f1f5f9; bottom: 20%; right: -100px; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }

.hero-container { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
@media (max-width: 992px) { .hero-container { flex-direction: column-reverse; text-align: center; } .hero-container .hero-actions { justify-content: center; } }




@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.cta-box {
    background-color: var(--color-navy);
    border-radius: var(--border-radius-md);
    padding: 40px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
    gap: 30px;
}
@media (max-width: 600px) {
    .cta-box {
        padding: 40px 20px;
    }
}
