/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #005A8C;
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #1A1A1A;
    background: #FFFFFF;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: 'Figtree', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    text-transform: uppercase;
}

h1 {
    font-weight: 400;
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    color: #1A1A1A;
}

h2 {
    font-weight: 400;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: 0.015em;
    color: #1A1A1A;
}

h3 {
    font-weight: 400;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1A1A1A;
}

.section-label {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #006DA3;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #0088CC;
    transform: translateY(-50%);
}

.section-subtitle {
    font-weight: 300;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    color: #555;
    max-width: 620px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 17px 34px;
    border-radius: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-arrow {
    display: inline-flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-arrow svg {
    width: 16px;
    height: 16px;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary {
    background: #0088CC;
    color: #FFFFFF;
    border: 2px solid #0088CC;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #005f8f;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    background: transparent;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A1A1A;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover {
    color: #FFFFFF;
}

.btn-white {
    background: #FFFFFF;
    color: #0088CC;
    font-weight: 700;
    border: 2px solid #FFFFFF;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F0F0F0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-white:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-white:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.25);
}

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

.btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-outline-white:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-white:hover {
    border-color: #FFFFFF;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 0 #E5E5E0, 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 400;
    font-size: 0.92rem;
    color: #1A1A1A;
    transition: color 0.25s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #0088CC;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #0088CC;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link-dropdown svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    font-weight: 500;
    font-size: 0.9rem;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    color: #0088CC;
}

.nav-cta {
    font-size: 0.78rem;
    padding: 12px 24px;
    letter-spacing: 0.06em;
}

/* Mega Menu */
.mega-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.mega-menu-col h4,
.mega-menu-col .mega-menu-heading {
    display: block;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0088CC;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #E5E5E0;
}

.mega-menu-col h4::after,
.mega-menu-col .mega-menu-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 32px;
    height: 2px;
    background: #0088CC;
}

.mega-menu-col a {
    display: block;
    font-weight: 400;
    font-size: 0.92rem;
    color: #444;
    padding: 6px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-menu-col a:hover {
    color: #0088CC;
    padding-left: 6px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1050;
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    font-size: 1.15rem;
    font-weight: 400;
    padding: 14px 0;
    border-bottom: 1px solid #F0F0F0;
    color: #1A1A1A;
}

.mobile-menu a:hover {
    color: #0088CC;
}

.mobile-submenu-title {
    font-family: 'Figtree', sans-serif !important;
    font-weight: 700 !important;
    color: #006DA3 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 20px;
    padding-bottom: 8px !important;
    border-bottom: none !important;
}

.mobile-submenu a {
    font-size: 0.98rem;
    padding: 10px 0 10px 16px;
    color: #555;
}

.mobile-menu-cta {
    margin-top: 32px;
}

.mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
}

.mobile-menu-phone {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 1.05rem;
}

.mobile-menu-phone a {
    color: #0088CC;
    border: none;
    display: inline;
    font-size: inherit;
}

/* ============================================================
   SERVICES SECTION (for service cards in related)
   ============================================================ */
.service-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #0088CC;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 22px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.service-card-name {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    transform: translateY(4px);
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-name {
    transform: translateY(0);
}

.service-card-arrow {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-arrow svg {
    width: 14px;
    height: 14px;
    color: #FFFFFF;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 100px 0;
    background: #0088CC;
}

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 28px;
}

.contact-info p {
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    border: 1.5px solid #E5E5E0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: #0088CC;
}

.contact-detail-text strong {
    display: block;
    font-weight: 500;
    font-size: 0.88rem;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-weight: 300;
    font-size: 0.92rem;
    color: #555;
}

.contact-detail-text a {
    color: #0088CC;
}

.contact-detail-text a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #F8F7F4;
    border-radius: 0;
    padding: 48px 44px;
    border-top: 3px solid #0088CC;
}

.contact-form h3 {
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    font-family: 'Figtree', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1A1A1A;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #D0D0CC;
    border-radius: 0;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group select {
    padding: 14px 0;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #0088CC;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BBB;
}

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

.form-submit-btn {
    width: 100%;
    padding: 18px 32px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #0088CC;
    border: 2px solid #0088CC;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #005f8f;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.form-submit-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.form-submit-btn:hover {
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.3);
}

.form-submit-btn:active {
    transform: scale(0.985);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: #F8F7F4;
    border-top: 1px solid #E5E5E0;
    border-bottom: 1px solid #E5E5E0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    max-height: 36px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid;
    overflow: hidden;
}

.trust-icon.green {
    color: #00B140;
    border-color: rgba(0, 177, 64, 0.3);
}

.trust-icon.blue {
    color: #0088CC;
    border-color: rgba(0, 136, 204, 0.3);
}

.trust-icon svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    flex-shrink: 0;
}

.trust-item span {
    font-weight: 600;
    font-size: 0.82rem;
    color: #333;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 80px 0 0;
    margin-top: 0;
}
/* Breathing room: last content section before footer */
main > section:last-child,
main > div:last-child { margin-bottom: 0; }
.gallery-section + .cta-section,
.cta-section + .partners-section { padding-top: 100px; }
.coverage-section:last-of-type,
.contact-section:last-of-type { padding-bottom: 120px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 280px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: #0088CC;
    background: rgba(0, 136, 204, 0.15);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-col .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col .footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #0088CC;
}

