@import url('fonts.css');

/* CSS Resets & Variable Definitions */
:root {
    --primary-dark: #0a1c2a;
    --primary-dark-hover: #132d42;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b89347;
    --accent-gold-light: #f5eedf;
    --bg-light: #ffffff;
    --bg-light-alt: #faf9f6;
    --text-dark: #0a1c2a;
    --text-muted: #536b7c;
    --text-light: #ffffff;
    --border-light: #e5e9ec;
    --border-gold: #c5a059;
    --max-width: 1400px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

/* Force Sharp Edges Everywhere */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important; /* No rounded corners whatsoever */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

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

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background-color: var(--bg-light-alt);
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-light);
    position: relative;
    z-index: 5;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 11px;
    height: 11px;
    background-color: var(--accent-gold);
    border: 2px solid var(--bg-light);
    z-index: 6;
}

.section-title-wrapper {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: 1px solid var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-color: var(--primary-dark);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* Header & Navigation */
header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

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

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-menu-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    height: 100%;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-header,
.mobile-menu-services,
.mobile-menu-hours,
.mobile-menu-info,
.mobile-menu-legal,
.mobile-nav-icon {
    display: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-dark);
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    transition: all var(--transition-speed) ease;
}

/* Hero Slider */
.hero-slider-container {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 28, 42, 0.9) 30%, rgba(10, 28, 42, 0.4) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 700px;
    color: var(--text-light);
    transform: translateY(30px);
    transition: transform 0.8s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 550px;
    text-align: left;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 50px;
    height: 50px;
    background-color: rgba(10, 28, 42, 0.6);
    border: 1px solid var(--accent-gold);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-arrow:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 30px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: none;
}

.slider-dot.active {
    background-color: var(--accent-gold);
    width: 45px;
}

/* Process / Workflow Section */
.process-section {
    background-color: var(--bg-light);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    background-color: var(--bg-light-alt);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--primary-dark);
    padding: 3.5rem 2.5rem;
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step:hover {
    transform: translateY(-8px);
    border-top-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(10, 28, 42, 0.05);
}

.process-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-svg {
    color: var(--accent-gold);
    stroke-width: 1.5;
    transition: all var(--transition-speed) ease;
}

.process-step:hover .process-svg {
    transform: scale(1.1) rotate(-5deg);
    color: var(--primary-dark);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(10, 28, 42, 0.05);
    line-height: 1;
    transition: all var(--transition-speed) ease;
}

.process-step:hover .process-number {
    color: rgba(197, 160, 89, 0.15);
}

.process-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.process-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (min-width: 1025px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -2rem;
        width: 12px;
        height: 12px;
        border-top: 2px solid var(--accent-gold);
        border-right: 2px solid var(--accent-gold);
        transform: translateY(-50%) rotate(45deg);
        z-index: 10;
        opacity: 0.3;
        transition: all var(--transition-speed) ease;
    }
    
    .process-step:hover:not(:last-child)::after {
        opacity: 0.8;
        right: -2.2rem;
    }
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 3rem 2rem;
    position: relative;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-dark);
    z-index: 1;
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card:hover::before {
    height: 6px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    z-index: 2;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.service-link::after {
    content: '→';
    transition: transform var(--transition-speed) ease;
}

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

.service-card:hover .service-link::after {
    transform: translateX(5px);
}

/* Detailed Services page grid */
.leistungen-detail-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.leistung-detail-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.leistung-detail-row:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6rem;
}

.leistung-detail-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 11px;
    height: 11px;
    background-color: var(--accent-gold);
    border: 2px solid var(--bg-light-alt);
    z-index: 10;
}

.leistung-detail-row:nth-child(even) {
    flex-direction: row-reverse;
}

.leistung-detail-img {
    width: 50%;
    height: 380px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-light);
    position: relative;
}

.leistung-detail-img::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--accent-gold);
    z-index: -1;
}

.leistung-detail-row:nth-child(even) .leistung-detail-img::after {
    left: -15px;
    right: 15px;
}

