/* ═══════════════════════════════════════════════════════════
   GAMI – Premium White Theme · Multi-page
   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; overflow-x: hidden; }
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; }
.hide-mobile { display: inline; }

/* ─── 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); }

/* Navbar transparent (hero with bg image) */
.navbar-transparent .logo-text { color: var(--white); }
.navbar-transparent .nav-link { color: rgba(255,255,255,0.75); }
.navbar-transparent .nav-link:hover, .navbar-transparent .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar-transparent .nav-phone { color: var(--white); }
.navbar-transparent .hamburger-line { background: var(--white); }
.navbar-transparent.menu-open .hamburger-line { background: var(--text); }
.navbar-transparent.menu-open .logo-text { color: var(--text); }
.navbar-transparent.scrolled .logo-text { color: var(--text); }
.navbar-transparent.scrolled .nav-link { color: var(--text-secondary); }
.navbar-transparent.scrolled .nav-link:hover, .navbar-transparent.scrolled .nav-link.active { color: var(--text); background: var(--bg-soft); }
.navbar-transparent.scrolled .nav-link.active { color: var(--accent); }
.navbar-transparent.scrolled .nav-phone { color: var(--text); }
.navbar-transparent.scrolled .hamburger-line { background: var(--text); }
.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; }

/* Logo on dark backgrounds */
.navbar-transparent .logo-img { filter: brightness(0) invert(1); }
.navbar-transparent.scrolled .logo-img,
.navbar-transparent.menu-open .logo-img { filter: none; }
.footer-brand .logo-img { filter: brightness(0) invert(1); }
.logo-icon { width: 40px; height: 40px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.logo-flame { width: 20px; height: 20px; color: var(--white); }
.logo-text { font-family: var(--font-primary); font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.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; }

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-icon { width: 14px; height: 14px; transition: var(--transition); }
.nav-dropdown:hover .nav-dropdown-icon { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); min-width: 240px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-family: var(--font-primary); font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-dropdown-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.nav-dropdown-item:hover, .nav-dropdown-item.active { background: var(--accent-soft); color: var(--accent); }

.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; }

/* ─── HERO (index.html only) ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-height) + 60px) 0 80px; overflow: hidden; background: var(--bg); }

/* Hero fullimage variant (background photo) */
.hero-fullimage { background: transparent; }
.hero-fullimage .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.65) 40%, rgba(10,10,10,0.55) 100%); }
.hero-content-fullimage { position: relative; z-index: 1; text-align: left; max-width: 760px; }
.hero-content-fullimage .hero-cta { justify-content: flex-start; margin-bottom: 56px; }

