@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: #f7f7f4;
    --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); }
img { max-width: 100%; display: block; }
.container { max-width: 1264px; margin: 0 auto; padding: 0 28px; }

/* Typography */
h1 { font-size: 64px; line-height: 1.04; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 25px; font-family: var(--font-head); }
h2 { font-size: 50px; line-height: 1.08; font-weight: 600; color: var(--navy); margin-bottom: 20px; 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: 10px; font-weight: 800; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; gap: 8px; }
.section-tag::before { content: '\2726'; font-size: 11px; }
.text-center { text-align: center; }
.section-intro { max-width: 700px; margin-bottom: 48px; }
.section-copy { max-width: 610px; color: var(--text-light); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 30px; 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: 18px; font-weight: 700; }
.btn-cyan { background: var(--cyan); color: white; }
.btn-cyan::after { content: '›'; font-size: 18px; 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: 22px; left: 0; width: 100%; z-index: 1000; }
.navbar { background: rgba(255,255,255,0.98); border-radius: 100px; padding: 8px 12px 8px 26px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 10px 34px rgba(0,0,0,0.06); max-width: 1300px; margin: 0 auto; width: calc(100% - 84px); border: 1px solid rgba(255,255,255,0.65); }
.logo img { height: 34px; display: block; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 11px; transition: color 0.3s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta .btn { padding: 11px 22px; font-size: 12px; }

/* HERO SECTION */
.hero { position: relative; height: 100vh; min-height: 860px; 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: radial-gradient(circle at center, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.34) 100%); z-index: 2; }
.hero-container { position: relative; z-index: 3; color: white; text-align: center; max-width: 1060px; margin: 0 auto; padding: 96px 20px 0; }
.hero h1 { font-size: clamp(64px, 5vw, 80px); line-height: 0.97; letter-spacing: -0.045em; margin: 0 auto 24px; max-width: 1020px; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.92); margin-bottom: 34px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-badge { position: absolute; bottom: 132px; right: 6%; z-index: 3; width: 126px; animation: rotate 25s linear infinite; }

.hero-scroll { position: absolute; bottom: 38px; 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: 108px 0 100px; background: #fff; position: relative; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr 0.78fr; gap: 34px; align-items: center; }
.image-stack { position: relative; height: 320px; }
.image-stack .main { width: 86%; border-radius: 24px; transform: rotate(-6deg); box-shadow: 20px 20px 60px rgba(0,0,0,0.1); position: relative; z-index: 2; border: 6px solid var(--lime); }
.image-stack .sub { position: absolute; bottom: -10px; left: 28px; width: 40%; border-radius: 20px; border: 6px solid white; transform: rotate(-8deg); box-shadow: 15px 15px 40px rgba(0,0,0,0.08); z-index: 3; }

.about-content { text-align: center; }
.about-content h2 { font-size: 44px; line-height: 1.08; margin: 0 auto 18px; max-width: 520px; }
.about-content p { font-size: 15px; margin: 0 auto 28px; line-height: 1.7; max-width: 490px; }

.about-right-img { position: relative; height: 250px; }
.about-card-photo { position: absolute; object-fit: cover; box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.about-card-photo-main { top: 22px; right: 4px; width: 216px; height: 128px; border-radius: 22px; transform: rotate(-12deg); object-position: center; }
.about-card-photo-sub { right: 52px; bottom: 2px; width: 156px; height: 120px; border-radius: 22px; transform: rotate(9deg); object-position: center; }
.flower-layer { position: absolute; left: -18px; bottom: 4px; width: 92px; z-index: 5; pointer-events: none; }

/* WHY US */
.why-us { padding: 114px 0 110px; background: var(--bg-light); border-radius: 76px 76px 0 0; position: relative; z-index: 4; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: white; padding: 30px 28px; border-radius: 22px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(236,239,241,0.9); min-height: 224px; }
.why-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); border-color: rgba(215, 245, 56, 0.3); }
.why-icon { width: 48px; height: 48px; margin-bottom: 28px; }
.why-icon img { height: 100%; width: auto; }
.why-card h3 { font-size: 18px; margin-bottom: 14px; font-family: var(--font-main); }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* EXPERIENCES */
.experiences { padding: 112px 0 118px; }
.experiences-copy { max-width: 660px; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.exp-card { position: relative; height: 246px; border-radius: 20px; 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: 12px; left: 12px; right: 12px; padding: 14px 16px; border-radius: 18px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: linear-gradient(180deg, rgba(12, 20, 27, 0.22) 0%, rgba(12, 20, 27, 0.68) 100%); backdrop-filter: blur(3px); }
.exp-info h4 { font-size: 15px; font-weight: 700; color: var(--white); }
.exp-arrow { background: rgba(255,255,255,0.2); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--white); }

