/* ===== VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --green-dark: #0d1f14;
  --green-mid: #1a3a24;
  --green-accent: #2d6a4f;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray: #8a8a8a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.leaf-anim svg { width: 90px; height: 90px; }
.leaf-path { stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw-leaf 1.4s ease forwards; }
.leaf-stem { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw-leaf 0.4s ease 1.3s forwards; }
.leaf-vein { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw-leaf 0.5s ease 0.8s forwards; }
@keyframes draw-leaf { to { stroke-dashoffset: 0; } }
.preloader-logo { opacity: 0; animation: pl-fadein 0.7s ease 1.5s forwards; }
.preloader-logo img { height: 56px; width: auto; }
.preloader-tagline { color: rgba(255,255,255,0.45); font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; letter-spacing: 0.15em; opacity: 0; animation: pl-fadein 0.6s ease 1.8s forwards; }
.preloader-bar { width: 160px; height: 1px; background: rgba(201,168,76,0.2); margin-top: 0.4rem; overflow: hidden; }
.preloader-bar-fill { height: 100%; width: 0; background: var(--gold); animation: bar-fill 2.3s ease forwards; }
@keyframes bar-fill { to { width: 100%; } }
@keyframes pl-fadein { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--green-dark); color: var(--white); font-family: var(--font-sans); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 2rem;
  transition: background var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(13,31,20,0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }

.logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.logo em { color: var(--gold); font-style: normal; }
.logo-img { height: 120px; width: auto; object-fit: contain; max-width: 280px; mix-blend-mode: screen; }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: var(--green-dark) !important; padding: 0.6rem 1.4rem; border-radius: 2px; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; background: var(--green-mid); padding: 1.5rem 2rem; gap: 1.2rem; border-top: 1px solid rgba(201,168,76,0.2); }
.mobile-menu a { color: var(--white); font-size: 1rem; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--gold); color: var(--green-dark); padding: 0.9rem 2rem; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-ghost { display: inline-block; border: 1px solid rgba(255,255,255,0.6); color: var(--white); padding: 0.9rem 2rem; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: var(--transition); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }

/* ===== HERO ===== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: hero-zoom 12s ease-out forwards; }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,20,0.85) 0%, rgba(13,31,20,0.5) 60%, rgba(13,31,20,0.7) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 8rem 1rem 12rem; max-width: 800px; }
.hero-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 0.4rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; line-height: 1.7; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 11rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; justify-content: center; background: rgba(13,31,20,0.85); backdrop-filter: blur(8px); border-top: 1px solid rgba(201,168,76,0.2); }
.stat-item { flex: 1; max-width: 220px; text-align: center; padding: 1.5rem 1rem; }
.stat-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-plus { font-size: 1.4rem; color: var(--gold); font-weight: 600; }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }
.stat-divider { width: 1px; background: rgba(201,168,76,0.25); align-self: stretch; margin: 1rem 0; }

/* ===== SECTIONS ===== */
section { padding: 7rem 0; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.8rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== ABOUT ===== */
#about { background: var(--green-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: 4px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 580px; object-fit: cover; }
.about-badge-float { position: absolute; bottom: 2rem; right: -1.5rem; background: var(--gold); color: var(--green-dark); padding: 1.2rem 1.5rem; text-align: center; }
.about-badge-float .big { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge-float .small { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.about-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.2rem; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.feat { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ===== SERVICES ===== */
#services { background: var(--green-mid); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); padding: 2.5rem 2rem; border-radius: 4px; transition: var(--transition); position: relative; overflow: hidden; animation-delay: var(--d); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 0.8rem; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.service-line { width: 30px; height: 2px; background: var(--gold); margin-top: 1.5rem; }

/* ===== PORTFOLIO ===== */
#portfolio { background: var(--green-dark); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.portfolio-card { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; animation-delay: var(--d); }
.portfolio-card.large { grid-column: span 2; }
.portfolio-card img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card.large img { height: 420px; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,20,0.95) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: opacity var(--transition); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag { display: inline-block; background: var(--gold); color: var(--green-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.7rem; margin-bottom: 0.5rem; }
.portfolio-info h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.3rem; }
.portfolio-info p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.portfolio-link { align-self: flex-start; margin-top: 1rem; color: var(--gold); font-weight: 600; font-size: 0.88rem; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ===== PROCESS ===== */
#process { background: var(--green-mid); }
.process-steps { display: flex; align-items: flex-start; }
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; animation-delay: var(--d); }
.step-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--gold); opacity: 0.25; line-height: 1; margin-bottom: 1rem; transition: opacity var(--transition); }
.process-step:hover .step-num { opacity: 1; }
.step-content h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.6rem; }
.step-content p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; max-width: 220px; margin: 0 auto; }
.process-connector { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2)); flex-shrink: 0; margin-top: 2.5rem; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--green-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); padding: 2.5rem; border-radius: 4px; transition: var(--transition); animation-delay: var(--d); }
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author small { color: var(--gray); font-size: 0.8rem; }

/* ===== CTA BANNER ===== */
#cta-banner { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,20,0.92), rgba(45,106,79,0.7)); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 4rem 2rem; }
.cta-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; line-height: 1.3; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2rem; }

