/* ═══════════════════════════════════════════════════════════
   GAMI Wulkanizacja – Standalone CSS
   Colors: White bg, Graphite text, Orange (#ff6a00) accent
   ═══════════════════════════════════════════════════════════ */

:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #f7f7f8;
    --bg-alt: #f0f0f2;
    --bg-dark: #1e1e24;
    --text: #1a1a1a;
    --text-secondary: #5a5a6e;
    --text-tertiary: #8a8a9a;
    --text-on-dark: #ffffff;
    --text-on-accent: #ffffff;
    --accent: #ff6a00;
    --accent-hover: #e85d00;
    --accent-soft: rgba(255, 106, 0, 0.08);
    --accent-soft-border: rgba(255, 106, 0, 0.18);
    --border: #e5e5ea;
    --border-light: #f0f0f2;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
    --shadow-accent: 0 8px 32px rgba(255, 106, 0, 0.25);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1240px;
    --section-padding: 100px;
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.6s var(--ease);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-secondary); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.text-accent-light { color: #ffb574; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-primary); font-weight: 600; font-size: 0.95rem; padding: 14px 28px; border-radius: var(--radius-full); transition: var(--transition); position: relative; overflow: hidden; white-space: nowrap; border: 2px solid transparent; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: var(--text-on-accent); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn-dark { background: var(--bg-dark); color: var(--text-on-dark); border-color: var(--bg-dark); }
.btn-dark:hover { background: #2a2a2a; border-color: #2a2a2a; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-white { background: var(--white); color: var(--bg-dark); border-color: var(--white); }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.35); transform: scale(0); animation: ripple 0.6s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ─── NAVBAR ─── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 9990; height: var(--nav-height); display: flex; align-items: center; transition: var(--transition); background: rgba(255,255,255,0); }
.navbar.scrolled, .navbar-inner { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.navbar.menu-open { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 38px; width: auto; display: block; transition: filter 0.3s; }
.footer-brand .logo-img { filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 16px; font-family: var(--font-primary); font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); border-radius: var(--radius-full); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg-soft); }
.nav-link.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-family: var(--font-primary); font-size: 0.9rem; font-weight: 600; color: var(--text); }
.nav-phone-icon { width: 16px; height: 16px; color: var(--accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 9999; background: none; border: none; cursor: pointer; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--white); padding: 32px 24px; z-index: 9999; overflow-y: auto; }
.mobile-menu.active { display: block; animation: slideDown 0.3s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.mobile-nav-link { display: block; padding: 16px 20px; font-family: var(--font-primary); font-size: 1.1rem; font-weight: 600; color: var(--text); border-radius: var(--radius-md); transition: var(--transition); }
.mobile-nav-link:hover { background: var(--bg-soft); color: var(--accent); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; }

/* ─── SECTION COMMON ─── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-title { font-family: var(--font-primary); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary); }

/* ─── SPLIT LAYOUT ─── */
.page-content { padding: var(--section-padding) 0; background: var(--bg); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-grid-reverse { direction: rtl; }
.split-grid-reverse > * { direction: ltr; }
.split-content { position: relative; }
.split-content .section-title { text-align: left; margin-bottom: 16px; }
.split-desc { font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 32px; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-check { width: 36px; height: 36px; min-width: 36px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-check svg { width: 18px; height: 18px; color: var(--accent); }
.feature-item strong { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 2px; }
.feature-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.split-visual { position: relative; }
.split-image-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image-wrap img { width: 100%; height: auto; display: block; }
.float-card { position: absolute; bottom: -20px; right: -20px; display: flex; align-items: center; gap: 14px; padding: 16px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.float-card-left { right: auto; left: -20px; }
.float-card-icon { width: 44px; height: 44px; min-width: 44px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.float-card-icon svg { width: 22px; height: 22px; color: var(--white); }
.float-card-number { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; color: var(--text); display: block; }
.float-card-label { font-size: 0.8rem; color: var(--text-tertiary); }

/* ─── ICON CARDS ─── */
.what-we-do { padding: var(--section-padding) 0; background: var(--bg-soft); }
.cards-4-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.icon-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: var(--transition); }
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft-border); }
.icon-card-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.icon-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.icon-card h3 { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.icon-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── LOCATION INFO ─── */
.location-info { padding: var(--section-padding) 0; background: var(--bg-soft); }
.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; padding: 48px; }
.location-card-content { display: flex; flex-direction: column; gap: 20px; }
.location-card-content .section-title { text-align: left; margin-bottom: 8px; }
.location-card-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; }
.location-card-map iframe { width: 100%; height: 100%; }

/* ─── CONTACT INFO ITEMS ─── */
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { width: 36px; height: 36px; min-width: 36px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 16px; height: 16px; color: var(--accent); }
.contact-info-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.contact-info-item a { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.contact-info-item a:hover { color: var(--accent); }

/* ─── CTA ─── */
.cta { padding: var(--section-padding) 0; background: var(--bg); }
.cta-card { background: linear-gradient(135deg, #1e1e24 0%, #2a2a30 50%, #2e2218 100%); border-radius: var(--radius-xl); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 120%, rgba(255,106,0,0.2), transparent); pointer-events: none; }
.cta-title { font-family: var(--font-primary); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; position: relative; z-index: 1; }

/* ─── PGG HELP BOX (cross-sell) ─── */
.pgg-help-box { display: flex; align-items: center; gap: 20px; padding: 28px 32px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.pgg-help-icon { width: 52px; height: 52px; min-width: 52px; background: var(--bg-dark); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.pgg-help-icon svg { width: 24px; height: 24px; color: var(--white); }
.pgg-help-text { flex: 1; }
.pgg-help-text h4 { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pgg-help-text p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* ─── GALLERY ─── */
.gallery-section { padding: 80px 0; background: var(--bg-dark); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.6); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; display: block; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), filter 0.4s var(--ease); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,0.6); transition: transform 0.3s ease; }
.lightbox-overlay.active .lightbox-img { animation: lightboxIn 0.3s ease forwards; }
@keyframes lightboxIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; z-index: 10001; line-height: 1; opacity: 0.7; transition: opacity 0.2s, transform 0.2s; }
.lightbox-close:hover { opacity: 1; transform: scale(1.15); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10001; opacity: 0.6; transition: opacity 0.2s, background 0.2s; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-family: var(--font-secondary); font-size: 0.9rem; }

/* ─── VULK HERO ─── */
.vulk-hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: calc(var(--nav-height) + 60px) 0 80px; overflow: hidden; }
.vulk-hero-bg { position: absolute; inset: 0; z-index: 0; }
.vulk-hero-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vulk-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.68) 45%, rgba(10,10,10,0.5) 100%); }
.vulk-hero .container { position: relative; z-index: 1; }
.vulk-hero-content { max-width: 800px; }
.vulk-hero-kicker { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 12px; }
.vulk-hero-title { font-family: var(--font-primary); font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--white); margin-bottom: 16px; }
.vulk-hero-accent { background: linear-gradient(135deg, #ff9b40, #ffcc80); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.vulk-hero-subtitle { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.vulk-hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.vulk-chip { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; color: rgba(255,255,255,0.85); font-family: var(--font-primary); font-size: 0.88rem; font-weight: 600; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: var(--transition); }
.vulk-chip:hover { background: rgba(255,106,0,0.15); border-color: rgba(255,106,0,0.4); color: var(--white); }
.vulk-chip svg { width: 16px; height: 16px; color: var(--accent); }
.vulk-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.social-link svg { width: 18px; height: 18px; }
.footer-heading { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.footer-contact-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-list li span, .footer-contact-list li a { color: rgba(255,255,255,0.5); }
.footer-contact-list li a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: 0.85rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── BACK TO TOP ─── */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-accent); opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--transition); z-index: 900; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-hover); transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ─── SCROLL ANIMATIONS ─── */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .nav-links { display: none; }
    .nav-actions .nav-phone { display: none; }
    .nav-actions .btn-sm { display: none; }
    .hamburger { display: flex; }
    .vulk-hero { min-height: auto; padding: calc(var(--nav-height) + 48px) 0 56px; }
    .vulk-hero-content { text-align: center; max-width: 100%; }
    .vulk-hero-chips { justify-content: center; }
    .vulk-hero-cta { justify-content: center; }
    .split-grid { grid-template-columns: 1fr; gap: 48px; }
    .split-grid-reverse { direction: ltr; }
    .cards-4-grid { grid-template-columns: repeat(2, 1fr); }
    .location-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; --nav-height: 64px; }
    .vulk-hero-chips { gap: 8px; }
    .vulk-hero-cta { flex-direction: column; }
    .vulk-hero-cta .btn { width: 100%; text-align: center; }
    .pgg-help-box { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-card { padding: 48px 24px; }
    .float-card { bottom: -10px; right: 10px; left: auto; padding: 12px 16px; }
    .float-card-left { left: 10px; right: auto; }
    .location-card { padding: 24px; }
    .cards-4-grid { grid-template-columns: 1fr; }
    .gallery-grid { gap: 12px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.6rem; }
    .vulk-hero-title { font-size: 2rem; }
    .vulk-chip { padding: 8px 14px; font-size: 0.8rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .btn-lg { padding: 14px 28px; }
}
