/* ============================================
   SJÖSTEDTS MÅLERI - PREMIUM LUXURY DESIGN
   Ultra-lyxig webbplats för målningstjänster
   ============================================ */

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

:root {
    --primary-color: #000000;
    --secondary-color: #3d8361;
    --accent-color: #333333;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Enkla scroll-animationer */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

body.loading {
    overflow: hidden;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--primary-color);
}

.loading-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Content width constraint for readability */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-booking {
    background: transparent;
    color: var(--primary-color) !important;
    padding: 0.5rem 0 !important;
    border: none;
    font-weight: 700 !important;
    transition: var(--transition);
}

.nav-booking:hover {
    color: var(--secondary-color) !important;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    background: transparent;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: 2px 0 10px var(--shadow);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .nav-booking {
        margin: 1rem 2rem;
        text-align: center;
        padding: 0.85rem 2rem !important;
        font-size: 1.05rem !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(26, 77, 62, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1.1rem 2.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 62, 0.4);
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.about-preview {
    padding: 4rem 0;
}

/* Book Offer Section */
.book-offer {
    padding: 4rem 0;
    background: var(--bg-light);
}

.book-offer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.book-offer-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.book-offer-text p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.book-offer-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-color);
}

.offer-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image picture,
.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-image-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* Support for real images */
.image-placeholder img,
.before-side img,
.after-side img,
.service-card-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* When image is present, hide placeholder text */
.image-placeholder:has(img) {
    background: none;
}