/* JOURNEY */
.journey { padding: 104px 0 110px; background: var(--bg-light); }
.journey-card { background: #ffffff; border-radius: 24px; padding: 62px 68px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.journey-map { width: 100%; margin-top: 32px; }
.steps { display: flex; flex-direction: column; gap: 34px; }
.step { display: flex; gap: 22px; }
.step-num { width: 40px; height: 40px; background: var(--cyan); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 15px; }
.step h3 { font-size: 15px; margin-bottom: 7px; font-family: var(--font-main); }
.step p { font-size: 16px; color: var(--text-light); }

/* GALLERY */
.gallery { padding: 106px 0 102px; }
.gallery .container { position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 176px; gap: 14px; }
.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; }
.gi-1 img { object-position: center 42%; }
.gi-2 img { object-position: center center; }
.gi-3 img { object-position: center 56%; }
.gi-4 img { object-position: center 34%; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-flower { position: absolute; left: -70px; bottom: -26px; width: 132px; z-index: 2; pointer-events: none; }

/* TESTIMONIALS */
.testimonials { padding: 98px 0 116px; background: #ffffff; }
.testimonials .container { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 24px; align-items: start; }
.testimonials .section-intro { margin-bottom: 0; padding-top: 18px; }
.testimonials .section-intro h2 { font-size: 44px; }
.test-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.test-card { background: white; padding: 28px 26px 24px; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid #eef2f4; display: flex; flex-direction: column; min-height: 280px; }
.test-text { font-style: italic; margin-bottom: 24px; color: var(--text-light); flex: 1; font-size: 15px; line-height: 1.7; }
.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 0 3px; }
.user-info span { font-size: 13px; color: #8dbfd0; }

/* BLOG */
.blog { padding: 102px 0 108px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border-radius: 18px; overflow: hidden; transition: 0.3s; border: 1px solid #eef2f4; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); }
.blog-img { height: 214px; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-date { position: absolute; top: 14px; left: 14px; background: var(--lime); color: var(--navy); padding: 7px 12px; border-radius: 100px; font-weight: 800; font-size: 11px; 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: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-content h3 { font-size: 18px; margin-bottom: 13px; line-height: 1.45; }
.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: 104px 0; background: var(--bg-light); }
.faq-container { display: grid; grid-template-columns: 0.96fr 1.44fr; gap: 64px; }
.faq-left { position: sticky; top: 92px; height: fit-content; }
.faq-item { border-bottom: 1px solid #eee; padding: 24px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { font-size: 17px; 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); }
.faq-contact-box { margin-top: 44px; padding: 24px 26px; background: #ffffff; border-radius: 20px; box-shadow: 0 10px 26px rgba(0,0,0,0.04); }
.faq-contact-copy { font-size: 14px; margin-top: 10px; }
.faq-contact-copy a { color: var(--cyan); text-decoration: none; font-weight: 700; }
.faq-contact-link { display: inline-block; margin-top: 14px; font-weight: 800; font-size: 13px; color: var(--navy); text-decoration: none; }

/* CTA SECTION */
.cta { padding: 0 0 28px; }
.cta-banner { position: relative; border-radius: 24px; overflow: hidden; height: 250px; 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.3); z-index: 2; }
.cta-content { position: relative; z-index: 3; padding: 0 40px; }
.cta-content h2 { color: white; font-size: 50px; line-height: 1; margin-bottom: 24px; max-width: 600px; }

/* FOOTER */
.footer { background: #0b1826; padding: 56px 0 30px; color: #8f9ba5; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.95fr 1.1fr 1.3fr; gap: 42px; align-items: start; }
.footer-logo { height: 41px; filter: brightness(0) invert(1); margin-bottom: 35px; }
.social-row { display: flex; gap: 15px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.social-link img { width: 16px; height: 16px; 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: 18px; height: 18px; 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.08); 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: 36px; }
    .navbar { width: calc(100% - 32px); }
    .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, .why-grid, .exp-grid { grid-template-columns: 1fr; }
    .testimonials .container, .test-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: 250px; max-width: 320px; margin: 0 auto; }
    .flower-layer { left: -8px; bottom: -10px; width: 96px; }
    .faq-question h3 { font-size: 22px; }
    .faq-container { grid-template-columns: 1fr; gap: 50px; }
    .journey-grid { 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; }
    .header { top: 16px; }
    .navbar { width: calc(100% - 20px); padding-left: 18px; }
    .container { padding: 0 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; }
    .cta-content h2 { font-size: 34px; }
}
