@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Lora:wght@500;600;700&display=swap');

:root {
    --lime: #d7ef1d;
    --cyan: #42d4eb;
    --navy: #2c2c2c;
    --white: #ffffff;
    --bg-light: #f7f7f7;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --teal: #227381;
    --beige: #e3bb99;
    --font-main: 'Manrope', sans-serif;
    --font-head: 'Lancea', 'Lora', serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.08);
    --border-radius: 40px;
    --btn-radius: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); line-height: 1.58; overflow-x: hidden; background: var(--bg-light); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1 { font-size: 64px; line-height: 1.04; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 25px; font-family: var(--font-head); }
h2 { font-size: 40px; line-height: 1.14; font-weight: 600; color: var(--navy); margin-bottom: 24px; font-family: var(--font-head); }
h3 { font-size: 28px; font-weight: 600; color: var(--navy); font-family: var(--font-main); }
p { font-size: 16px; color: var(--text-light); }

.section-tag { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; gap: 8px; }
.section-tag::before { content: '\2726'; font-size: 14px; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 34px; border-radius: var(--btn-radius); font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); border: none; cursor: pointer; gap: 10px; }
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-lime::after { content: '>'; font-size: 16px; font-weight: 700; }
.btn-cyan { background: var(--cyan); color: white; }
.btn-cyan::after { content: '>'; font-size: 16px; font-weight: 700; }
.btn-outline-cyan { border: 2px solid var(--cyan); color: var(--cyan); background: transparent; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* HEADER & NAVBAR */
.header { position: absolute; top: 30px; left: 0; width: 100%; z-index: 1000; }
.navbar { background: white; border-radius: 100px; padding: 10px 12px 10px 35px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 10px 40px rgba(0,0,0,0.06); max-width: 1280px; margin: 0 auto; width: 94%; }
.logo img { height: 38px; display: block; }
.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 12px; transition: color 0.3s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta .btn { padding: 12px 28px; font-size: 13px; }

/* HERO SECTION */
.hero { position: relative; height: 100vh; min-height: 850px; display: flex; align-items: center; background: #000; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 100%); z-index: 2; }
.hero-container { position: relative; z-index: 3; color: white; text-align: center; max-width: 860px; margin: 0 auto; padding: 0 20px; }
.hero h1 { margin-bottom: 25px; }
.hero p { font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 45px; max-width: 650px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-badge { position: absolute; bottom: 132px; right: 5%; z-index: 3; width: 150px; animation: rotate 25s linear infinite; }

.hero-scroll { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); z-index: 3; }
.chevron { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; transition: 0.3s; cursor: pointer; }
.chevron::after { content: ''; width: 8px; height: 8px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); margin-top: -4px; }
.chevron:hover { background: white; border-color: white; }
.chevron:hover::after { border-color: var(--navy); }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ABOUT SECTION */
.about { padding: 124px 0 112px; background: #fff; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 42px; align-items: center; }
.image-stack { position: relative; height: 360px; }
.image-stack .main { width: 86%; border-radius: 20px; transform: rotate(-8deg); box-shadow: 20px 20px 60px rgba(0,0,0,0.1); position: relative; z-index: 2; border: 8px solid var(--lime); }
.image-stack .sub { position: absolute; bottom: -18px; left: 20px; width: 44%; border-radius: 20px; border: 8px solid white; transform: rotate(-6deg); box-shadow: 15px 15px 40px rgba(0,0,0,0.08); z-index: 3; }

.about-content { text-align: left; }
.about-content h2 { font-size: 44px; line-height: 1.06; margin-bottom: 20px; max-width: 520px; }
.about-content p { font-size: 16px; margin-bottom: 28px; line-height: 1.6; max-width: 460px; }

.about-right-img { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.about-right-img .capsule { width: min(100%, 340px); border-radius: 180px 180px 28px 28px; box-shadow: 20px 20px 50px rgba(0,0,0,0.14); object-fit: cover; }
.flower-layer { position: absolute; top: -28px; right: -34px; width: 156px; z-index: 5; pointer-events: none; }

/* WHY US */
.why-us { padding: 132px 0; background: var(--bg-light); border-radius: 80px 80px 0 0; margin-top: -80px; position: relative; z-index: 4; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 70px; }
.why-card { background: white; padding: 50px 35px; border-radius: 30px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid transparent; }
.why-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); border-color: rgba(215, 245, 56, 0.3); }
.why-icon { width: 64px; height: 64px; margin-bottom: 35px; }
.why-icon img { height: 100%; width: auto; }
.why-card h3 { font-size: 20px; margin-bottom: 16px; font-family: var(--font-main); }
.why-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* EXPERIENCES */
.experiences { padding: 160px 0; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }
.exp-card { position: relative; height: 500px; border-radius: 40px; overflow: hidden; cursor: pointer; }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.exp-card:hover img { transform: scale(1.1); }
.exp-info { position: absolute; bottom: 25px; left: 20px; right: 20px; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); padding: 18px 25px; border-radius: 100px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.exp-info h4 { font-size: 17px; font-weight: 600; color: var(--white); }
.exp-arrow { background: rgba(255,255,255,0.28); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--white); }
.exp-info { background: linear-gradient(180deg, rgba(12, 20, 27, 0.28) 0%, rgba(12, 20, 27, 0.72) 100%); backdrop-filter: blur(2px); }