/* Light variants for fullimage hero */
.hero-title-light { color: var(--white); }
.hero-title-accent-light { background: linear-gradient(135deg, #ff9b40, #ffcc80); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle-light { color: rgba(255,255,255,0.95); }

.hero-title { font-family: var(--font-primary); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; color: var(--text); margin-bottom: 24px; }
.hero-title.hero-title-light { color: var(--white); }
.hero-subtitle { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.7; color: var(--text-secondary); max-width: 640px; margin: 0 auto 40px; }
.hero-subtitle.hero-subtitle-light { color: rgba(255,255,255,0.95); }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero features grid */
.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; }
.hero-feature-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: var(--transition); text-decoration: none; text-align: left; }
.hero-feature-item:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,106,0,0.4); transform: translateY(-2px); }
.hero-feature-icon { width: 40px; height: 40px; min-width: 40px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.hero-feature-icon svg { width: 18px; height: 18px; color: var(--white); }
.hero-feature-item strong { font-family: var(--font-primary); font-size: 0.9rem; font-weight: 700; color: var(--white); display: block; line-height: 1.3; }
.hero-feature-item span { font-size: 0.8rem; color: rgba(255,255,255,0.85); line-height: 1.4; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { position: relative; padding: calc(var(--nav-height) + 60px) 0 60px; background: var(--bg-soft); border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero-with-image { padding: calc(var(--nav-height) + 80px) 0 80px; background: transparent; border-bottom: none; min-height: 400px; display: flex; align-items: center; }
.page-hero-bg-image { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.7) 50%, rgba(15,15,15,0.6) 100%); }
.page-hero-with-image .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 700px; }
.page-hero-title { font-family: var(--font-primary); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px; }
.page-hero-title-light { color: var(--white); }
.page-hero-subtitle { font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.page-hero-subtitle-light { color: rgba(255,255,255,0.7); }
.section-tag-light { background: rgba(255,106,0,0.2); border-color: rgba(255,106,0,0.35); color: #ff9b40; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-tertiary); }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb-light { color: rgba(255,255,255,0.45); }
.breadcrumb-light a { color: rgba(255,255,255,0.6); }
.breadcrumb-light a:hover { color: var(--accent); }
.breadcrumb-light span { color: rgba(255,255,255,0.45); }

/* ─── SECTION COMMON ─── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag { display: inline-block; padding: 6px 16px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-full); font-family: var(--font-primary); font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.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); }

/* ─── TRUST ─── */
.trust { padding: 80px 0 0; background: var(--bg); position: relative; }
.trust::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { padding: 32px 24px; border-radius: var(--radius-lg); background: var(--bg-soft); border: 1px solid var(--border-light); text-align: center; transition: var(--transition); }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft-border); }
.trust-icon-wrap { 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; }
.trust-icon-wrap svg { width: 24px; height: 24px; color: var(--accent); }
.trust-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.trust-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── SERVICES OVERVIEW (index) ─── */
.services-overview { padding: var(--section-padding) 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service-block { display: block; border-radius: var(--radius-xl); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.service-block:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-block-image { position: relative; height: 220px; overflow: hidden; }
.service-block-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s var(--ease); }
.service-block:hover .service-block-image img { transform: scale(1.08); }
.service-block-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.service-block-content { padding: 28px; }
.service-block-icon { width: 48px; height: 48px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-block-icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-block-content h3 { font-family: var(--font-primary); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-block-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.service-block-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-primary); font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.service-block-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-block:hover .service-block-link svg { transform: translateX(4px); }

/* ─── PRODUCTS ─── */
.products { padding: var(--section-padding) 0; background: var(--bg); }
.products-grid { display: flex; flex-direction: column; gap: 32px; }

.product-card-horizontal { display: grid; grid-template-columns: 400px 1fr; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.product-card-horizontal:hover { box-shadow: var(--shadow-xl); border-color: transparent; transform: translateY(-4px); }

.product-card-horizontal .product-image { height: 100%; min-height: 280px; max-height: 420px; position: relative; overflow: hidden; }
.product-card-horizontal .product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.6s var(--ease); }
.product-card-horizontal:hover .product-image img { transform: scale(1.05); }

.product-badge { position: absolute; top: 16px; right: 16px; padding: 5px 16px; background: var(--accent); color: var(--white); font-family: var(--font-primary); font-size: 0.75rem; font-weight: 700; border-radius: var(--radius-full); letter-spacing: 0.04em; text-transform: uppercase; }
.product-badge-dark { background: var(--bg-dark); }
.product-badge-green { background: #22c55e; }

.product-content { padding: 36px; }
.product-emoji { font-size: 1.8rem; margin-bottom: 8px; }
.product-name { font-family: var(--font-primary); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.product-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-secondary); }
.product-features li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.product-location { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-tertiary); margin-bottom: 20px; padding: 10px 14px; background: var(--bg-soft); border-radius: var(--radius-sm); }
.product-location svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.product-phones { display: flex; gap: 12px; flex-wrap: wrap; }
.product-card-featured { border-color: var(--accent-soft-border); box-shadow: 0 0 0 1px var(--accent-soft-border), var(--shadow-md); }

/* ─── OPAL BRANCH SECTIONS ─── */
.opal-branch { padding: var(--section-padding) 0; background: var(--bg); }
.opal-branch-alt { background: var(--bg-soft); }
.opal-branch-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.opal-branch-header .section-title { margin-bottom: 12px; }
.opal-branch-header .section-subtitle { font-size: 1rem; }
.opal-branch-content { max-width: 1000px; margin: 0 auto; }
.opal-branch-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.opal-feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: var(--transition); }
.opal-branch-alt .opal-feature-card { background: var(--white); }
.opal-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft-border); }
.opal-feature-icon { width: 52px; height: 52px; margin: 0 auto 14px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.opal-feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.opal-feature-card h4 { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.opal-feature-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.opal-separator { padding: 0; }
.opal-separator-line { height: 1px; background: var(--border); }
.page-hero-anchors { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ─── INFO BAR ─── */
.info-bar { padding: 60px 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item > svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-item strong { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 2px; }
.info-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.info-item a { color: var(--accent); font-weight: 600; }

/* ─── SPLIT LAYOUT (transport / wulkanizacja) ─── */
.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, types) ─── */
.what-we-do { padding: var(--section-padding) 0; background: var(--bg-soft); }
.cards-3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.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; }

/* ─── STEPS (transport process) ─── */
.process { padding: var(--section-padding) 0; background: var(--bg); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step-card { flex: 1; max-width: 300px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; }
.step-number { font-family: var(--font-primary); font-size: 2.2rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; line-height: 1; }
.step-card h3 { font-family: var(--font-primary); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.step-arrow { display: flex; align-items: center; justify-content: center; width: 48px; padding-top: 40px; color: var(--text-tertiary); }
.step-arrow svg { width: 24px; height: 24px; }

/* ─── LOCATION INFO (wulkanizacja) ─── */
.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%; }

/* ─── 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; }
.cta-phones { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-phones a { font-family: var(--font-primary); font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.cta-phones a:hover { color: var(--accent); }
.cta-phones-sep { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* CTA phones grid */
.cta-phones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.cta-phone-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-phone-label { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.cta-phone-col .btn { width: 100%; text-align: center; justify-content: center; }

/* ─── DELIVERY AREA ─── */
.delivery-area { padding: var(--section-padding) 0; background: var(--white); }
.delivery-branches-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.delivery-branch-card { display: flex; padding: 24px; background: var(--bg-soft); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.delivery-branch-card > div { min-width: 0; }
.delivery-branch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.delivery-branch-icon { width: 44px; height: 44px; background: var(--accent-soft); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); margin-right: 16px; }
.delivery-branch-icon svg { width: 22px; height: 22px; }
.delivery-branch-card h4 { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.delivery-branch-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 8px; }
.delivery-branch-phone { display: flex; align-items: center; font-family: var(--font-primary); font-size: 0.88rem; font-weight: 600; color: var(--accent); margin-top: 4px; }
.delivery-branch-phone svg { width: 14px; height: 14px; margin-right: 6px; flex-shrink: 0; }
.delivery-branch-phone:hover { text-decoration: underline; }
.delivery-towns-section { background: var(--bg-dark); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.delivery-towns-section h4 { font-family: var(--font-primary); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.delivery-towns-grid { display: grid; grid-template-columns: repeat(4, 1fr); justify-content: center; gap: 12px; margin-bottom: 24px; }
.delivery-town-chip { display: flex; align-items: center; padding: 10px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; font-family: var(--font-primary); font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: var(--transition); white-space: nowrap; }
.delivery-town-chip:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.delivery-town-chip svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; margin-right: 6px; }
.delivery-town-chip:hover svg { color: var(--white); }
.delivery-towns-note { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-style: italic; }

/* ─── REVIEWS ─── */
.reviews { padding: var(--section-padding) 0; background: var(--bg-soft); }
.reviews-slider-wrap { position: relative; overflow: hidden; }
@media (max-width: 768px) { .reviews-slider-wrap { overflow: visible; } }
.reviews-slider { display: flex; gap: 24px; transition: transform 0.6s var(--ease); }
.review-card { min-width: calc(33.333% - 16px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition); flex-shrink: 0; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { font-size: 1.1rem; color: #f59e0b; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg, var(--accent), #ff9b40); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.review-avatar span { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 700; color: var(--white); }
.review-author strong { font-family: var(--font-primary); font-size: 0.9rem; font-weight: 700; color: var(--text); display: block; }
.review-role { font-size: 0.8rem; color: var(--text-tertiary); display: block; }
.reviews-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }
.slider-btn { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--white); color: var(--text); transition: var(--transition); }
.slider-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: var(--transition); cursor: pointer; }
.slider-dot.active { background: var(--accent); transform: scale(1.2); }

/* ─── CONTACT ─── */
.contact { padding: var(--section-padding) 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrap { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.contact-form-heading { font-family: var(--font-primary); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-form-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { padding: 14px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text); transition: var(--transition); appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-tertiary); }
.form-group select { cursor: pointer; }
.form-privacy { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-tertiary); justify-content: center; margin-top: 4px; }
.form-privacy-icon { width: 14px; height: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.contact-info-card-accent { background: var(--white); border-color: var(--accent-soft-border); }
.contact-info-heading { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.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 h4 { font-family: var(--font-primary); font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-info-item a { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.contact-info-item a:hover { color: var(--accent); }

/* Phones grid (kontakt.html) */
.contact-phones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-phone-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--bg-soft); transition: var(--transition); }
.contact-phone-item:hover { border-color: var(--accent); background: var(--accent-soft); }
.contact-phone-icon { width: 36px; height: 36px; min-width: 36px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.contact-phone-icon svg { width: 16px; height: 16px; color: var(--white); }
.contact-phone-item strong { font-family: var(--font-primary); font-size: 0.9rem; font-weight: 700; color: var(--text); display: block; }
.contact-phone-item span { font-size: 0.75rem; color: var(--text-tertiary); }

/* Map section */
.map-section { padding: 0 0 var(--section-padding); background: var(--bg); }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

/* ─── 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-brand .logo-text { color: var(--white); }
.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 ─── */

/* ─── GALLERY ─── */
.gallery-section { padding: 80px 0; background: var(--bg-dark); }
.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-body); font-size: 0.9rem; }

/* ─── VULK HERO (wulkanizacja landing) ─── */
.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; z-index: 1; 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; }

.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); }
.trust-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.trust-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.trust-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.trust-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ─── BRANCH SECTIONS (kontakt.html) ─── */
.branch-section { padding: var(--section-padding) 0 0; background: var(--bg); }
.branch-section:last-of-type { padding-bottom: 0; }
.branch-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 48px; overflow: hidden; }
.branch-card-accent { background: var(--white); border-color: var(--accent-soft-border); box-shadow: 0 0 0 1px var(--accent-soft-border), var(--shadow-md); }
.branch-header { margin-bottom: 40px; }
.branch-badge { display: inline-block; padding: 6px 16px; background: var(--accent); color: var(--white); font-family: var(--font-primary); font-size: 0.75rem; font-weight: 700; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.branch-badge-dark { background: var(--bg-dark); }
.branch-title { font-family: var(--font-primary); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); margin-bottom: 12px; }
.branch-subtitle { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); max-width: 640px; }
.branch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.branch-info { display: flex; flex-direction: column; gap: 28px; }
.branch-info-group h3 { display: flex; align-items: center; gap: 8px; font-family: var(--font-primary); font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.branch-info-group h3 svg { width: 18px; height: 18px; color: var(--accent); }
.branch-info-group p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.branch-region { font-size: 0.85rem; color: var(--text-tertiary); }
.branch-phones { display: flex; flex-direction: column; gap: 10px; }
.branch-phone-link { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.branch-card-accent .branch-phone-link { background: var(--bg-soft); }
.branch-phone-link:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateX(4px); }
.branch-phone-number { font-family: var(--font-primary); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.branch-phone-label { font-size: 0.8rem; color: var(--text-tertiary); margin-left: auto; }
.branch-hours { display: flex; flex-direction: column; gap: 8px; }
.branch-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px; background: var(--bg-soft); border-radius: var(--radius-sm); font-size: 0.9rem; }
.branch-card-accent .branch-hours-row { background: var(--bg-soft); }
.branch-hours-row span { color: var(--text-secondary); }
.branch-hours-row strong { color: var(--text); font-weight: 600; }
.branch-hours-closed strong { color: var(--text-tertiary); }
.branch-services-list { display: flex; flex-direction: column; gap: 8px; }
.branch-services-list li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-secondary); }
.branch-services-list li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.branch-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; }
.branch-map iframe { width: 100%; height: 100%; border: 0; }

