/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --burgundy: #5c1d24;
    --burgundy-dark: #3f1116;
    --burgundy-light: #7b262f;
    --cream: #fcf7f5;
    --cream-dark: #f3ece9;
    --cream-light: #fffdfd;
    --dark: #2b2b2b;
    --dark-light: #3f3f3f;
    --white: #ffffff;
    --gold: #dfb23f;
    
    /* Typography */
    --font-headings: 'Unna', Georgia, Cambria, "Times New Roman", Times, serif;
    --font-body: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
}

/* ==========================================================================
   GLOBAL RESET & STYLES
   ========================================================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

/* Helpers */
.bg-burgundy {
    background-color: var(--burgundy) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

.bg-cream-light {
    background-color: var(--cream-light) !important;
}

.text-burgundy {
    color: var(--burgundy) !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-60 {
    opacity: 0.6 !important;
}

.tracking-wider {
    letter-spacing: 0.05em !important;
}

.tracking-widest {
    letter-spacing: 0.15em !important;
}

.fs-7 {
    font-size: 0.85rem !important;
}

.max-width-380 {
    max-width: 380px;
}

/* Section Spacing */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
    .py-6 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}

/* ==========================================================================
   TYPOGRAPHY SPECIFICS
   ========================================================================== */
.font-serif {
    font-family: var(--font-headings);
}

.italic-text {
    font-style: italic;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--dark-light);
}

.body-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--dark-light);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.btn-burgundy {
    background-color: var(--burgundy);
    color: var(--white);
    border: 1px solid var(--burgundy);
}

.btn-burgundy:hover, .btn-burgundy:focus {
    background-color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 29, 36, 0.2);
}

.btn-burgundy:active {
    transform: translateY(0);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background-color: transparent;
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / BRAND LOGO
   ========================================================================== */
.main-header {
    background-color: transparent;
    z-index: 1030;
}

.main-header.scrolled {
    background-color: var(--burgundy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    margin: 0 auto;
}

.logo-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.35em;
    margin-top: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2px;
}

.btn-contact-header {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.transition-all {
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
    min-height: 90vh;
    background-image: url('../img/teaser-01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(338deg, rgb(0 0 0 / 29%) 0%, rgb(156 156 156 / 70%) 100%);
    z-index: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 100;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0;
        border-right: 1px solid #9E9E9E;
}

.hero-card-desc {
    background-color: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 6px;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    #hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-card-desc {
        padding: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   SECTION HEADER DECORATIONS
   ========================================================================== */
.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--burgundy);
    background-color: var(--cream-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.section-title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--burgundy);
    margin: 1rem auto 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Image Accent Border Styling */
.img-wrapper {
    position: relative;
    z-index: 2;
}

.img-accent-border {
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--burgundy);
    border-radius: 4px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.img-wrapper:hover .img-accent-border {
    transform: translate(6px, -6px);
}

.img-accent-border.right-accent {
    left: 15px;
}

.img-wrapper:hover .img-accent-border.right-accent {
    transform: translate(-6px, -6px);
}

/* ==========================================================================
   HIGHLIGHTS BANNER
   ========================================================================== */
.highlight-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.highlight-item:hover .highlight-icon-box {
    background-color: var(--white);
    color: var(--burgundy);
    transform: scale(1.05);
}

.border-md-x {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .border-md-x {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* ==========================================================================
   SPECIALIZATION (TABS)
   ========================================================================== */
.custom-nav-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.custom-nav-tabs .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 4px !important;
    padding: 0.75rem 1.25rem;
    transition: var(--transition-smooth);
}

.custom-nav-tabs .nav-link:hover {
    color: var(--burgundy);
    border-color: var(--burgundy) !important;
    background-color: var(--cream);
}

.custom-nav-tabs .nav-link.active {
    background-color: var(--burgundy) !important;
    color: var(--white) !important;
    border-color: var(--burgundy) !important;
    box-shadow: 0 4px 10px rgba(92, 29, 36, 0.15);
}

.tab-pane-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.checklist-list li {
    font-size: 1.05rem;
}

.stat-highlight-card {
    background: linear-gradient(145deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    box-shadow: 0 10px 30px rgba(63, 17, 22, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

/* ==========================================================================
   PROCESS CARDS
   ========================================================================== */
.process-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(92, 29, 36, 0.15);
}

.process-step-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.process-step-num-highlight {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(92, 29, 36, 0.15);
    line-height: 1;
}

.process-icon {
    font-size: 2rem;
    color: var(--muted);
    transition: var(--transition-smooth);
}

.process-card:hover .process-icon {
    color: var(--burgundy);
    transform: scale(1.1);
}

.process-card-highlighted {
    border: 2px solid var(--burgundy) !important;
    box-shadow: 0 8px 25px rgba(92, 29, 36, 0.08) !important;
}

/* ==========================================================================
   WHY CHOOSE SPECIFICS
   ========================================================================== */
.check-bullet-fa {
    color: var(--white);
    background-color: var(--burgundy);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.why-choose-quote {
    background-color: var(--white);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(92, 29, 36, 0.12) !important;
}

/* ==========================================================================
   MEDIA / PRESS ITEMS
   ========================================================================== */
.hover-opacity-100:hover {
    opacity: 1 !important;
    color: var(--burgundy) !important;
}

/* ==========================================================================
   CONTACT FORM & INPUTS
   ========================================================================== */
.contact-form .form-floating > .form-control,
.contact-form .form-floating > .form-select {
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-form .form-floating > .form-control:focus,
.contact-form .form-floating > .form-select:focus {
    border-color: var(--burgundy) !important;
    box-shadow: 0 0 0 0.25rem rgba(92, 29, 36, 0.1) !important;
}

.contact-form .form-floating > label {
    font-family: var(--font-body);
    color: var(--muted);
    font-weight: 400;
}

.check-burgundy-input:checked {
    background-color: var(--burgundy);
    border-color: var(--burgundy);
}

.check-burgundy-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(92, 29, 36, 0.1);
    border-color: var(--burgundy);
}

.contact-info-box {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
#footer {
    background-color: var(--burgundy-dark);
}

#footer .logo-title {
    color: var(--white);
}

#footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links a {
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white) !important;
    text-decoration: underline !important;
}
