/*
 * Aarhus Tagrenovering - Ren PHP Version
 * Baseret på original WordPress design
 */

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary: #27509b;
    --primary-dark: #1a3a6e;
    --secondary: #000000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #bababa;
    --dark-gray: #333333;
    --text: #555555;
    --shadow: 0 5px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

/* Google Maps fix - prevent global styles from affecting map controls */
.gm-style * {
    box-sizing: content-box;
}
.gm-style button {
    all: revert;
}
.gm-style img {
    max-width: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: var(--secondary);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

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

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-4 { width: 33.333%; padding: 0 15px; }
.col-3 { width: 25%; padding: 0 15px; }
.col-2 { width: 16.666%; padding: 0 15px; }

section {
    padding: 80px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn, .custom-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover, .custom-button:hover {
    background: var(--white);
    color: var(--primary);
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

/* Bredere header container på store skærme */
.header .container {
    max-width: 1200px;
}

@media (min-width: 1400px) {
    .header .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .header .container {
        max-width: 1600px;
        padding: 0 40px;
    }
}

@media (min-width: 1800px) {
    .header .container {
        max-width: 1800px;
        padding: 0 60px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--primary);
    font-weight: 300;
    padding: 10px 15px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--white);
    background: var(--primary);
    border-radius: 5px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-contact .phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
}

.nav-contact .phone i {
    margin-right: 8px;
}

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

.has-dropdown > a i {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
    z-index: 100;
}

.dropdown li {
    display: block;
}

.dropdown a {
    display: block;
    padding: 12px 20px !important;
    border-radius: 0 !important;
}

.dropdown a:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    background-position: center 55%;
    margin-top: 80px;
    color: var(--white);
    text-align: center;
}

/* Vis mere af taget på brede skærme */
@media (min-width: 1400px) {
    .hero {
        background-position: center 35%;
    }
}

@media (min-width: 1800px) {
    .hero {
        background-position: center 25%;
    }
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .btn {
    font-size: 18px;
    padding: 15px 40px;
}

/* ============================================
   USP BAR
   ============================================ */
.usp-bar {
    background: var(--primary);
    padding: 15px 0;
}

.usp-item {
    text-align: center;
    color: var(--white);
    padding: 5px;
}

.usp-item i {
    font-size: 36px;
    display: block;
    margin-bottom: 5px;
}

.usp-item strong {
    font-size: 15px;
    display: block;
    margin-bottom: 2px;
}

.usp-item span {
    font-size: 12px;
    opacity: 0.85;
}

/* ============================================
   SERVICE BOXES (Top)
   ============================================ */
.services-top {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.services-top .row {
    gap: 30px 0;
}

.service-box {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    border: 2px solid transparent;
}

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

.service-box .icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-box p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
}

.service-box .arrow {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--light-gray);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.service-box:hover .arrow {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content {
    padding-left: 40px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    margin: 25px 0;
}

.check-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.check-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* About highlight box */
.about-highlight {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.about-highlight p {
    margin: 0;
    color: #444;
}

.about-highlight strong {
    color: var(--primary);
    font-size: 1.05em;
}

/* Check-list 2 columns */
.check-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
}

@media (max-width: 576px) {
    .check-list-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.services .row {
    display: flex;
    flex-wrap: wrap;
}

.services .col-4 {
    display: flex;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content .icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card-content h3 {
    margin-bottom: 10px;
}

.service-card-content p {
    font-size: 15px;
    margin-bottom: 15px;
    flex: 1;
}

/* ============================================
   PROJECTS/GALLERY
   ============================================ */
.projects {
    background: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item a {
    display: block;
    position: relative;
}

.project-item a::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.project-item:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--primary);
    color: var(--white);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 600;
}

.testimonial-card .stars {
    margin-bottom: 15px;
}

.testimonial-card .stars i {
    color: #FFD700;
    font-size: 20px;
    margin: 0 2px;
}

.testimonial-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(rgba(39,80,155,0.9), rgba(39,80,155,0.9)),
                url('../images/nyt-tag.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.cta .btn:hover {
    background: transparent;
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    display: inline-block;
    width: 25px;
    color: var(--white);
}

.footer-contact a {
    color: var(--white);
    opacity: 0.9;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

/* ============================================
   PAGE HEADER (Undersider)
   ============================================ */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/nyt-tag.jpg') center/cover no-repeat;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    margin-bottom: 20px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 10px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary);
    width: 25px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .col-4 { width: 50%; }
    .col-3 { width: 50%; }
    .col-2 { width: 33.333%; }

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .col-6, .col-4, .col-3 { width: 100%; }
    .col-2 { width: 50%; }

    .service-box {
        margin-bottom: 25px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

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

    .navbar {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1;
    }

    .logo img {
        max-width: 200px;
    }

    .hamburger {
        display: flex;
        flex: 0 0 auto;
    }

    .nav-contact {
        width: 100%;
        justify-content: center;
        padding: 10px 0 5px;
        order: 10;
        border-top: 1px solid #e5e5e5;
        margin-top: 10px;
    }

    .nav-menu {
        order: 11;
        width: 100%;
    }

    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-top {
        margin-top: 0;
        padding-top: 40px;
    }

    .usp-bar .col-3 {
        width: 50%;
        margin-bottom: 15px;
    }

    .about-content {
        padding-left: 0;
        padding-top: 30px;
    }

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

    .footer .col-3 {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-links {
        display: inline-block;
        text-align: left;
    }

    .footer-contact {
        display: inline-block;
        text-align: left;
    }
}

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

    section {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .col-2 { width: 100%; }

    .usp-bar .col-3 {
        width: 50%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.py-5 { padding-top: 50px; padding-bottom: 50px; }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-consent .btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    padding: 10px 25px;
}

.cookie-consent .btn:hover {
    background: transparent;
    color: var(--white);
}

.cookie-link {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.9;
}

.cookie-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-menu a:focus {
    outline-color: var(--white);
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(39, 80, 155, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 80, 155, 0.5);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--light-gray);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 15px 20px;
    }

    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 15px;
    }
}

/* Simple FAQ styling (non-interactive) */
.faq-item h3 {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    border-bottom: 1px solid #eee;
}

.faq-item p {
    padding: 15px 25px 20px;
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    background: var(--light-gray);
}

.trust-badge {
    text-align: center;
    color: var(--text);
}

.trust-badge i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.trust-badge strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
}

.trust-badge span {
    font-size: 14px;
}

/* ============================================
   STICKY CTA (MOBILE)
   ============================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px;
}

.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        gap: 10px;
    }

    .sticky-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 15px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: var(--transition);
    }

    .sticky-cta-phone {
        background: var(--primary);
        color: var(--white);
    }

    .sticky-cta-phone:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

    .sticky-cta-contact {
        background: var(--secondary);
        color: var(--white);
    }

    .sticky-cta-contact:hover {
        background: #333;
        color: var(--white);
    }

    /* Add padding to footer so content isn't hidden behind sticky CTA */
    .footer {
        padding-bottom: 80px;
    }

    /* Hide scroll-to-top when sticky CTA is visible */
    .scroll-to-top {
        bottom: 80px;
    }
}

/* ============================================
   SERVICE PAGE USP BAR
   ============================================ */
.service-usp-bar {
    background: var(--primary);
    color: var(--white);
    padding: 20px 0;
}

.service-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-usp-item i {
    font-size: 28px;
    opacity: 0.9;
}

.service-usp-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.service-usp-item span {
    display: block;
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .service-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-usp-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HEADER SUBTITLE
   ============================================ */
.page-header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* ============================================
   COLUMN 8/4 LAYOUT
   ============================================ */
.col-8 {
    width: 66.666%;
    padding: 0 15px;
}

@media (max-width: 992px) {
    .col-8 {
        width: 100%;
    }
}

/* ============================================
   LEAD PARAGRAPH
   ============================================ */
.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ============================================
   SERVICES MINI GRID
   ============================================ */
.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.service-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.service-mini-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.service-mini-item i {
    color: var(--primary);
    font-size: 20px;
    width: 24px;
}

.service-mini-item span {
    font-weight: 400;
    color: var(--dark-gray);
}

@media (max-width: 576px) {
    .services-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STICKY SIDEBAR & CONTACT CARD
   ============================================ */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card-header i {
    font-size: 32px;
}

.contact-card-header span {
    display: block;
    font-size: 14px;
    opacity: 0.85;
}

.contact-card-header a {
    display: block;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.contact-card-header a:hover {
    text-decoration: underline;
}

.contact-card-body {
    padding: 25px;
}

.contact-card-body h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-card-body > p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 20px;
}

.mini-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 15px;
    font-family: inherit;
}

.mini-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.contact-card-footer {
    padding: 20px 25px;
    background: var(--light-gray);
    border-top: 1px solid #eee;
}

.contact-card-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text);
}

.contact-card-footer i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/* ============================================
   PRICE TABLE
   ============================================ */
.price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.price-table th,
.price-table td {
    padding: 18px 20px;
    text-align: left;
}

.price-table thead {
    background: var(--primary);
    color: var(--white);
}

.price-table th {
    font-weight: 500;
    font-size: 15px;
}

.price-table tbody tr {
    border-bottom: 1px solid #eee;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: #f8f9fa;
}

.price-table td {
    font-size: 15px;
}

.price-table td i {
    margin-right: 8px;
}

.price-highlight {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.price-note {
    text-align: center;
    font-size: 14px;
    color: var(--text);
    margin-top: 15px;
}

.price-note i {
    color: var(--primary);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .price-table th:nth-child(4),
    .price-table td:nth-child(4) {
        display: none;
    }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e5e5e5;
    z-index: 0;
}

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

.process-number {
    position: absolute;
    top: -10px;
    right: 20%;
    background: var(--primary);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--primary);
    color: var(--white);
}

.process-step h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

.process-step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .process-icon {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .process-number {
        top: -5px;
        right: auto;
        left: 40px;
    }
}

/* ============================================
   AREA TAGS
   ============================================ */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.area-tag {
    background: var(--light-gray);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

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

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: #e8f4fc;
}

.benefit-item i {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

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