/* JOURNEY */
.journey { padding: 140px 0; background: #fff; }
.journey-card { background: #ffffff; border-radius: 18px; padding: 74px 88px; }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.journey-map { width: 100%; margin-top: 50px; }
.steps { display: flex; flex-direction: column; gap: 50px; }
.step { display: flex; gap: 30px; }
.step-num { width: 50px; height: 50px; background: var(--cyan); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 18px; }
.step h3 { font-size: 16px; margin-bottom: 8px; font-family: var(--font-main); }
.step p { font-size: 16px; color: var(--text-light); }

/* GALLERY */
.gallery { padding: 128px 0 122px; }
.gallery .container { position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 214px; gap: 14px; margin-top: 44px; }
.gi-1 { grid-column: span 2; grid-row: span 1; }
.gi-2 { grid-column: span 4; grid-row: span 1; }
.gi-3 { grid-column: span 4; grid-row: span 1; }
.gi-4 { grid-column: span 2; grid-row: span 1; }
.gallery-item { border-radius: 18px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-flower { position: absolute; left: -48px; bottom: -6px; width: 92px; z-index: 2; pointer-events: none; }

/* TESTIMONIALS */
.testimonials { padding: 128px 0; background: #ffffff; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.test-card { background: white; padding: 32px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid #eef2f4; display: flex; flex-direction: column; min-height: 320px; }
.test-text { font-style: italic; margin-bottom: 30px; color: var(--text-light); flex: 1; }
.test-user { display: flex; align-items: center; gap: 15px; }
.user-avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; border: 2px solid #e8f3f8; background: #f2f9fc; flex-shrink: 0; }
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-info h4 { font-size: 16px; margin: 0; }
.user-info span { font-size: 13px; color: var(--cyan); }

/* BLOG */
.blog { padding: 140px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.blog-card { background: white; border-radius: 14px; overflow: hidden; transition: 0.3s; border: 1px solid #eef2f4; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); }
.blog-img { height: 250px; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-date { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.95); padding: 8px 12px; border-radius: 100px; font-weight: 800; font-size: 12px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.blog-date img { width: 14px; height: 14px; display: block; }
.blog-content { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.blog-content h3 { font-size: 20px; margin-bottom: 15px; }
.blog-more { color: var(--cyan); font-weight: 800; text-decoration: none; font-size: 14px; }
.blog-more::after { content: ' >'; }
.blog-more { margin-top: auto; }

/* FAQ */
.faq { padding: 148px 0; background: var(--bg-light); }
.faq-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.faq-left { position: sticky; top: 100px; height: fit-content; }
.faq-item { border-bottom: 1px solid #eee; padding: 30px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { font-size: 18px; line-height: 1.35; font-weight: 700; font-family: var(--font-main); max-width: 90%; }
.faq-plus { width: 36px; height: 36px; background: var(--bg-light); border-radius: 50%; color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 24px; transition: 0.3s; position: relative; }
.faq-plus::before { content: ''; width: 12px; height: 2px; background: currentColor; }
.faq-plus::after { content: ''; width: 2px; height: 12px; background: currentColor; position: absolute; }
.faq-item.active .faq-plus { transform: rotate(45deg); background: var(--cyan); color: white; }
.faq-answer { display: none; padding-top: 25px; color: var(--text-light); }

/* CTA SECTION */
.cta { padding-bottom: 36px; }
.cta-banner { position: relative; border-radius: 22px; overflow: hidden; height: 340px; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0, 18, 32, 0.28); z-index: 2; }
.cta-content { position: relative; z-index: 3; padding: 0 40px; }
.cta-content h2 { color: white; font-size: 42px; margin-bottom: 30px; }

/* FOOTER */
.footer { background: #0b1826; padding: 64px 0 42px; color: #8f9ba5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 54px; align-items: start; }
.footer-logo { height: 45px; filter: brightness(0) invert(1); margin-bottom: 35px; }
.social-row { display: flex; gap: 15px; }
.social-link { width: 44px; height: 44px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.social-link img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(1555%) hue-rotate(168deg) brightness(95%) contrast(99%); }
.social-link:hover { transform: translateY(-5px); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.contact-link { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact-link img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.footer-nav strong, .footer-contact strong, .footer-address strong { color: white; display: block; margin-bottom: 25px; font-size: 16px; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 15px; }
.footer-nav a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: inherit; text-decoration: none; }

@media (max-width: 992px) {
    h1 { font-size: 52px; }
    h2 { font-size: 34px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gi-1, .gi-2, .gi-3, .gi-4 { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-flower { display: none; }
    .footer-grid, .blog-grid, .test-grid, .why-grid, .exp-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-content { text-align: center; }
    .about-content h2, .about-content p { max-width: none; }
    .about-right-img { height: auto; min-height: 300px; }
    .about-right-img .capsule { width: min(80vw, 320px); }
    .flower-layer { right: 10px; top: -16px; width: 120px; }
    .faq-question h3 { font-size: 22px; }
    .faq-container { grid-template-columns: 1fr; gap: 50px; }
    .hero-badge { display: none; }
}

@media (max-width: 640px) {
    h1 { font-size: 42px; }
    h2 { font-size: 30px; }
    .hero { min-height: 760px; }
    .hero p { font-size: 18px; }
    .about, .why-us, .experiences, .journey, .gallery, .testimonials, .blog, .faq { padding-top: 96px; padding-bottom: 96px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .faq-question h3 { font-size: 22px; }
    .blog-content { padding: 24px; }
}