.footer-fskatt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 177, 64, 0.3);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00B140;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-watermark {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.2;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .nav-right .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        padding: 0 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 32px 28px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 0 20px;
        height: 68px;
    }

    .nav-logo img {
        height: 36px;
    }

    .cta-section {
        padding: 72px 0;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-form {
        padding: 32px 24px;
        border-top: 3px solid #0088CC;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* Page Hero Banner */
.page-hero { padding: 160px 0 80px; background: #1A1A1A; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, transparent, #0088CC, transparent); }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.page-hero .breadcrumb a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: #0088CC; }
.page-hero .breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb .current { color: #0088CC; }
.page-hero h1 { color: #FFFFFF; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7; max-width: 640px; font-weight: 300; }

/* Content Sections for Service Pages */
.content-section { padding: 100px 0; }
.content-section:nth-child(even) { background: #F8F7F4; }
.content-section h2 { margin-bottom: 24px; }
.content-section p { color: #555; font-weight: 300; line-height: 1.8; margin-bottom: 16px; max-width: 720px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-image { border-radius: 0; overflow: hidden; aspect-ratio: 4/3; }
.content-image img { width: 100%; height: 100%; object-fit: cover; }

/* Service Features List */
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: #FFFFFF; border-left: 2px solid #0088CC; }
.feature-item svg { width: 20px; height: 20px; color: #0088CC; flex-shrink: 0; margin-top: 2px; }
.feature-item div strong { display: block; font-size: 0.88rem; font-weight: 600; color: #1A1A1A; margin-bottom: 2px; }
.feature-item div span { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* FAQ Accordion */
.faq-section { padding: 100px 0; background: #FFFFFF; }
.faq-section .section-label { display: block; text-align: center; margin-bottom: 16px; }
.faq-section h2 { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E5E0; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 1rem; color: #1A1A1A; text-align: left; cursor: pointer; background: none; border: none; }
.faq-question svg { width: 20px; height: 20px; color: #0088CC; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-question.active svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 24px; color: #555; font-weight: 300; line-height: 1.8; font-size: 0.95rem; }

/* ROT Avdrag Banner */
.rot-banner { background: linear-gradient(135deg, #00B140 0%, #009933 100%); padding: 48px 0; }
.rot-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.rot-banner h3 { color: #FFFFFF; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.rot-banner p { color: rgba(255,255,255,0.85); font-weight: 300; max-width: 500px; }

/* Related Services */
.related-section { padding: 80px 0; background: #F8F7F4; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }

@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .content-grid.reverse { direction: ltr; }
    .service-features { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .rot-banner-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
    .page-hero { padding: 120px 0 60px; }
    .content-section { padding: 72px 0; }
    .faq-section { padding: 72px 0; }
    .related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COVERAGE & PARTNERS SECTIONS (shared base styles)
   Overridden on index.html where a map layout is used.
   ============================================================ */
.coverage-section {
    padding: 100px 0;
    background: #F8F7F4;
}
.coverage-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}
.coverage-inner .section-label {
    display: inline-block;
    margin-bottom: 16px;
}
.coverage-inner h2 {
    margin-bottom: 20px;
}
.coverage-inner .section-subtitle {
    margin-bottom: 32px;
}
.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.coverage-cities .city-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid #E5E5E0;
    font-family: 'Figtree', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.coverage-cities .city-tag:hover {
    background: #0088CC;
    color: #FFFFFF;
    border-color: #0088CC;
}

/* ========== Coverage "Orter vi arbetar i" — subtle text links ========== */
.coverage-section .city-links { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.coverage-section .city-links-heading { font-family: 'Bebas Neue', Impact, sans-serif; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.1em; margin: 0 0 8px; color: rgba(255,255,255,0.88); font-weight: 400; }
.coverage-section .city-links-intro { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin: 0 0 16px; line-height: 1.5; }
.coverage-section .city-links-list { display: flex; flex-wrap: wrap; gap: 0 16px; line-height: 2.1; }
.coverage-section .city-links-list a { color: rgba(255,255,255,0.72); font-size: 0.88rem; font-weight: 500; text-decoration: none; position: relative; transition: color 0.25s ease; }
.coverage-section .city-links-list a:not(:last-child)::after { content: '·'; color: rgba(255,255,255,0.28); margin-left: 16px; pointer-events: none; }
.coverage-section .city-links-list a:hover { color: #0088CC; }

.partners-section {
    padding: 100px 0;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E0;
}
.partners-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}
.partners-inner h2 {
    margin-bottom: 40px;
}
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
}
.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover {
    opacity: 0.7;
    transform: scale(1.06);
}
.partner-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partner-badge {
    display: inline-block;
    padding: 12px 24px;
    background: #F8F7F4;
    border: 1px solid #E5E5E0;
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}
.partner-badge:hover {
    background: #0088CC;
    color: #FFFFFF;
    border-color: #0088CC;
}

@media (max-width: 768px) {
    .coverage-section,
    .partners-section { padding: 72px 0; }
    .coverage-inner,
    .partners-inner { padding: 0 24px; }
}
