/* ============================================================================
   FONT FACES
   ============================================================================ */

@font-face {
    font-family: 'D-DIN';
    src: url('/assets/fonts/D-DIN.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('/assets/fonts/D-DIN-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('/assets/fonts/D-DIN-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Condensed';
    src: url('/assets/fonts/D-DINCondensed.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Condensed';
    src: url('/assets/fonts/D-DINCondensed-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Exp';
    src: url('/assets/fonts/D-DINExp.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Exp';
    src: url('/assets/fonts/D-DINExp-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN Exp';
    src: url('/assets/fonts/D-DINExp-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('/assets/fonts/DIN BlackAlternate.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================================================
   ROOT VARIABLES
   ============================================================================ */

:root {
    /* Font Family */
    --font-primary: 'D-DIN', sans-serif;
    --font-condensed: 'D-DIN Condensed', sans-serif;
    --font-expanded: 'D-DIN Exp', sans-serif;
    /* Brand Colors */
    --color-primary: #d71635;
    --color-secondary: #212529;
    
    /* Gradient Background */
    --gradient-top: #d71635;
    --gradient-bottom: #a01535;
    --gradient-bg: linear-gradient(to bottom, var(--gradient-top), var(--gradient-bottom));
    
    /* Button Colors */
    --btn-primary: #3dad4a;
    --btn-primary-hover: #359942;
    --btn-secondary: #7a7a7a;
    --btn-secondary-hover: #666666;
    
    /* Text Colors */
    --text-dark: #221f21;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */

html {
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Main content wrapper - grows to push footer down */
main {
    flex: 1 0 auto;
}

/* Footer stays at bottom */
footer {
    flex-shrink: 0;
}

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

/* Extra bold / Black font weight */
.fw-black {
    font-weight: 900 !important;
}

/* Speech marks decoration */
.speech {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.speech::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 16px;
    background-image: url('/assets/image/icons/speech_mark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Speech white variant */
.speech.speech-white {
    color: #ffffff;
}

.speech.speech-white::before {
    filter: brightness(0) invert(1);
}

/* ============================================================================
   BOOTSTRAP OVERRIDES
   ============================================================================ */

/* Primary Button */
.btn-primary {
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
    color: var(--text-light);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: var(--text-light);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--btn-secondary);
    border-color: var(--btn-secondary);
    color: var(--text-light);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--btn-secondary-hover);
    border-color: var(--btn-secondary-hover);
    color: var(--text-light);
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

/* Background Image Utilities */
.bg-cover {
    background-size: cover !important;
}

.bg-contain {
    background-size: contain !important;
}

.bg-center {
    background-position: center !important;
}

.bg-top {
    background-position: top center !important;
}

.bg-bottom {
    background-position: bottom center !important;
}

.bg-no-repeat {
    background-repeat: no-repeat !important;
}

/* Background Colors */
.bg-light-gray {
    background-color: #eeeced;
}

/* Background Gradient */
.bg-gradient-brand {
    background: var(--gradient-bg);
}

.bg-white-fadeout {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.bg-red-fadeout {
    background: linear-gradient(to bottom, rgba(199, 48, 60, 1) 0%, rgba(199, 48, 60, 0.6) 100%);
}

/* Brand Colors */
.text-brand-primary {
    color: var(--color-primary);
}

.text-brand-secondary {
    color: var(--color-secondary);
}

.bg-brand-primary {
    background-color: var(--color-primary);
}

.bg-brand-secondary {
    background-color: var(--color-secondary);
}

/* ============================================================================
   HEADER STYLES
   ============================================================================ */

/* Logo Styles */
.header-logo {
    height: 90px;
    width: auto;
    max-width: 100%;
}

/* Phone Icon Container */
.phone-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Icon Image */
.phone-icon-img {
    width: 40px;
    height: 40px;
}

/* Header Phone Container */
.header-phone-container {
    margin-left: 0;
    margin-right: 0;
    align-items: flex-start !important;
}

/* Phone Link Styles */
.phone-link .phone-number {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.phone-link .phone-label {
    color: var(--text-muted);
}

/* Menu Toggle Button (burger) */
.mobile-menu-toggle {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.hamburger-icon {
    width: 40px;
    height: 40px;
}

/* Navigation Links */
.nav-link-header {
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Last nav item: no bottom border */
.navbar-nav .nav-item:last-child .nav-link-header {
    border-bottom: none;
}

/* Dropdown Styles */
.navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background-color: var(--color-primary);
    color: white;
}

.navbar .dropdown-item:hover .dropdown-icon {
    filter: brightness(0) invert(1); /* Turn black SVG to white on hover */
}

/* Dropdown Arrow */
.nav-link-header.dropdown-toggle::after {
    margin-left: 0.5rem;
}


/* Header CTA Buttons */
.site-header .btn-sm {
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
}

/* Mobile Phone Link Styles */
.phone-link-mobile .phone-icon-img {
    width: 32px;
    height: 32px;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

/* Hero Section Base */
.hero-section {
    min-height: 400px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
}

/* Hero background image as <img> for better LCP */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -30px;
    min-height: 430px;
    z-index: 0;
}

/* Container inside the hero - sits above the absolute-positioned image */
.hero-section > .container {
    position: relative;
    z-index: 1;
    padding: 0.5rem 1rem 1rem;
    width: 100%;
    height: auto;
}

.hero-section .row {
    justify-content: center;
    height: auto;
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 1rem;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    backdrop-filter: blur(10px);
    color: #212529; /* Keep all text black when card is a link */
}

a.hero-card:hover {
    color: #212529; /* Stay black on hover too */
}

/* Speech bubble variant - tail/shark fin was desktop-only, hidden on the
   one-size-fits-all mobile layout */
.hero-card--speech {
    position: relative;
}

/* Trustpilot badge sizing inside the hero card */
.hero-card .trustpilot-badge img {
    max-width: 140px;
}

.hero-card .trustpilot-badge .fs-2 {
    font-size: 1.1rem !important;
    color: #212529;
}

.hero-card .trustpilot-badge .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.hero-card .trustpilot-badge .mb-3 {
    margin-bottom: 0.5rem !important;
}

.hero-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================================================
   PRICING ITEMS (Hero Card)
   ============================================================================ */

.pricing-item {
    gap: 0.75rem;
}

.pricing-content {
    flex: 1;
}

.pricing-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.pricing-price {
    color: #555;
    font-weight: 400;
    margin-left: 0.25rem;
}

.pricing-description {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Info Button */
.btn-pricing-info {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: #000000;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.btn-pricing-info:hover {
    background-color: #333333;
    transform: scale(1.1);
}

.btn-pricing-info:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* White variant for dark backgrounds */
.btn-pricing-info-white {
    background-color: #ffffff;
    color: #000000;
}

.btn-pricing-info-white:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

/* Express Service Toggle */
.express-service-toggle {
    transition: background-color 0.3s ease;
}

.express-service-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.express-service-details {
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.express-service-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.express-service-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.express-service-details p {
    line-height: 1.6;
}

/* Rotate info button when expanded */
.express-service-toggle[aria-expanded="true"] .btn-pricing-info-white {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.express-service-toggle .btn-pricing-info-white {
    transition: transform 0.3s ease;
}

/* ============================================================================
   SECTION IMAGE (Reusable background image container)
   ============================================================================ */

.section-image {
    background-size: cover;
    background-position: center 20%; /* Prioritizes top portion, but crops 20% from top */
    background-repeat: no-repeat;
    width: 100%;
    min-height: 350px;
}

/* Image + text intro block (e.g. /our-reviews) */
.image-text-block {
    background-color: #ffffff;
}

.image-text-block .image-text-block-photo.section-image {
    min-height: clamp(200px, 52vw, 280px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background-position: center 30%;
}

.image-text-block-copy .speech {
    font-size: clamp(1.1rem, 3.5vw, 1.35rem);
}

.image-text-block-title {
    font-size: clamp(1.2rem, 4.2vw, 1.7rem);
    line-height: 1.2;
    margin-top: 0.35rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.image-text-block-body {
    font-size: 1rem;
    line-height: 1.65;
    color: #3a3a3a;
    max-width: 40rem;
}

/* New garage doors — intro cards (icon + copy) */
.door-type-name {
    color: #267334;
}

.door-type-icon-wrap {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.door-type-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 576px) {
    .door-type-icon-wrap {
        width: 5.25rem;
        height: 5.25rem;
    }
}

/* ============================================================================
   EMERGENCY BANNER
   ============================================================================ */

@media (min-width: 992px) {
    .bg-gradient-brand h2 {
        font-size: 2.5rem;
    }
    
    .bg-gradient-brand p {
        font-size: 1.25rem;
    }
    
    .bg-gradient-brand .btn {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer-logo {
    max-width: 80px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

/* Footer Text */
.footer-text li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Footer Contact */
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-phone-icon {
    width: 20px;
    height: 20px;
}

.footer-phone-green {
    filter: hue-rotate(90deg) saturate(1.5);
}

/* Footer shell — accent bar + depth (content stays readable) */
.site-footer {
    position: relative;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.22);
    padding-top: clamp(2.75rem, 7vw, 4.5rem);
    padding-bottom: max(
        clamp(3.25rem, 8vw, 5.25rem),
        calc(2.5rem + env(safe-area-inset-bottom, 0px))
    );
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%);
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.site-footer-inner {
    padding-inline: clamp(1rem, 4.5vw, 2rem);
}

.site-footer-grid {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 2.25rem;
}

@media (min-width: 576px) {
    .site-footer-grid {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2.75rem;
    }
}

@media (min-width: 1200px) {
    .site-footer-grid {
        --bs-gutter-x: 2.25rem;
        --bs-gutter-y: 3rem;
    }
}

.site-footer-logo-col {
    margin-bottom: 1.25rem;
}

.site-footer h5.text-white {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.15rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.96);
}

.site-footer .footer-links li {
    margin-bottom: 0.45rem;
}

.site-footer .footer-text li {
    margin-bottom: 0.45rem;
    line-height: 1.55;
}

.site-footer .footer-contact li {
    margin-bottom: 0.75rem;
}

.site-footer .footer-links a,
.site-footer .footer-text li,
.site-footer .footer-contact a {
    font-size: 0.95rem;
}

.site-footer-book-cta {
    margin-top: 1.35rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

/* Floating WhatsApp — viewport-fixed (same anchoring idea as #chat), not the footer column */
.whatsapp-float {
    position: fixed;
    left: max(18px, env(safe-area-inset-left));
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 2147483645;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* ============================================================================
   FAQ ACCORDION
   ============================================================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-accordion .accordion-item {
    background: #ffffff;
    border: none;
    border-radius: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    background: transparent;
    border: none;
    border-radius: 0 !important;
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
}

/* Custom plus/minus icons */
.faq-accordion .accordion-button::after {
    display: none; /* Hide default Bootstrap arrow */
}

.faq-accordion .accordion-button .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.faq-accordion .accordion-button .faq-icon-plus {
    display: block;
}

.faq-accordion .accordion-button .faq-icon-minus {
    display: none;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon-plus {
    display: none;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon-minus {
    display: block;
}

.faq-accordion .accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Hover effect */
.faq-accordion .accordion-button:hover {
    color: var(--color-primary);
}

/* ============================================================================
   REVIEW CARDS
   ============================================================================ */

.review-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
    border: 1px solid #dee2e6;
}

.review-stars-img {
    height: 24px;
    width: auto;
    margin-bottom: 1rem;
}

.review-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.review-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ============================================================================
   BRAND LOGOS
   ============================================================================ */

/* Brands Section */
.brands-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem 1rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 0.75rem);
}

.brand-logo {
    max-height: 35px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Specific brand adjustments */
.brand-logo[alt="Cardale"] {
    max-height: 60px;
    max-width: 100%;
}

/* Desktop */
@media (min-width: 768px) {
    .brands-flex {
        gap: 2rem 3.5rem;
    }
    
    .brand-item {
        width: auto;
    }
    
    .brand-logo {
        max-height: 50px;
        max-width: 160px;
    }
    
    .brand-logo[alt="Cardale"] {
        max-height: 95px;
        max-width: 220px;
    }
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

/* "Get in touch" block — comfortable on narrow / mobile-framed layouts */
.contact-section-inner {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
    padding-left: max(clamp(1.125rem, 5vw, 2rem), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(1.125rem, 5vw, 2rem), env(safe-area-inset-right, 0px));
}

.contact-section-title {
    font-size: clamp(1.35rem, 4.5vw, 2rem);
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.contact-section-lead {
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.95;
}

/* Contact page — info cards (stacked; no multi-column squeeze) */
.contact-info-section .contact-hours-list {
    width: 100%;
    max-width: 100%;
}

.contact-info-section .contact-info-card {
    overflow: visible;
}

.contact-info-section .contact-call-block + .col-12 {
    padding-top: 0.25rem;
}

.contact-form {
    max-width: 100%;
}

.contact-input {
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    color: #000000;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    min-height: 3rem;
    transition: all 0.2s ease;
}

.contact-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.contact-input:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #ffffff;
    border-color: #000000;
    color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}


.btn-contact-send {
    background-color: #ffffff;
    color: var(--color-primary);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.btn-contact-send:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ============================================================================
   ABOUT US (segment: /about + homepage)
   ============================================================================ */

.about-section-title {
    font-size: clamp(1.35rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.about-section-copy p {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 42rem;
}

/* Button styled as link (for semantic HTML while maintaining link appearance) */
.btn-link-style {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: inline;
}

.btn-link-style:hover {
    text-decoration: underline;
}

/* D-DIN Exp Italic Text */
.text-italic-exp {
    font-family: 'D-DIN Exp', sans-serif;
    font-style: italic;
}

/* Hide reCAPTCHA v3 badge */
.grecaptcha-badge {
    visibility: hidden !important;
}