/* Company data */
.company-data { padding: 60px 0 0; background: var(--bg); }
.company-data-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.company-data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.company-data-heading { display: flex; align-items: center; gap: 8px; font-family: var(--font-primary); font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.company-data-heading svg { width: 18px; height: 18px; color: var(--accent); }
.company-data-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.company-data-card a { color: var(--accent); font-weight: 600; }
.company-data-card a:hover { color: var(--accent-hover); }

/* ─── PGG STEPS (wegiel-polski.html) ─── */
.pgg-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.pgg-step-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px 28px; background: var(--white); border: 1px solid var(--border); border-radius: 0; transition: var(--transition); position: relative; }
.pgg-step-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pgg-step-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.pgg-step-card + .pgg-step-card { border-top: none; }
.pgg-step-card:hover { background: var(--accent-soft); border-color: var(--accent-soft-border); z-index: 1; }
.pgg-step-card--highlight { background: #fff8f3; border-color: var(--accent) !important; border-left: 4px solid var(--accent) !important; }
.pgg-step-card--highlight:hover { background: #fff0e6; }
.pgg-step-tag { display: inline-block; background: var(--accent); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 2px 10px; border-radius: 20px; margin-left: 6px; vertical-align: middle; }
.pgg-step-number { width: 48px; height: 48px; min-width: 48px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-primary); font-size: 1.2rem; font-weight: 800; margin-top: 2px; }
.pgg-step-content h4 { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pgg-step-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }
.pgg-step-content a { color: var(--accent); font-weight: 600; }
.pgg-step-content a:hover { color: var(--accent-hover); text-decoration: underline; }
.pgg-step-content strong { color: var(--text); }

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

.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; }
.pgg-help-phones { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   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; }
    .nav-dropdown-menu { display: none; }
    .hero-content-fullimage { text-align: center; max-width: 100%; }
    .hero-content-fullimage .hero-cta { justify-content: center; }
    .hero-features { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
    .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; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card-horizontal { grid-template-columns: 1fr; }
    .product-card-horizontal .product-image { min-height: 220px; }
    .split-grid { grid-template-columns: 1fr; gap: 48px; }
    .split-grid-reverse { direction: ltr; }
    .cards-3-grid { grid-template-columns: 1fr; }
    .cards-4-grid { grid-template-columns: repeat(2, 1fr); }
    .delivery-branches-row { grid-template-columns: 1fr; }
    .delivery-towns-section { padding: 32px 24px; }
    .delivery-towns-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; align-items: center; gap: 16px; }
    .step-arrow { transform: rotate(90deg); padding: 0; width: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-phones-grid { grid-template-columns: 1fr; }
    .location-card { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .opal-branch-features { grid-template-columns: 1fr 1fr 1fr; }
    .branch-grid { grid-template-columns: 1fr; }
    .company-data-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .review-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; --nav-height: 64px; }
    .hero { padding: calc(var(--nav-height) + 40px) 0 60px; }
    .hero-fullimage { min-height: auto; padding: calc(var(--nav-height) + 48px) 0 48px; }
    .hero-features { grid-template-columns: 1fr; gap: 10px; }
    .hero-feature-item { padding: 12px 16px; }
    .page-hero { padding: calc(var(--nav-height) + 40px) 0 40px; }
    .page-hero-with-image { padding: calc(var(--nav-height) + 48px) 0 48px; min-height: 320px; }
    .vulk-hero-chips { gap: 8px; }
    .vulk-hero-cta { flex-direction: column; }
    .vulk-hero-cta .btn { width: 100%; text-align: center; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .review-card { min-width: 100%; }
    .reviews-slider { flex-direction: column; transform: none !important; }
    .reviews-controls { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .branch-card { padding: 24px; }
    .branch-phone-link { padding: 10px 14px; }
    .opal-branch-features { grid-template-columns: 1fr; }
    .product-phones { flex-direction: column; }
    .product-phones .btn { width: 100%; }
    .page-hero-anchors { flex-direction: column; }
    .page-hero-anchors .btn { width: 100%; text-align: center; }
    .pgg-cta-box, .pgg-help-box { flex-direction: column; text-align: center; }
    .pgg-help-phones { justify-content: center; }
    .pgg-help-phones .btn { width: 100%; }
    .pgg-step-card { padding: 20px; }
    .pgg-step-number { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .company-data-card { padding: 24px; }
    .company-data-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hide-mobile { display: none; }
    .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) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .page-hero-title { font-size: 1.8rem; }
    .vulk-hero-title { font-size: 2rem; }
    .vulk-chip { padding: 8px 14px; font-size: 0.8rem; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .cta-phones { flex-direction: column; gap: 8px; }
    .cta-phones-sep { display: none; }
    .cta-phones-grid { grid-template-columns: 1fr; gap: 24px; }
    .delivery-town-chip { padding: 8px 16px; font-size: 0.85rem; justify-content: center; width: 100%; }
    .delivery-towns-grid { grid-template-columns: repeat(2, 1fr); }
    .btn-lg { padding: 14px 28px; }
    .product-content { padding: 24px; }
}
