:root {
    --primary-color: #007AFF;
    /* Brand Color - kept for visuals */
    --btn-bg: #0066CC;
    /* Accessible Blue for White Text (>4.5:1) */
    --link-color: #5AC8FA;
    /* Links on Dark Background */
    --secondary-color: #5AC8FA;
    --dark-bg: #0a0a0a;
    --card-bg: #1c1c1e;
    --text-main: #ffffff;
    --text-muted: #9e9ea3;
    /* Lighter for Dark Mode readability */
    --accent-gradient: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
    --font-family: 'Outfit', sans-serif;
}

/* Light Mode Variables override */
body.light-mode {
    --dark-bg: #f5f5f7;
    --card-bg: #ffffff;
    --text-main: #1d1d1f;
    --text-muted: #515154;
    /* Darker for Light Mode readability (>4.5:1) */
    --btn-bg: #0056b3;
    /* Darker Blue for Light Mode */
    --link-color: #0056b3;
    /* Darker Blue for Light Mode Links */
}

body.light-mode .header {
    background-color: rgba(255, 255, 255, 0.55);
    /* Increased transparency/glassy look */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .service-card,
body.light-mode .wizard-container,
body.light-mode .b2b-card,
body.light-mode .value-card,
body.light-mode .service-detail-card,
body.light-mode .faq-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f5f5f7;
}

/* Theme Toggle Button Styles */
.theme-toggle {
    cursor: pointer;
    padding: 10px;
    font-size: 1.2rem;
    color: var(--text-main);
    transition: color 0.3s ease;
    margin-left: 15px;
}

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


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

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: rgba(28, 28, 30, 0.35);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

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

.nav .btn-primary {
    padding: 10px 20px;
    border-radius: 30px;
    color: white !important;
}

/* Buttons */
.btn-primary {
    background: var(--btn-bg);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: #0062cc;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(0, 122, 255, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(90, 200, 250, 0.1), transparent 40%);
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Social Proof */
.social-proof {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    grid-auto-rows: auto;
}

.proof-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
    min-width: 250px;
}

/* Smaller font for review text */
.proof-item .review-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
    word-break: break-word;
    margin-top: 4px;
    white-space: normal;
}

.stars {
    color: #FFD700;
    /* Gold color for stars */
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.proof-item p {
    font-weight: 600;
    font-size: 1.1rem;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
    /* Hidden on mobile, shown on desktop via media query if needed */
}

@media (min-width: 768px) {
    .divider {
        display: block;
    }
}

/* Services */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card svg {
    max-width: 60px;
    height: auto;
    margin: 15px auto;
    display: block;
    fill: var(--primary-color);
}

.features .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background: var(--card-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    margin: 20px 0;
    font-size: 1rem;
}

.pricing-table th {
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .price {
    text-align: right;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

.pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Content Typography Harmony */
.pricing-content h1,
.pricing-content h2,
.pricing-content h3,
.pricing-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pricing-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* About Page Styles */
.about-section {
    padding: 60px 0;
}

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

.about-text h2 {
    margin-bottom: 20px;
    color: var(--text-main);
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.expertise-section {
    background-color: var(--card-bg);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
}

.location-section {
    padding: 60px 0;
}

.location-info h2 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.location-info p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.location-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.location-info ul li i {
    width: 30px;
    color: var(--primary-color);
}

.location-map img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

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

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 20px;
    }
}

/* Social Media Links */
.footer-column .social-links {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.footer-column .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column .social-links i {
    font-size: 1.2rem;
}

/* About Page Specifics */
.hero-about {
    height: 50vh;
    min-height: 400px;
}

.about-content-card {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
}

.hero-small {
    height: 40vh;
    min-height: 300px;
}

/* New About Page Styles */
.cert-badge {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.feature-list i {
    color: var(--secondary-color);
}

.services-detail-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.service-detail-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(90, 200, 250, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detail-card .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-detail-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-section.reverse .about-grid {
    direction: rtl;
}

.about-section.reverse .about-text {
    direction: ltr;
}

@media (max-width: 768px) {
    .about-section.reverse .about-grid {
        direction: ltr;
    }
}


/* Booking Wizard Styles */
.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wizard-step {
    margin-bottom: 25px;
}

.wizard-step label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-main);
}

.wizard-step select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007AFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.wizard-step select:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.wizard-step select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.wizard-step select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-result {
    margin-top: 30px;
    padding: 25px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.result-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-time {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.calendar-container {
    margin-top: 40px;
    display: none;
    animation: slideDown 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for white text on white background in dropdown options */
.wizard-step select option {
    background-color: #1a1a1a;
    /* Dark background for options */
    color: white;
}

/* Enhanced Booking Form Styles */
.booking-form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
}

.glass-form .form-group {
    margin-bottom: 20px;
}

.glass-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.glass-form .form-control {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.glass-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.glass-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.glass-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Navigation Fixes */
.nav a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: 0.3s ease;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 40px;
    }
}

/* New Footer Elements */
.find-vej-btn {
    display: inline-block;
    color: var(--link-color) !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.find-vej-btn:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.payment-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--text-main);
    transform: translateY(-3px);
}

/* Mobile Layout Adjustments */
@media (max-width: 768px) {

    .hero,
    .hero-small {
        padding-top: 140px;
        /* Increase padding to clear header on mobile */
        height: auto !important;
        /* Allow content to dictate height */
        min-height: auto !important;
        padding-bottom: 40px;
        align-items: center;
        /* Center content */
    }

    .hero-content {
        text-align: center;
        /* Center text on mobile */
        justify-content: center;
        flex-direction: column;
    }

    .hero h2 {
        font-size: 2.2rem;
        /* Smaller font for mobile */
    }

    .hero p {
        font-size: 1rem;
    }
}
/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse; /* Stack upwards */
    gap: 15px;
    align-items: center;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Slightly larger icon */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-cart {
    background-color: var(--primary-color);
    position: relative;
}

.fab-cart .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30; /* iOS Red */
    color: white;
    font-size: 0.85rem;
    min-width: 24px;
    height: 24px;
    border-radius: 12px; /* Capsule shape if numbers get large */
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--card-bg); /* Separation border */
}

/* Ensure specific styles for cart-float are reset if moved */
.floating-actions #cart-toggle {
    position: static; /* Remove fixed positioning when inside container */
    margin: 0;
}

