body {
    border: 10px solid red !important;
}


/* Dalkulla Bygg & Utbildning - Styles */

/* Color Variables - Traditional Dalkullabygg colors */
:root {
    --color-background: hsl(48, 15%, 95%);
    --color-foreground: hsl(0, 75%, 25%);
    --color-primary: hsl(0, 75%, 35%);
    --color-primary-foreground: hsl(48, 15%, 95%);
    --color-secondary: hsl(48, 15%, 90%);
    --color-accent: hsl(42, 85%, 65%);
    --color-accent-foreground: hsl(0, 75%, 25%);
    --color-card: hsl(48, 20%, 98%);
    --color-border: hsl(48, 15%, 85%);
    --color-muted: hsl(48, 10%, 88%);
    --color-muted-foreground: hsl(0, 40%, 40%);
    
    /* Shadows */
    --shadow-elegant: 0 8px 25px -8px hsla(0, 75%, 35%, 0.4);
    --shadow-deep: 0 12px 40px -10px hsla(0, 75%, 35%, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background: linear-gradient(to right, var(--color-primary), hsl(0, 75%, 33%));
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-elegant);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: bold;
}

.logo p {
    font-size: 0.75rem;
    opacity: 0.9;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--color-primary-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--color-accent);
}

.contact-info-desktop {
    display: none;
    gap: 1rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--color-primary-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--color-primary-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

@media (min-width: 1024px) {
    .contact-info-desktop {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-primary), hsl(0, 75%, 33%), hsl(0, 75%, 31%));
    color: var(--color-primary-foreground);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, var(--color-accent) 10px, var(--color-accent) 11px);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-logo {
    width: 16rem;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.check-icon {
    color: var(--color-accent);
    font-weight: bold;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-cta {
        flex-direction: row;
    }
    .hero-contact {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: hsl(42, 85%, 60%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-secondary {
    background-color: hsl(0, 84%, 60%);
    color: var(--color-primary-foreground);
}

.btn-secondary:hover {
    background-color: hsl(0, 84%, 55%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Section Styles */
.about-section,
.services-section,
.contact-section {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.section-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        var(--color-primary) 10px,
        var(--color-primary) 11px
    );
    pointer-events: none;
}

pointer-events: none;
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.price-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Card Styles */
.card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
    padding: 2rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.card p {
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
}

.about-story .card {
    height: 100%;
}

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

.values-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

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

.value-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
}

.value-card p {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
}

.stats-card {
    background: linear-gradient(135deg, var(--color-secondary), hsl(48, 15%, 88%));
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 2fr;
    }
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    padding: 1rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.service-card p {
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
}

.highlights {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--color-background);
    border-radius: 0.375rem;
}

.highlights h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.highlights ul {
    list-style: none;
}

.highlights li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--color-muted-foreground);
}

.highlights .check {
    color: var(--color-primary);
    font-weight: bold;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-bottom: 1rem;
    border-top: 1px solid var(--color-border);
}

.duration {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.price {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--color-primary);
}

.featured-card {
    border: 2px solid var(--color-primary);
    background: linear-gradient(to bottom, var(--color-card), var(--color-background));
}

.why-choose-section .card {
    padding: 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.bullet {
    color: var(--color-accent);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    background-color: hsla(0, 75%, 35%, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    font-size: 1.25rem;
}

.info-label {
    font-weight: 600;
    color: var(--color-foreground);
}

.info-value {
    color: var(--color-muted-foreground);
}

.about-card {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.about-card h3 {
    color: var(--color-primary-foreground);
}

.about-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-benefits div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-benefits .check {
    color: var(--color-accent);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--color-foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background-color: var(--color-background);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px hsla(0, 75%, 35%, 0.1);
}

.course-input {
    background-color: hsla(42, 85%, 65%, 0.1);
    border-color: var(--color-primary);
    font-weight: 600;
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

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

.footer-company h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.accent-text {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-services h4,
.footer-hours h4 {
    color: var(--color-accent);
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-services ul,
.footer-links ul {
    list-style: none;
}

.footer-services li,
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-services a,
.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-services a:hover,
.footer-links a:hover {
    color: var(--color-accent);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hours-list > div {
    display: flex;
    justify-content: space-between;
}

.footer-links h5 {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-gradient {
    height: 0.5rem;
    background: linear-gradient(to right, var(--color-accent), var(--color-primary), var(--color-accent));
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-company {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-company {
        grid-column: span 1;
    }
}