.leistung-detail-content {
    width: 50%;
}

.leistung-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.leistung-detail-content h3 span {
    font-size: 0.9rem;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 0.2rem 0.6rem;
}

.leistung-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.leistung-detail-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.leistung-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
}

/* About Us Section Home / Page */
.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

/* Why HEFF BAU Grid & Items (Open-concept layout, no heavy boxes) */
.why-heff-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
}

.why-heff-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.why-heff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
    margin-top: 2rem;
}

.why-item {
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.2rem;
}

.why-item h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-visual {
    flex: 1;
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border: 2px solid var(--accent-gold);
    text-align: center;
    width: 210px;
}

.about-badge-years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    display: block;
}

/* Contact Info & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.contact-info-panel {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 3rem;
    border-top: 5px solid var(--accent-gold);
}

.contact-info-panel h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 3px;
}

.contact-item-text h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.1em;
}

.contact-item-text p, .contact-item-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-item-text a:hover {
    color: var(--accent-gold);
}

.form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    background-color: var(--bg-light-alt);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    background-color: var(--bg-light);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary-dark);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkbox-label a {
    color: var(--primary-dark);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: var(--accent-gold);
}

/* Call to Action Section (CTA) */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 7rem 0;
    position: relative;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.cta-section.loaded {
    background-image: linear-gradient(rgba(10, 28, 42, 0.85), rgba(10, 28, 42, 0.85)), url('../images/cta_background.jpg');
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 3.5rem 2.5rem;
    background-color: rgba(10, 28, 42, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-section h2 {
    font-size: 2.4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-section .btn-gold:hover {
    background-color: transparent !important;
    color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

/* Legal Pages (Impressum & Datenschutz) */
.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

footer {
    background-color: #050f17;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 40%),
        linear-gradient(rgba(10, 28, 42, 0.96), rgba(5, 15, 23, 0.99)),
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    color: var(--text-light);
    padding: 6rem 0 2.5rem 0;
    border-top: 3px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-badge svg {
    color: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--accent-gold);
}

.footer-hours {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.footer-hours h5 {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.footer-hours-row span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    text-align: left;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

/* Page Banner (For sub-pages) */
.page-banner {
    background-color: var(--primary-dark);
    padding: 5rem 0;
    color: var(--text-light);
    border-bottom: 3px solid var(--accent-gold);
}

.page-banner h1 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.breadcrumbs a {
    color: var(--accent-gold);
}

.breadcrumbs a:hover {
    color: var(--text-light);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

/* Response Message styles for Form */
.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
    border-left: 4px solid;
}

.form-message.success {
    display: block;
    background-color: #f0f7f4;
    border-color: #3b7a57;
    color: #1e3f2d;
}

.form-message.error {
    display: block;
    background-color: #fff5f5;
    border-color: #c53030;
    color: #742a2a;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leistung-detail-row {
        gap: 2.5rem;
    }
    
    .leistung-detail-img {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background-color: #0b121f;
        background-image: 
            radial-gradient(circle at 85% 15%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 15% 85%, rgba(197, 160, 89, 0.06) 0%, transparent 40%),
            radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0),
            linear-gradient(135deg, #0b121f 0%, #152238 100%);
        background-size: 100% 100%, 100% 100%, 20px 20px, 100% 100%;
        flex-direction: column;
        justify-content: flex-start;
        gap: 2.5rem;
        padding: 3rem 2rem;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        align-items: flex-start;
        overflow-y: auto;
        z-index: 999;
    }

    /* Pseudo-element for faded background construction image */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../images/hero_construction.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.08;
        pointer-events: none;
        z-index: 0;
    }

    /* Keep all drawer children relative to stack on top of blueprint */
    .nav-menu > * {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .mobile-menu-header {
        display: block;
        margin-bottom: -1rem;
    }

    .mobile-menu-label {
        display: block;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--accent-gold);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .nav-menu-links {
        display: flex;
        flex-direction: column;
        list-style: none;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu-links .nav-link {
        color: #ffffff !important;
        font-size: 1.25rem;
        letter-spacing: 0.08em;
        font-weight: 700;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }

    .nav-menu-links .nav-link.active,
    .nav-menu-links .nav-link:hover {
        color: var(--accent-gold) !important;
    }

    .nav-menu-links .btn-nav {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mobile-nav-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-right: 12px;
        color: var(--accent-gold);
        vertical-align: middle;
        flex-shrink: 0;
    }

    /* Services Grid */
    .mobile-menu-services {
        display: block;
    }

    .mobile-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        width: 100%;
    }

    .mobile-service-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-body);
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .mobile-service-link svg {
        color: var(--accent-gold);
        flex-shrink: 0;
        opacity: 0.7;
        transition: transform 0.3s ease;
    }

    .mobile-service-link:hover,
    .mobile-service-link:active {
        color: var(--accent-gold);
        padding-left: 4px;
    }

    .mobile-service-link:hover svg {
        transform: translateX(2px);
    }

    /* Opening Hours */
    .mobile-menu-hours {
        display: block;
    }

    .mobile-hours-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .mobile-hours-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-hours-row strong {
        color: #ffffff;
        font-weight: 500;
    }

    /* Contact Block & Actions */
    .mobile-menu-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .mobile-menu-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-menu-item svg {
        color: var(--accent-gold);
        flex-shrink: 0;
    }

    .mobile-menu-item a {
        color: rgba(255, 255, 255, 0.8);
    }

    .mobile-menu-item a:hover {
        color: var(--accent-gold);
    }

    .mobile-menu-actions {
        display: flex;
        width: 100%;
        margin-top: 0.5rem;
    }

    .btn-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        width: 100%;
        background-color: transparent;
        border: 1px solid #25d366;
        color: #25d366;
        padding: 0.8rem 1.5rem;
        font-family: var(--font-heading);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        transition: all 0.3s ease;
        cursor: pointer;
        border-radius: 0;
    }

    .btn-whatsapp:hover,
    .btn-whatsapp:active {
        background-color: #25d366;
        color: #ffffff;
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp svg {
        fill: currentColor;
        flex-shrink: 0;
    }

    .mobile-menu-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        border: 1px solid rgba(197, 160, 89, 0.4);
        padding: 0.4rem 0.8rem;
        align-self: flex-start;
        font-family: var(--font-heading);
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--accent-gold);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 0.5rem;
    }

    .mobile-menu-badge svg {
        color: var(--accent-gold);
    }

    /* Legal Links Footer */
    .mobile-menu-legal {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.4);
    }

    .mobile-menu-legal a {
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s ease;
    }

    .mobile-menu-legal a:hover {
        color: var(--accent-gold);
    }

    /* Staggered Animations */
    .nav-menu-links li,
    .mobile-menu-services,
    .mobile-menu-hours,
    .mobile-menu-info {
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                    transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-menu.active .nav-menu-links li,
    .nav-menu.active .mobile-menu-services,
    .nav-menu.active .mobile-menu-hours,
    .nav-menu.active .mobile-menu-info {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-menu-links li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active .nav-menu-links li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active .nav-menu-links li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active .nav-menu-links li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active .nav-menu-links li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active .nav-menu-links li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active .mobile-menu-services { transition-delay: 0.35s; }
    .nav-menu.active .mobile-menu-hours { transition-delay: 0.4s; }
    .nav-menu.active .mobile-menu-info { transition-delay: 0.45s; }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-slider-container {
        height: 85vh;
        min-height: 480px;
    }
    
    .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        display: flex;
    }
    
    .slide-actions .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .slider-arrow {
        display: none !important;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
    
    p {
        text-align: left !important;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .section-title-wrapper {
        margin-bottom: 2.5rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-split {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-visual {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .about-img-main {
        height: 350px;
        width: 100%;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -30px;
        margin-left: 0;
        z-index: 5;
    }
    
    .about-split {
        margin-bottom: 0 !important;
    }
    
    #ueber-uns {
        padding-bottom: 1.5rem;
    }
    
    #prozess {
        padding-top: 1.5rem;
    }
    
    .why-heff-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .leistung-detail-row, 
    .leistung-detail-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    
    .leistung-detail-img {
        width: 100%;
    }
    
    .leistung-detail-content {
        width: 100%;
    }
    
    .leistung-detail-content h3 {
        font-size: 1.3rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .leistung-detail-img::after {
        right: -10px;
        bottom: -10px;
        left: 10px;
        top: 10px;
    }
    
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
    
    .footer-col:nth-child(2) {
        grid-column: span 1;
    }
    
    .footer-col:nth-child(3) {
        grid-column: span 1;
    }
    
    .footer-col:last-child {
        grid-column: span 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mobile-service-link {
        font-size: 0.78rem !important;
    }
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-heading);
    font-weight: 500;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-item a:hover {
    color: var(--accent-gold);
}

.top-bar-item svg {
    color: var(--accent-gold);
    display: block;
    width: 15px;
    height: 15px;
}

.top-bar-right {
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu .btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid var(--accent-gold) !important;
    color: #ffffff !important;
    background-color: var(--accent-gold) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.4s ease;
}

.nav-menu .btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: width 0.5s cubic-bezier(0.1, 0.8, 0.3, 1), height 0.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.nav-menu .btn-nav:hover::before {
    width: 300px;
    height: 300px;
}

.nav-menu .btn-nav:hover {
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
}

.nav-menu .btn-nav::after {
    display: none !important;
}

/* Projects Section Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    height: 350px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background-size: cover;
    background-position: center;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 28, 42, 0.95) 10%, rgba(10, 28, 42, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: all var(--transition-speed) ease;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--accent-gold);
    opacity: 0;
    transition: all var(--transition-speed) ease;
    pointer-events: none;
    z-index: 3;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover .project-overlay {
    background: rgba(10, 28, 42, 0.85);
}

.project-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.project-title {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
}

.project-card:hover .project-tag,
.project-card:hover .project-title {
    transform: translateY(0);
    opacity: 1;
}

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

/* Icon style adjustments */
.service-icon svg {
    color: var(--accent-gold);
    stroke-width: 1.5;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none; /* Hide on mobile to save space */
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
    max-width: 420px;
    background-color: #0b121f;
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: #ffffff;
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cookie-header svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.cookie-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-body {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.cookie-body a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color var(--transition-speed) ease;
}

.cookie-body a:hover {
    color: #ffffff;
}

/* Accordion for Custom Settings */
.cookie-settings {
    display: none;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.cookie-settings.active {
    display: flex;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.cookie-option-info h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    color: #ffffff;
}

.cookie-option-info p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Switch Toggle Styling */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: .3s;
}

input:checked + .cookie-slider {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

input:focus + .cookie-slider {
    box-shadow: 0 0 1px var(--accent-gold);
}

input:checked + .cookie-slider:before {
    transform: translateX(16px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.cookie-buttons-row {
    display: flex;
    gap: 0.8rem;
    width: 100%;
}

.btn-cookie {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-align: center;
    flex: 1;
}

.btn-cookie-accept {
    background-color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-dark);
}

.btn-cookie-deny {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.btn-cookie-deny:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-cookie-settings {
    background-color: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent-gold);
    width: 100%;
}

.btn-cookie-settings:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.btn-cookie-save {
    display: none;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: var(--primary-dark);
    width: 100%;
}

.btn-cookie-save:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
}

/* Floating Settings Trigger Button */
.cookie-settings-trigger {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: #0b121f;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-radius: 0;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.cookie-settings-trigger.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.cookie-settings-trigger:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-right: none;
        border-left: none;
        border-bottom: none;
        padding: 1.5rem;
    }
    
    .cookie-settings-trigger {
        bottom: 1rem;
        left: 1rem;
        width: 36px;
        height: 36px;
    }
}

