/* Jysk Malerforretning - Modern CSS Design System */
:root {
    --primary: #1a2b4a;
    --primary-light: #243b61;
    --primary-dark: #0f1c33;
    --accent: #e85d26;
    --accent-hover: #cf4e1d;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Navigation Bar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
}

.nav-cta {
    background-color: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9) 0%, rgba(26, 43, 74, 0.6) 100%);
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(232, 93, 38, 0.2);
    border: 1px solid var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: white;
    font-size: 1.5rem;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    transition: var(--transition);
}

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

.service-card:hover::before {
    width: 8px;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background-color: rgba(26, 43, 74, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .service-link {
    color: var(--accent);
}

/* Why Choose Us */
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent);
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us-content .lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.features-list {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(232, 93, 38, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

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

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(26, 43, 74, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: -15px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.process-connector {
    width: 80px;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 60px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

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

/* FAQ Accordion */
.faq-list-home {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.faq-item-home {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-item-home h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item-home h4 i {
    color: var(--accent);
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26,43,74,0.3);
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    flex-direction: column;
}

.highlight .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.highlight span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background-color: rgba(0,0,0,0.05);
    color: var(--c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.value-card h3 {
    margin-bottom: 16px;
}

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

/* Team Section */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-photo {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.team-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.team-benefits {
    display: grid;
    gap: 12px;
}

.team-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
}

.team-benefits li i {
    color: var(--accent);
}

/* Areas Grid */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.area-badge {
    background-color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.area-badge i {
    color: var(--accent);
}

.areas-note {
    text-align: center;
    color: var(--text-light);
}

.areas-note a {
    color: var(--accent);
    font-weight: 700;
}

/* Services Detail Grid */
.services-detail-grid {
    display: grid;
    gap: 48px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.sdc-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.sdc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sdc-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.sdc-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sdc-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.sdc-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.sdc-benefits {
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
}

.sdc-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sdc-benefits li i {
    color: var(--accent);
}

/* Service Detail Layout */
.service-hero {
    position: relative;
    padding: 160px 0 80px;
}

.service-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.sd-main h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.sd-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.sd-divider {
    height: 4px;
    width: 80px;
    margin-bottom: 40px;
}

.sd-process {
    display: grid;
    gap: 24px;
    margin: 32px 0 48px;
}

.sd-process-step {
    display: flex;
    gap: 24px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sd-step-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c);
    font-family: var(--font-heading);
}

.sd-step-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.sd-cta-box {
    background-color: var(--primary);
    color: white;
    padding: 48px;
    border-radius: var(--radius);
    border-left: 6px solid var(--accent);
}

.sd-cta-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.sd-cta-box p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.sd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sd-benefits-card {
    background-color: var(--primary);
    color: white;
    padding: 32px;
    border-radius: var(--radius);
}

.sd-benefits-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-benefits-card h3 i {
    color: var(--c);
}

.sd-benefits-card ul {
    display: grid;
    gap: 14px;
}

.sd-benefits-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0.9;
}

.sd-benefits-card li i {
    color: var(--c);
    margin-top: 4px;
}

.sd-contact-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sd-contact-card h3 {
    margin-bottom: 12px;
}

.sd-contact-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.sd-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.sd-contact-item i {
    color: var(--accent);
}

.sd-all-services-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-all-services-card h3 {
    margin-bottom: 8px;
}

.sd-all-services-card a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.sd-all-services-card a:hover,
.sd-all-services-card a.active {
    background-color: var(--bg-light);
    color: var(--accent);
}

/* Related Services */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.related-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background-color: rgba(0,0,0,0.05);
    color: var(--c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.related-card h3 {
    margin-bottom: 12px;
}

.related-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.related-card span {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-card:hover span {
    color: var(--c);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.info-cards {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background-color: rgba(232, 93, 38, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-card h4 {
    margin-bottom: 6px;
}

.info-card p, .info-card a {
    color: var(--text-light);
}

.info-card a:hover {
    color: var(--accent);
}

.contact-form-wrap {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-form-header {
    background-color: var(--primary);
    color: white;
    padding: 40px;
}

.contact-form-header h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form-header p {
    opacity: 0.9;
}

.contact-form {
    padding: 40px;
    display: grid;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label span {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 93, 38, 0.1);
}

/* Map Section */
.map-section {
    position: relative;
    height: 400px;
}

.map-overlay-info {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.map-info-card {
    background-color: var(--primary);
    color: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.map-info-card i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.map-info-card h4 {
    color: white;
    margin-bottom: 6px;
}

/* FAQ Columns */
.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.faq-cat-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-cat-title i {
    color: var(--accent);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
}

.faq-icon {
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0,1,0,1);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    transition: all 0.3s cubic-bezier(1,0,1,0);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-cta {
    background-color: var(--primary);
    color: white;
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 80px;
}

.faq-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.faq-cta p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.faq-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Privacy Layout */
.privacy-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 48px;
    align-items: flex-start;
}

.privacy-sidebar {
    position: sticky;
    top: 110px;
}

.priv-nav {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.priv-nav h4 {
    margin-bottom: 12px;
}

.priv-nav a {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-light);
}

.priv-nav a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
}

.privacy-intro-box {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent);
    margin-bottom: 40px;
}

.privacy-intro-box p:first-child {
    margin-bottom: 8px;
}

.privacy-section-block {
    margin-bottom: 40px;
}

.privacy-section-block h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.privacy-section-block h4 {
    margin: 20px 0 10px;
}

.privacy-section-block p,
.privacy-section-block li {
    color: var(--text-light);
    margin-bottom: 12px;
}

.privacy-section-block ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.privacy-contact-box {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-top: 16px;
}

.privacy-contact-box a {
    color: var(--accent);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: grid;
    gap: 12px;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact ul {
    display: grid;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 16px;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a:hover {
    color: white;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .why-us-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .experience-badge {
        bottom: -20px;
        right: -20px;
        padding: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .privacy-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        transition: var(--transition);
        overflow-y: auto;
    }
    .nav-menu.open {
        left: 0;
    }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
        display: none;
    }
    .has-dropdown.open .dropdown {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .process-connector {
        display: none;
    }
    .service-detail-layout {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .faq-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