.image-placeholder:has(img) span {
    display: none;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES PREVIEW SECTION
   ============================================ */

.services-preview {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.service-detailed-card {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.service-card-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.service-card-image picture,
.service-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.service-card-title h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Backward compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* ============================================
   BEFORE AFTER SECTION
   ============================================ */

.before-after {
    padding: 4rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.project-item {
    background: transparent;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 12px;
}

.project-item:hover {
    transform: translateY(-3px);
}

.project-item:hover .project-comparison {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.before-image,
.after-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.before-image {
    background: #e0e0e0;
}

.after-image {
    background: var(--bg-light);
}

.before-image picture,
.after-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.before-image .image-placeholder,
.after-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.before-image .image-placeholder {
    background: linear-gradient(135deg, #cccccc, #999999);
    color: var(--white);
}

.after-image .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.project-info {
    padding: 0;
    text-align: center;
}

.project-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
}

.project-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.social-media {
    padding: 4rem 0;
    background: var(--bg-light);
}

.social-media h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.social-media .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.facebook-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.facebook-post {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.facebook-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.post-header {
    padding: 1rem;
    background: var(--white);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.post-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.post-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    position: relative;
}

.post-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.post-content {
    padding: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.post-actions {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1.5rem;
    background: var(--white);
}

.action-item {
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.action-item:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
    color: var(--white);
}

.social-link-btn.facebook {
    background: #1877f2;
}

.social-link-btn.facebook:hover {
    background: #1565c0;
    transform: scale(1.1);
}

.social-link-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-btn.instagram:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.social-link-btn svg {
    width: 28px;
    height: 28px;
}

.social-link-btn.linkedin {
    background: #0077b5;
}

.social-link-btn.linkedin:hover {
    background: #005885;
}

/* ============================================
   CTA SECTION
   ============================================ */

/* Trust Signals Section */
.trust-signals {
    padding: 4rem 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta {
    padding: 4rem 0;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.cta p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Form Success Message */
.form-success {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.form-success h3 {
    color: #155724;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.form-success p {
    color: #155724;
    margin: 0;
}

.form-submit-wrapper {
    margin-top: 1.5rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.btn-loading {
    display: inline-block;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-content {
    padding: 4rem 0;
}

/* ============================================
   BOOKING PAGE
   ============================================ */

.booking-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.booking-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-intro p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.booking-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.booking-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.booking-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.booking-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.booking-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

.booking-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.booking-form {
    max-width: 900px;
    margin: 0 auto;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-color);
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.booking-benefits {
    margin-top: 4rem;
}

.booking-benefits h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.cert-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

.cert-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cert-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cert-card p:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Service Accordion */
.service-accordion {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.service-accordion:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
    border-bottom: 2px solid transparent;
}

.service-accordion-header:hover {
    background: var(--bg-light);
}

.service-accordion-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
}

.accordion-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    min-width: 30px;
    text-align: center;
}

.service-accordion.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.service-accordion.active .service-accordion-content {
    max-height: 2000px;
    padding: 0 2rem 2rem 2rem;
}

.service-detailed {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
}

.service-alternating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.service-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-image {
    position: relative;
}

.service-image .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 350px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detailed h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: var(--bg-light);
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-grid-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.info-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

.info-grid-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-grid-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form-section {
    background: var(--white);
    padding: 4rem;
    border-radius: 0;
    box-shadow: 0 3px 10px var(--shadow);
}

.contact-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.contact-form {
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   FOOTER - APPLE STYLE
   ============================================ */

.footer {
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 6rem 0 3rem;
    font-size: 0.85rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-column p {
    color: #86868b;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #86868b;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-column ul li:not(:has(a)) {
    color: #86868b;
    font-size: 0.85rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #86868b;
    font-size: 0.8rem;
    margin: 0;
}

.credits {
    color: #86868b;
    font-size: 0.8rem;
    margin: 0;
}

.credit-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.credit-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-content {
        gap: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 2rem;
    }

    .book-offer,
    .services-preview,
    .before-after,
    .social-media,
    .cta,
    .process {
        padding: 5rem 0;
    }

    .page-content {
        padding: 4rem 0;
    }

    .page-header {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid,
    .services-grid,
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-header,
    .section-header {
        margin-bottom: 3rem;
    }

    .services-header h2,
    .section-header h2,
    .about-text h2,
    .cta h2,
    .page-header h1,
    .content-section h2 {
        font-size: 2rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before-image,
    .after-image {
        height: 280px;
    }

    .project-comparison {
        margin-bottom: 1rem;
    }

    .content-section {
        margin-bottom: 4rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-alternating {
        grid-template-columns: 1fr;
    }

    .service-accordion-header {
        padding: 1.5rem;
    }

    .service-accordion-header h2 {
        font-size: 1.5rem;
    }

    .service-accordion.active .service-accordion-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .service-alternating.service-right .service-image {
        order: -1;
    }

    .facebook-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-link-btn {
        width: 50px;
        height: 50px;
    }
    
    .social-link-btn svg {
        width: 24px;
        height: 24px;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .service-card-content {
        padding: 2rem;
    }

    .values-grid,
    .certifications-grid,
    .contact-info-grid {
        gap: 2rem;
    }

    .value-card,
    .cert-card,
    .info-grid-card {
        padding: 2rem;
    }

    .contact-form-section {
        padding: 2.5rem;
    }

}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .book-offer,
    .services-preview,
    .before-after,
    .social-media,
    .cta,
    .process {
        padding: 2.5rem 0;
    }

    .book-offer-text h2 {
        font-size: 2rem;
    }

    .book-offer-text p {
        font-size: 1rem;
    }

    .book-offer-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .booking-intro h2 {
        font-size: 2rem;
    }

    .booking-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-form-section {
        padding: 2rem;
    }

    .booking-form-section h2 {
        font-size: 1.75rem;
    }

    .booking-benefits h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-content {
        padding: 2rem 0;
    }

    .about-text h2,
    .services-header h2,
    .section-header h2,
    .cta h2,
    .page-header h1,
    .content-section h2 {
        font-size: 1.75rem;
    }

    .services-header,
    .section-header {
        margin-bottom: 2.5rem;
    }

    .services-detailed-grid {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .content-section {
        margin-bottom: 3rem;
    }

    .values-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROJECTS PAGE
   ============================================ */

.project-filters {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid #e0e0e0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.projects-section {
    padding: 3rem 0;
    background: var(--white);
}

.project-detail-card {
    margin-bottom: 4rem;
    background: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.project-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.project-main-image {
    position: relative;
    overflow: hidden;
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    letter-spacing: 0.5px;
}

.before-after-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    height: 400px;
}

.before-side,
.after-side {
    position: relative;
    overflow: hidden;
}

.slider-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 5;
}

.before-side .image-placeholder,
.after-side .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.before-side .image-placeholder {
    background: linear-gradient(135deg, #cccccc, #999999);
}

.project-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    height: 400px;
}

.project-image-grid .grid-item {
    position: relative;
    overflow: hidden;
}

.project-image-grid .grid-item.full-width {
    grid-column: 1 / -1;
    height: 250px;
}

.project-image-grid .grid-item .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #cccccc, #999999);
}

.project-details {
    padding: 2.5rem;
}

.project-header {
    margin-bottom: 1rem;
}

.project-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.project-location {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-tag:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .project-filters {
        padding: 1.5rem 0;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .before-after-slider {
        grid-template-columns: 1fr;
        height: auto;
    }

    .before-side,
    .after-side {
        height: 300px;
    }

    .project-image-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .project-image-grid .grid-item {
        height: 300px;
    }

    .project-image-grid .grid-item.full-width {
        height: 300px;
    }

    .project-details {
        padding: 1.5rem;
    }

    .project-header h2 {
        font-size: 1.5rem;
    }

    .project-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }
}

/* Extra små skärmar - 20% mindre text */
@media (max-width: 500px) {
    html {
        font-size: 80%;
    }
}
