/* ═══════════════════════════════════════════════════════════════
   ELEKTRYCZNE KOSZALIN - STYLE
   ═══════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #3b8eff;
    --blue-light: #5ea3ff;
    --gold: #f0c000;
    --dark: #0c1220;
    --dark-card: #141c2e;
    --dark-section: #0f1726;
    --dark-alt: #111a2a;
    --text: #c8d0de;
    --text-light: #7a8599;
    --bg-light: #0f1726;
    --white: #fff;
    --radius: 12px;
    --border: rgba(255,255,255,.07);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--dark);
}

/* ═══════ HEADER ═══════ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}

header.scrolled {
    background: rgba(12,18,32,.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.header-top {
    background: rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 7px 0;
    transition: opacity .3s;
}

header.scrolled .header-top {
    opacity: .85;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.header-top .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.header-top .contact-info a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.header-top .contact-info a:hover {
    color: var(--gold);
}

.header-top .top-hours {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.top-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
    stroke: rgba(255,255,255,.7);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo .e-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 32px;
    flex-shrink: 0;
}

.logo .e-mark .bar {
    height: 7px;
    background: var(--gold);
    border-radius: 4px;
}

.logo .e-mark .bar.long {
    width: 26px;
}

.logo .e-mark .bar.short {
    width: 18px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

nav a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: .3px;
    transition: color .3s, text-shadow .3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s, box-shadow .3s;
    border-radius: 2px;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 7px rgba(240,192,0,.6), 0 0 20px rgba(240,192,0,.4), 0 0 40px rgba(240,192,0,.2), 0 0 80px rgba(240,192,0,.1);
}

nav a:hover::after {
    transform: scaleX(1);
    box-shadow: 0 0 8px rgba(240,192,0,.8), 0 0 20px rgba(240,192,0,.4);
}

nav a.active {
    color: var(--gold);
    text-shadow: 0 0 7px rgba(240,192,0,.6), 0 0 20px rgba(240,192,0,.4);
}

nav a.active::after {
    transform: scaleX(1);
    box-shadow: 0 0 8px rgba(240,192,0,.8), 0 0 20px rgba(240,192,0,.4);
}

/* ═══════ FULL-SCREEN HERO ═══════ */
.hero-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,30,80,.82) 0%, rgba(12,18,32,.65) 50%, rgba(0,50,120,.7) 100%);
    z-index: 1;
}

.hero-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
    animation: fadeUp 1s ease-out .3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(240,192,0,.15);
    border: 1px solid rgba(240,192,0,.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 1s ease-out .5s both;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeUp 1s ease-out .7s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold), #ffdf5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255,255,255,.8);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 1s ease-out .9s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease-out 1.1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all .35s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 25px rgba(240,192,0,.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(240,192,0,.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
}

.btn-outline:hover {
    background: rgba(240,192,0,.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(240,192,0,.3), 0 0 40px rgba(240,192,0,.12);
    text-shadow: 0 0 10px rgba(240,192,0,.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 3px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ═══════ SECTIONS BASE ═══════ */
.section {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(240,192,0,.12);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════ SERVICES ═══════ */
#uslugi .section-bg {
    background-image: url('picture/background/6.webp');
}

#uslugi .section-overlay {
    background: linear-gradient(180deg, rgba(12,18,32,.89) 0%, rgba(12,18,32,.99) 100%);
}

#uslugi {
    background: transparent;
    overflow: visible;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-contact-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.services-contact-btn {
    border-radius: 999px;
    padding: 16px 34px;
    font-weight: 800;
    letter-spacing: .2px;
}

@media (max-width: 768px) {
    .services-contact-wrap {
        justify-content: stretch;
    }
    .services-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

.service-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.06);
    padding: 36px 30px;
    border-radius: 16px;
    transition: all .15s ease;
    position: relative;
}

.service-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-6px) scale(1.04) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.service-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-title svg {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .85;
    transition: all .4s ease;
}

