/* =============================================
   VK Gardening – Main Stylesheet
   Version: 1.0 | Laravel 12 Edition
   ============================================= */

/* ── Variables ─────────────────────────────── */
:root {
    --green-dark:    #1a4a20;
    --green-primary: #2d6a35;
    --green-mid:     #3d8b45;
    --green-light:   #8bc34a;
    --green-pale:    #e8f5e9;
    --gold:          #c9a227;
    --gold-light:    #f0c040;
    --white:         #ffffff;
    --text-dark:     #1a2e1a;
    --text-light:    #5a6b5a;
    --border:        rgba(45,106,53,.12);
    --shadow:        0 4px 24px rgba(26,74,32,.12);
    --radius:        16px;
    --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: #fff; overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.25; }

/* ── Top Bar ────────────────────────────────── */
.top-bar { background: var(--green-dark); padding: .45rem 0; font-size: .78rem; }
.top-bar-item, .top-bar a { color: rgba(255,255,255,.75); display: flex; align-items: center; gap: .4rem; transition: color .2s; }
.top-bar a:hover { color: var(--green-light); }
.top-bar i { font-size: .72rem; }

/* ── Navbar ─────────────────────────────────── */
.main-navbar { background: #fff; box-shadow: 0 2px 20px rgba(26,74,32,.1); position: sticky; top: 0; z-index: 1030; padding: .6rem 0; }
.navbar-brand img { height: 60px; transition: transform .3s; }
.navbar-brand:hover img { transform: scale(1.03); }
.main-navbar .nav-link { color: var(--text-dark) !important; font-weight: 600; font-size: .875rem; padding: .5rem .85rem !important; border-radius: 8px; position: relative; transition: var(--transition); }
.main-navbar .nav-link:hover, .main-navbar .nav-link.active { color: var(--green-primary) !important; background: var(--green-pale); }
.main-navbar .nav-link.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: var(--green-primary); border-radius: 2px; }

/* Mega Menu */
.has-megamenu { position: static; }
.megamenu-wrapper { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 3px solid var(--green-primary); box-shadow: 0 12px 40px rgba(26,74,32,.15); padding: 2rem 0 1.5rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); z-index: 1000; }
.has-megamenu:hover .megamenu-wrapper { opacity: 1; visibility: visible; transform: translateY(0); }
.has-megamenu:hover .dropdown-arrow { transform: rotate(180deg); }
.mega-col-title { font-weight: 800; font-size: .8rem; color: var(--green-dark); text-transform: uppercase; letter-spacing: .1em; padding: .25rem 0 .6rem; border-bottom: 2px solid var(--green-pale); margin-bottom: .6rem; }
.mega-link { display: flex; align-items: center; gap: .65rem; padding: .45rem .5rem; border-radius: 8px; color: var(--text-dark); font-size: .845rem; font-weight: 500; transition: var(--transition); margin-bottom: .1rem; }
.mega-link:hover { background: var(--green-pale); color: var(--green-dark); transform: translateX(3px); }
.mega-icon { width: 28px; height: 28px; background: var(--green-pale); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--green-primary); flex-shrink: 0; }
.mega-promo-card { background: linear-gradient(135deg,var(--green-dark),var(--green-mid)); border-radius: 14px; padding: 1.5rem; color: #fff; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; }
.mega-promo-card h5 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.mega-promo-card p { color: rgba(255,255,255,.75); font-size: .82rem; }
.btn-gold { background: var(--gold); color: #fff !important; border: none; border-radius: 8px; padding: .55rem 1.25rem; font-weight: 700; font-size: .82rem; display: inline-flex; align-items: center; gap: .4rem; transition: var(--transition); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Navbar Buttons */
.btn-outline-vk { border: 2px solid var(--green-primary); color: var(--green-primary) !important; border-radius: 50px; padding: .45rem 1.25rem; font-weight: 700; font-size: .82rem; display: inline-flex; align-items: center; gap: .5rem; transition: var(--transition); }
.btn-outline-vk:hover { background: var(--green-primary); color: #fff !important; }
.btn-primary-vk { background: var(--green-primary); color: #fff !important; border: none; border-radius: 50px; padding: .55rem 1.4rem; font-weight: 700; font-size: .875rem; display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; transition: var(--transition); }
.btn-primary-vk:hover { background: var(--green-dark); color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,74,32,.3); }
.navbar-quote-btn { background: var(--green-primary); color: #fff !important; border: none; border-radius: 50px; padding: .5rem 1.2rem; font-weight: 700; font-size: .82rem; display: inline-flex; align-items: center; gap: .45rem; transition: var(--transition); }
.navbar-quote-btn:hover { background: var(--green-dark); color: #fff !important; }

/* ── Hero Slider ─────────────────────────────── */
.hero-slider-section { position: relative; }
.hero-swiper { height: 100vh; min-height: 600px; max-height: 900px; }
.hero-slide { position: relative; overflow: hidden; display: flex; align-items: center; }
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-1 .slide-bg { background: linear-gradient(135deg,#0a2010 0%,#1a4a20 50%,#0e2d12 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg,#0e1b2e 0%,#1a3a5c 60%,#0a1520 100%); }
.slide-5 .slide-bg { background: linear-gradient(135deg,#1a2e1a 0%,#0e2b11 60%,#1a4a20 100%); }
.slide-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.25) 60%,rgba(0,0,0,.1) 100%); }
.slide-scene { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.slide-content { position: relative; z-index: 3; padding: 2rem 0; }
.min-vh-slider { min-height: calc(100vh - 80px); }
.slide-badge { display: flex; align-items: center; background: rgba(139,195,74,.18); border: 1px solid rgba(139,195,74,.35); color: var(--green-light); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .45rem 1.1rem; border-radius: 50px; display: inline-flex; gap: .4rem; margin-bottom: 1.25rem; animation: fadeSlideUp .6s .2s both; }
.slide-title { font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; line-height: 1.15; font-weight: 800; margin-bottom: 1.25rem; animation: fadeSlideUp .6s .35s both; }
.slide-title .slide-accent { color: var(--green-light); }
.slide-text { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; margin-bottom: 2rem; line-height: 1.75; animation: fadeSlideUp .6s .5s both; }
.slide-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; animation: fadeSlideUp .6s .65s both; }
.slide-btn-ghost { display: inline-flex; align-items: center; gap: .5rem; border: 2px solid rgba(255,255,255,.45); color: #fff !important; border-radius: 50px; padding: .55rem 1.4rem; font-weight: 700; font-size: .875rem; transition: var(--transition); }
.slide-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.slide-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 0; animation: fadeSlideUp .6s .8s both; }
.slide-stat { text-align: center; padding: 0 1.25rem; }
.slide-stat .num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--green-light); line-height: 1; }
.slide-stat .lbl { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; }
.slide-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.slide-features { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; margin-top: 1.5rem; animation: fadeSlideUp .6s .8s both; }
.slide-features span { color: rgba(255,255,255,.85); font-size: .85rem; display: flex; align-items: center; gap: .4rem; }
.slide-features i { color: var(--green-light); }

/* Float Badge */
.slide-float-badge { position: absolute; bottom: 2.5rem; right: 2.5rem; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-radius: 14px; padding: .85rem 1.25rem; display: flex; align-items: center; gap: .85rem; box-shadow: 0 8px 30px rgba(0,0,0,.2); z-index: 4; animation: floatBadge .6s 1s both; }
.slide-float-badge.left { right: auto; left: 2.5rem; }
.slide-float-icon { width: 40px; height: 40px; background: linear-gradient(135deg,var(--green-primary),var(--green-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.slide-float-badge strong { display: block; font-size: .85rem; color: var(--green-dark); }
.slide-float-badge span { font-size: .75rem; color: var(--text-light); }

/* Slider Controls */
.hero-prev, .hero-next { width: 46px !important; height: 46px !important; background: rgba(255,255,255,.15) !important; backdrop-filter: blur(8px); border-radius: 50% !important; border: 1px solid rgba(255,255,255,.25) !important; color: #fff !important; font-size: .9rem !important; transition: var(--transition) !important; top: 50% !important; }
.hero-prev::after, .hero-next::after { display: none !important; }
.hero-prev:hover, .hero-next:hover { background: var(--green-primary) !important; border-color: var(--green-primary) !important; }
.hero-prev { left: 1.5rem !important; }
.hero-next { right: 1.5rem !important; }
.hero-pagination { bottom: 1.5rem !important; }
.hero-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255,255,255,.4); transition: var(--transition); }
.hero-pagination .swiper-pagination-bullet-active { width: 24px; border-radius: 4px; background: var(--green-light); }
.hero-slide-counter { position: absolute; bottom: 1.5rem; right: 2rem; color: rgba(255,255,255,.5); font-size: .78rem; font-weight: 700; z-index: 5; display: flex; gap: .25rem; }
.hero-slide-counter .current { color: #fff; }
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.1); z-index: 5; }
.hero-progress-bar { height: 100%; background: var(--green-light); width: 0; transition: width linear; }
.slide-icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; animation: fadeSlideUp .6s .9s both; }
.slide-icon-item { text-align: center; }
.slide-icon-circle { width: 60px; height: 60px; border-radius: 50%; background: rgba(139,195,74,.15); border: 1.5px solid rgba(139,195,74,.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green-light); margin: 0 auto .5rem; transition: var(--transition); }
.slide-icon-item:hover .slide-icon-circle { background: var(--green-light); color: #fff; transform: translateY(-4px); }
.slide-icon-item span { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }

/* ── Services Strip ──────────────────────────── */
.services-strip { background: #fff; border-bottom: 1px solid rgba(45,106,53,.08); box-shadow: 0 4px 20px rgba(26,74,32,.06); }
.strip-item { display: flex; align-items: center; gap: .85rem; padding: 1.1rem 1.25rem; border-right: 1px solid rgba(45,106,53,.08); transition: var(--transition); }
.strip-item:hover { background: var(--green-pale); }
.strip-item .icon { width: 42px; height: 42px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-primary); font-size: 1.1rem; flex-shrink: 0; }
.strip-item strong { display: block; font-size: .88rem; color: var(--green-dark); font-weight: 700; }
.strip-item span { font-size: .75rem; color: var(--text-light); }

/* ── Sections ────────────────────────────────── */
.about-home     { padding: 5rem 0; }
.services-section { padding: 5rem 0; background: #f9fdf9; }
.why-section    { padding: 5rem 0; background: linear-gradient(135deg,#1a4a20,#0e2b11); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,.04) 1px,transparent 0); background-size: 36px 36px; pointer-events: none; }
.process-section  { padding: 5rem 0; }
.testimonials   { padding: 5rem 0; background: #f9fdf9; }
.contact-section { padding: 5rem 0; }
.cta-section    { padding: 5rem 0; background: linear-gradient(135deg,var(--green-dark),#0e2b11); text-align: center; position: relative; }
.cta-section h2 { font-size: 2.2rem; color: #fff; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.72); margin-bottom: 2rem; font-size: 1.05rem; }
.bg-pale { background: #f9fdf9; }

/* ── About Section ─────────────────────────── */
.about-img-wrap { position: relative; }
.exp-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--green-primary); color: #fff; border-radius: 14px; padding: 1rem 1.25rem; text-align: center; box-shadow: 0 8px 30px rgba(45,106,53,.4); }
.exp-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; display: block; color: var(--green-light); }
.exp-badge .txt { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.section-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--green-pale); border: 1px solid rgba(45,106,53,.2); color: var(--green-primary); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--green-dark); margin-bottom: 1rem; }
.section-title span { color: var(--green-primary); }
.divider-leaf { display: flex; align-items: center; gap: .75rem; color: var(--green-primary); margin-bottom: 1.5rem; }
.divider-leaf::before, .divider-leaf::after { content: ''; flex: 1; height: 1px; background: rgba(45,106,53,.2); }
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; color: var(--text-dark); margin-bottom: .6rem; font-size: .9rem; }
.check-list i { color: var(--green-primary); margin-top: .25rem; flex-shrink: 0; }

/* ── Service Cards ──────────────────────────── */
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,74,32,.16); }
.service-card .card-img { position: relative; overflow: hidden; height: 220px; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .card-img img { transform: scale(1.06); }
.service-card .tag { position: absolute; top: 1rem; left: 1rem; background: var(--green-primary); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 50px; }
.service-card .card-body { padding: 1.5rem; }
.service-card .card-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green-primary); font-size: 1.15rem; margin-bottom: 1rem; }
.service-card h5 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: .6rem; }
.service-card p { color: var(--text-light); font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; }
.learn-more { display: inline-flex; align-items: center; gap: .4rem; color: var(--green-primary); font-weight: 700; font-size: .85rem; transition: var(--transition); }
.learn-more:hover { gap: .75rem; color: var(--green-dark); }

/* ── Why Section ────────────────────────────── */
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2rem; text-align: center; height: 100%; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-card .icon { width: 60px; height: 60px; background: rgba(139,195,74,.15); border: 1.5px solid rgba(139,195,74,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--green-light); margin: 0 auto 1.25rem; }
.why-card h5 { color: #fff; margin-bottom: .6rem; font-size: 1rem; }
.why-card p { color: rgba(255,255,255,.65); font-size: .875rem; margin: 0; line-height: 1.7; }

/* ── Process Section ─────────────────────────── */
.step-item { text-align: center; padding: 2rem 1.5rem; }
.step-num { width: 56px; height: 56px; background: linear-gradient(135deg,var(--green-primary),var(--green-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 auto 1.25rem; box-shadow: 0 6px 20px rgba(45,106,53,.3); }
.step-item h5 { color: var(--green-dark); margin-bottom: .5rem; }
.step-item p { color: var(--text-light); font-size: .875rem; }

/* ── Testimonials ────────────────────────────── */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); height: 100%; border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,74,32,.12); }
.testimonial-card .stars { color: #f59e0b; margin-bottom: 1rem; font-size: .95rem; }
.testimonial-card p { color: var(--text-dark); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--green-primary),var(--green-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .95rem; }
.testimonial-card strong { display: block; font-size: .9rem; color: var(--green-dark); }
.testimonial-card span { font-size: .78rem; color: var(--text-light); }

/* ── Page Hero ──────────────────────────────── */
.page-hero { background: linear-gradient(135deg,#1a4a20,#0e2b11); padding: 5rem 0 3.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,.04) 1px,transparent 0); background-size: 36px 36px; }
.page-hero .content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item { font-size: .82rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Contact Section ─────────────────────────── */
.contact-info-card { background: linear-gradient(135deg,#1a4a20,#0e2b11); border-radius: var(--radius); padding: 2.5rem; color: #fff; height: 100%; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .icon-box { width: 40px; height: 40px; background: rgba(139,195,74,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: .95rem; flex-shrink: 0; }
.contact-info-item strong { display: block; color: #fff; font-size: .88rem; margin-bottom: .1rem; }
.contact-info-item span { color: rgba(255,255,255,.65); font-size: .83rem; }
.contact-form-card { background: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-card h3 { color: var(--green-dark); margin-bottom: .25rem; }
.contact-form-card .form-control, .contact-form-card .form-select { border: 1.5px solid #dee2e6; border-radius: 8px; padding: .65rem .9rem; font-size: .875rem; transition: var(--transition); }
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(45,106,53,.1); }

/* ── Team Cards ─────────────────────────────── */
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; height: 100%; border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,74,32,.15); }
.team-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: rgba(255,255,255,.9); position: relative; overflow: hidden; }
.team-body { padding: 1.25rem; }
.team-body h5 { color: var(--green-dark); font-size: 1rem; margin-bottom: .25rem; }
.team-body span { color: var(--text-light); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: linear-gradient(160deg,#0e2b11,#1a4a20); padding: 4.5rem 0 0; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: .6rem; border-bottom: 2px solid rgba(139,195,74,.3); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .865rem; display: flex; align-items: center; gap: .5rem; transition: var(--transition); }
.footer-links i { font-size: .65rem; color: var(--green-light); }
.footer-links a:hover { color: var(--green-light); transform: translateX(3px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1rem; color: rgba(255,255,255,.65); font-size: .865rem; }
.footer-contact-item i { color: var(--green-light); width: 16px; flex-shrink: 0; margin-top: .25rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .8rem; transition: var(--transition); }
.footer-social a:hover { background: var(--green-light); border-color: var(--green-light); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding: 1.25rem 0; color: rgba(255,255,255,.45); font-size: .78rem; }

/* ── Animations ─────────────────────────────── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatBadge  { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Utilities ──────────────────────────────── */
.text-success-vk { color: var(--green-primary); }
@media (max-width:991px) {
    .hero-swiper { height: 100svh; max-height: 700px; }
    .min-vh-slider { min-height: auto; padding: 5rem 0; }
    .slide-float-badge { bottom: 1rem; right: 1rem; }
    .megamenu-wrapper { position: fixed; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; transform: none !important; opacity: 1 !important; visibility: visible !important; display: none; padding-top: 4rem; }
    .has-megamenu.open .megamenu-wrapper { display: block; }
}
@media (max-width:575px) {
    .slide-stats { gap: 0; }
    .slide-stat { padding: 0 .75rem; }
    .slide-stat .num { font-size: 1.2rem; }
    .about-home, .services-section, .why-section, .process-section, .testimonials, .contact-section, .cta-section { padding: 3.5rem 0; }
    .exp-badge { right: 0; bottom: -1.5rem; }
}