/* ===== CONTACT ===== */
#contact { background: var(--green-mid); }
.contact-card-wrapper { max-width: 850px; margin: 0 auto; position: relative; }
.contact-card { background: rgba(13,31,20,0.4); border: 1px solid rgba(201,168,76,0.3); border-radius: 12px; overflow: hidden; position: relative; backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.contact-card-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%); z-index: 0; }
.contact-card-glow { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 60%; height: 40px; background: var(--gold); filter: blur(40px); opacity: 0.3; z-index: 0; }
.contact-card-content { padding: 5rem 3rem; text-align: center; position: relative; z-index: 1; }
.contact-card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--gold); }
.contact-card-title { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.contact-card-text { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }

.contact-card-phone-btn { display: inline-flex; align-items: center; justify-content: center; position: relative; margin-bottom: 3.5rem; text-decoration: none; }
.contact-card-phone-btn .btn-glow { position: absolute; inset: -4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); border-radius: 6px; filter: blur(12px); opacity: 0.6; transition: opacity var(--transition); }
.contact-card-phone-btn .btn-text { position: relative; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green-dark); padding: 1.4rem 3rem; border-radius: 4px; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.05em; display: flex; align-items: center; gap: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform var(--transition); }
.contact-card-phone-btn:hover .btn-glow { opacity: 1; animation: pulse-glow 2s infinite; }
@keyframes pulse-glow { 0% { opacity: 0.6; filter: blur(12px); } 50% { opacity: 1; filter: blur(20px); } 100% { opacity: 0.6; filter: blur(12px); } }
.contact-card-phone-btn:hover .btn-text { transform: translateY(-2px); }
.phone-svg { width: 28px; height: 28px; }

.contact-card-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent); margin-bottom: 3rem; }
.contact-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 700px; margin: 0 auto; text-align: left; }
.detail-box { display: flex; align-items: flex-start; gap: 1rem; background: rgba(0,0,0,0.2); padding: 1.5rem; border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); }
.detail-icon { font-size: 1.4rem; line-height: 1; }
.detail-text { display: flex; flex-direction: column; gap: 0.4rem; }
.detail-text strong { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.detail-text span { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.5; }

/* ===== FOOTER ===== */
#footer { background: #080f0b; padding: 0 0 0; }
.footer-gold-bar { height: 3px; background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent); }

.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; padding: 4.5rem 0 3rem; }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo-img { height: 64px; width: auto; object-fit: contain; max-width: 180px; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.75; max-width: 260px; }

.footer-contact-quick { margin-top: 0.3rem; }
.footer-phone { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em; transition: color var(--transition); }
.footer-phone:hover { color: var(--gold-light); }
.footer-phone svg { flex-shrink: 0; }

.social-links { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: rgba(255,255,255,0.5); transition: var(--transition); }
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.social-links svg { flex-shrink: 0; }

.footer-col { padding-top: 0.5rem; }
.footer-col-title { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.7rem; }
.footer-col-line { display: inline-block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
.footer-col-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-list a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); display: inline-flex; align-items: center; gap: 0.35rem; }
.footer-col-list a::before { content: ''; display: inline-block; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.footer-col-list a:hover { color: var(--gold); }
.footer-col-list a:hover::before { width: 8px; }

.footer-seo-text { padding: 1.2rem 0; }
.footer-seo-text p { color: rgba(255,255,255,0.18); font-size: 0.73rem; line-height: 1.6; }
.footer-seo-text strong { color: rgba(255,255,255,0.25); font-weight: 500; }

.footer-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent); margin-bottom: 0; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0 1.8rem; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom > p { color: rgba(255,255,255,0.28); font-size: 0.78rem; }

.footer-powered { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.35); font-size: 0.78rem; transition: color var(--transition); text-decoration: none; }
.footer-powered span { color: rgba(255,255,255,0.25); }
.footer-powered strong { color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.03em; transition: color var(--transition); }
.footer-powered svg { opacity: 0.4; transition: opacity var(--transition); }
.footer-powered:hover { color: var(--gold); }
.footer-powered:hover strong { color: var(--gold); }
.footer-powered:hover svg { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; transition-delay: var(--d, 0s); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 600px; margin: 0 auto; }
  .about-badge-float { right: 1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
  .process-connector { width: 1px; height: 40px; margin-top: 0; background: linear-gradient(to bottom, var(--gold), transparent); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  #hero { height: 100vh; height: 100dvh; min-height: 600px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 4rem 0; }
  .section-title { font-size: 2.2rem; }
  .logo-img { height: 80px; max-width: 180px; }
  .hero-content { padding: 0 1rem; margin-top: -3rem; }
  .hero-title { font-size: 2.6rem; margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.5; }
  .hero-scroll { display: none; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; padding: 0.5rem 0; }
  .stat-item { padding: 0.5rem; flex: 1; min-width: 30%; }
  .stat-num { font-size: 1.6rem; }
  .stat-plus { font-size: 1rem; }
  .stat-label { font-size: 0.65rem; margin-top: 0.1rem; }
  .stat-divider { width: 1px; height: 30px; margin: auto 0; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.large { grid-column: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-details-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-card-content { padding: 3rem 1.5rem; }
  .contact-card-title { font-size: 2rem; }
  .contact-card-phone-btn .btn-text { font-size: 1.2rem; padding: 1rem 1.5rem; flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2rem; }
  .footer-brand { grid-column: 1 / -1; flex-direction: column; text-align: center; align-items: center; }
  .footer-col { text-align: center; }
  .footer-col-title { justify-content: center; }
  .footer-col-line { display: none; }
  .footer-col-list a { justify-content: center; }
  .footer-col-list a::before { display: none; }
  .footer-bottom { flex-direction: column; gap: 0.7rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; width: 100%; }
  .about-badge-float { right: auto; left: 50%; transform: translateX(-50%); bottom: 1rem; width: 90%; }
  .detail-box { flex-direction: column; align-items: center; text-align: center; }
}