.service-card:hover .service-title svg {
    stroke: var(--gold);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(240,192,0,.6)) drop-shadow(0 0 20px rgba(240,192,0,.3));
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: .95rem;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
    transition: all .4s ease;
}

.service-card:hover li::before {
    background: var(--gold);
    box-shadow: 0 0 6px rgba(240,192,0,.7), 0 0 14px rgba(240,192,0,.35);
}

/* ═══════ GALLERY / REALIZACJE ═══════ */
#galeria .section-bg {
    background-image: url('picture/background/7.webp');
}

#galeria .section-overlay {
    background: linear-gradient(180deg, rgba(12,18,32,.94) 0%, rgba(15,23,38,.98) 100%);
}

#galeria {
    background: transparent;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 550px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease;
    display: none;
}

.gallery-slide.active {
    opacity: 1;
    display: block;
}

.gallery-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.03);
    opacity: 0.85;
    z-index: 0;
}

.gallery-slide img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.gallery-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px 35px;
    background: linear-gradient(to top, rgba(12,18,32,.95) 0%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.gallery-slide-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-slide-content p {
    color: rgba(255,255,255,.75);
    font-size: .95rem;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 16px;
}

.gallery-nav.next {
    right: 16px;
}

.gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s;
}

.gallery-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 5px;
}

/* ═══════ O NAS ═══════ */
#o-nas .section-bg {
    background-image: url('picture/background/3.webp');
}

#o-nas .section-overlay {
    background: linear-gradient(135deg, rgba(12,18,32,.93) 0%, rgba(0,30,80,.88) 100%);
}

#o-nas {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 14px 20px;
    padding-left: 52px;
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    background: var(--dark-card);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    transition: all .3s;
}

.features-list li:hover {
    border-color: var(--blue);
    transform: translateX(4px);
}

.features-list li::before {
    content: '⚡';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* ═══════ COUNTERS ═══════ */
.counters-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.counter-box {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all .4s;
}

.counter-box:hover {
    border-color: rgba(240,192,0,.25);
    background: rgba(240,192,0,.04);
    transform: translateY(-3px);
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(240,192,0,.25);
}

.counter-label {
    font-size: .85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .counters-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ═══════ CONTACT FORM ═══════ */
.contact-form {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 36px 32px;
}

.form-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    transition: border-color .3s, background .3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,.09);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240,192,0,.35);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form status messages */
.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .95rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ═══════ FOOTER ═══════ */
footer {
    background: #080d18;
    color: rgba(255,255,255,.7);
    padding: 70px 40px 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-grid h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .3px;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color .3s;
}

.footer-grid a:hover {
    color: var(--gold);
}

.partner-links {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.35);
    font-size: 13px;
}

/* ═══════ SCROLL REVEAL ANIMATIONS ═══════ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.fade-up.visible {
    transition: all .15s ease;
}

.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }
.stagger-6 { transition-delay: .6s; }

/* ═══════ MOBILE MENU ═══════ */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: block;
    }
    .header-top-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px 16px;
        padding: 6px 16px;
        font-size: 0.78rem;
    }
    .header-top .contact-info a,
    .header-top .top-hours {
        font-size: 0.78rem;
        gap: 4px;
    }
    .top-icon {
        width: 13px;
        height: 13px;
    }
    nav {
        padding: 10px 16px;
    }
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .menu-toggle {
        display: flex;
    }
    nav ul {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(12,18,32,.97);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(212,175,55,.15);
        box-shadow: -8px 0 32px rgba(0,0,0,.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.4,0,.2,1);
        z-index: 1000;
    }
    nav ul.active {
        transform: translateX(0);
    }
    nav ul.active .menu-close {
        display: block;
    }
    nav ul a {
        font-size: 1.25rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 60px 20px;
    }
    .gallery-slider-container {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 14px 28px;
        font-size: .9rem;
    }
    .gallery-slider-container {
        height: 300px;
    }
}
