:root {
    --bg-main: #fcfdfe;
    --bg-soft: #f4f7fb;
    --pastel-mint: #e8f9f7;
    --pastel-peach: #fff5eb;
    --pastel-lilac: #f6f1fc;
    --accent-teal: #4db6ac;
    --text-main: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --card-shadow: 0 10px 40px rgba(0,0,0,0.03);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, var(--pastel-mint) 0%, var(--pastel-peach) 40%, var(--pastel-lilac) 100%);
    position: relative;
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-teal);
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.italic { font-style: italic; font-family: 'Playfair Display', serif; }

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--text-main);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn.primary:hover {
    transform: translateY(-5px);
    background-color: var(--accent-teal);
}

/* Sections */
section {
    padding: 120px 0;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
}

/* Bento Grid / Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transition: var(--transition);
}

.card:hover .card-img {
    opacity: 0.4;
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Subpage Detail */
.sub-hero {
    padding: 180px 0 100px;
    background-color: var(--bg-soft);
}

.detail-content {
    max-width: 800px;
    margin: 40px auto;
}

.detail-img {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    object-fit: cover;
    margin: 40px 0;
    box-shadow: var(--card-shadow);
}

/* Footer */
footer {
    background-color: var(--bg-soft);
    padding: 80px 0;
    text-align: center;
}

.footer-logo img { height: 30px; margin-bottom: 2rem; }
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links a { text-decoration: none; color: var(--text-light); font-size: 0.8rem; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
}
