/* ==========================================================================
   DIAMOND HOUSE - Original WordPress Replica Design System (Full Page)
   ========================================================================== */

:root {
    --primary-coral: #FFA99E;
    --primary-coral-hover: #ff9185;
    --dark-text: #1E1F2B;
    --grey-text: #898A95;
    --body-text: #4A4C5E;
    --border-color: #E2E3EA;
    --footer-yellow: #FFF3C4;
    
    --font-heading: 'Rubik', 'Poppins', sans-serif;
    --font-body: 'Poppins', 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background-color: #FFFFFF;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Container */
.dh-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================================================
   Header Navbar (Menu Unchanged: 14px)
   ========================================================================== */
.header-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header-logo .logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.header-phone-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.phone-label {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--grey-text);
    text-transform: uppercase;
}

.phone-number {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #3D3D3D;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dark-text);
    letter-spacing: 0.3px;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-coral);
}

/* Single Toggle Link 'eng' / 'se' */
.lang-toggle-btn {
    background: none;
    border: none;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    text-transform: lowercase;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lang-toggle-btn:hover {
    color: var(--primary-coral);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--dark-text);
}

/* ==========================================================================
   Banner Hero (3-Layer Composition)
   ========================================================================== */
.banner-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #F8F5F2;
}

.banner-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.layer-z0 { z-index: 1; }
.layer-z1 { z-index: 2; }
.layer-z2 { z-index: 3; }

.banner-content-container {
    position: relative;
    z-index: 10;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
}

/* Floating Contact Card on the Right */
.hero-contact-card {
    width: 330px;
    background-color: #FFFFFF;
    border-radius: 2px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 26px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-card-title, .contact-box-title {
    font-family: 'Poppins', 'Rubik', sans-serif;
    font-size: 22px; /* Slightly larger */
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 18px;
}

.form-field {
    margin-bottom: 14px;
}

.dh-input, .dh-textarea {
    width: 100%;
    padding: 12px 16px; /* Slightly larger padding */
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px; /* Slightly larger font */
    border: 1px solid var(--border-color);
    border-radius: 2px;
    background-color: #FFFFFF;
    color: var(--dark-text);
    outline: none;
    transition: border-color 0.2s ease;
}

.dh-input:focus, .dh-textarea:focus {
    border-color: var(--primary-coral);
}

.dh-textarea {
    resize: none;
}

.btn-skicka {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-coral);
    color: #FFFFFF;
    font-family: 'Poppins', 'Rubik', sans-serif;
    font-size: 14.5px; /* Slightly larger font */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.btn-skicka:hover {
    background-color: var(--primary-coral-hover);
}

/* ==========================================================================
   Service Cards Section (Slightly Larger Fonts & Bolder Titles)
   ========================================================================== */
.services-section {
    padding: 45px 0 65px 0;
    background-color: #FFFFFF;
}

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

.services-grid-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.dh-service-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    min-height: 195px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.dh-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #D8D9E3;
    z-index: 5;
}

/* Card Head Title: Bolder & Slightly Larger than text */
.card-head-title {
    font-family: 'Poppins', 'Rubik', sans-serif;
    font-size: 17px; /* Increased from 15px */
    font-weight: 600; /* Bolder than bullet points */
    color: var(--primary-coral);
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.card-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-bullet-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 15px; /* Increased from 13.5px */
    font-weight: 400;
    color: #555566;
    line-height: 1.65;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section-banner {
    width: 100%;
    min-height: 440px;
    background-size: cover;
    background-position: center right;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.about-text-content {
    max-width: 520px;
}

.about-heading {
    font-family: 'Poppins', 'Rubik', sans-serif;
    font-size: 18px; /* Increased from 16px */
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    margin-top: 18px;
}

.about-heading:first-child {
    margin-top: 0;
}

.about-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 15px; /* Increased from 13.5px */
    color: #555566;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ==========================================================================
   Bottom Main Contact Section
   ========================================================================== */
.bottom-contact-section {
    padding: 75px 0;
    background-color: #FFFFFF;
}

.main-contact-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 40px 45px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.main-contact-box .btn-skicka {
    padding: 15px;
    font-size: 15px;
    margin-top: 8px;
}

/* ==========================================================================
   Yellow Footer
   ========================================================================== */
.yellow-footer {
    background-color: var(--footer-yellow);
    padding: 26px 0;
    color: #555566;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* Increased from 13px */
}

/* Toast Modal */
.toast-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast-modal.show {
    opacity: 1;
    visibility: visible;
}

.toast-content {
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 2px;
    text-align: center;
    max-width: 380px;
    width: 90%;
}

.toast-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    margin-bottom: 10px;
}

.toast-content p {
    font-size: 15px;
}

.btn-toast-close {
    margin-top: 18px;
    padding: 10px 28px;
    background-color: var(--primary-coral);
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14.5px;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .banner-hero {
        height: auto;
        min-height: 500px;
    }

    .banner-content-container {
        justify-content: center;
        padding: 40px 20px;
    }

    .hero-contact-card {
        width: 100%;
        max-width: 380px;
    }

    .services-grid-row3, .services-grid-row2 {
        grid-template-columns: 1fr;
    }

    .header-phone-box {
        display: none;
    }

    .main-contact-box {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: left 0.3s ease;
    }

    .header-nav.show {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}
