/* ===================================================
   CSS VARIABLES
   =================================================== */
:root {
    --primary: #101936;
    --primary-dark: #0B122B;
    --accent: #B51F24;
    --accent-hover: #C52A2E;
    --text: #151A2E;
    --muted: #5F6370;
    --light: #FAF8F5;
    --gray: #F4F4F4;
    --white: #FFFFFF;
    --border: #E8E5E0;
    --radius: 15px;
    --shadow: 0 2px 16px rgba(16, 25, 54, 0.06);
}

/* ===================================================
   GLOBAL
   =================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--primary);
    line-height: 1.2;
}

p {
    color: var(--muted);
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.section-padding {
    padding: 90px 0;
}

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

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

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.section-text {
    font-size: 1.05rem;
    color: var(--muted);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-accent {
    background-color: var(--accent);
    color: var(--white) !important;
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.6rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-outline-primary-custom {
    background-color: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.6rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* ===================================================
   NAVBAR
   =================================================== */
#mainNav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(16, 25, 54, 0.05);
    padding: 0.9rem 0;
    z-index: 1050;
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    text-decoration: none;
}

.navbar-brand img {
    max-width: 90px;
}

.logo-doradca {
    color: var(--primary);
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.06em;
}

.logo-pro {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.4rem 0.65rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.4rem 0.7rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================================
   HERO
   =================================================== */
.hero-section {
    background-color: var(--white);
    padding: 60px 0 80px;
}

.min-vh-85 {
    min-height: 85vh;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-heading {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.4rem;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-actions {
    margin-bottom: 2.5rem;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-cat-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-cat-item i {
    color: var(--accent);
    font-size: 0.78rem;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 20px;
    background-color: var(--gray);
    display: block;
}

/* Placeholder when image is missing */
.hero-img[src="assets/images/patrycja-hero.jpg"]:not([src=""]) {
    background-color: var(--gray);
    min-height: 400px;
}

/* ===================================================
   QUOTE
   =================================================== */
.quote-section {
    background-color: var(--primary);
    padding: 144px 0;
}

.quote-section {
    background: url(../assets/images/background.png) no-repeat center;
    background-size: cover;
}

.quote-inner {
    max-width: 680px;
    margin: 0 auto;
}

.quote-pre {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    /*color: rgba(255, 255, 255, 0.45);*/
    margin-bottom: 1.2rem;
}

.quote-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 400;
    /*color: var(--white);*/
    line-height: 1.25;
    margin: 0;
    border: none;
    padding: 0;
}

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

/* ===================================================
   ABOUT
   =================================================== */
.about-highlight {
    background-color: var(--light);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text);
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    background-color: var(--gray);
    display: block;
}

/* ===================================================
   OFFER
   =================================================== */
.offer-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    box-shadow: 0 6px 28px rgba(16, 25, 54, 0.1);
    transform: translateY(-3px);
}

.offer-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(181, 31, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.offer-icon-wrap i {
    font-size: 1.2rem;
    color: var(--accent);
}

.offer-title {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.offer-text {
    font-size: 0.93rem;
    color: var(--muted);
    margin-bottom: 0;
    flex-grow: 1;
}

.offer-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

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

/* ===================================================
   TARGET
   =================================================== */
.target-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.target-card:hover {
    box-shadow: 0 6px 28px rgba(16, 25, 54, 0.1);
    transform: translateY(-3px);
}

.target-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(181, 31, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon-wrap i {
    font-size: 1.35rem;
    color: var(--accent);
}

.target-title {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.target-text {
    font-size: 0.93rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ===================================================
   WHY
   =================================================== */
.why-heading {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.why-item {
    display: flex;
    flex-direction: column;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(181, 31, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.1rem;
    color: var(--accent);
}

.why-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.4rem;
}

.why-text {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ===================================================
   PROCESS
   =================================================== */
.process-step {
    position: relative;
    padding: 0;
}

.process-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: rgba(181, 31, 36, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-text {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: box-shadow 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 6px 28px rgba(16, 25, 54, 0.1);
}

.testimonial-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.35;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

/* ===================================================
   INSTAGRAM
   =================================================== */
.instagram-handle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.instagram-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    background-color: var(--gray);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

/* ===================================================
   FAQ
   =================================================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: none;
}

.faq-accordion .accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--white);
    padding: 1.2rem 1.5rem;
    box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
    filter: none;
    background-size: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

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

.faq-accordion .accordion-body {
    font-size: 0.93rem;
    color: var(--muted);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.75;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-form .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.93rem;
    padding: 0.7rem 1rem;
    color: var(--text);
    background-color: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control::placeholder {
    color: #AAAAAB;
}

.contact-form .form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.93rem;
    padding: 0.7rem 1rem;
    color: var(--text);
    background-color: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181, 31, 36, 0.1);
    outline: none;
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181, 31, 36, 0.1);
    outline: none;
}

.contact-form .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(181, 31, 36, 0.1);
}

.contact-form .form-check-label {
    font-size: 0.85rem;
    color: var(--muted);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

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

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(181, 31, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1rem;
    color: var(--accent);
}

.contact-info-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value:hover {
    color: var(--accent);
}

.contact-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.contact-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    background-color: var(--gray);
    display: block;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background-color: var(--primary);
    padding: 2.5rem 0;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
}

.footer-logo .logo-doradca {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.06em;
    font-family: 'Inter', sans-serif;
    display: inline;
}

.logo-pro-footer {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
}

.footer-tagline {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
}

.footer-link {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-sep {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
}

.footer-copy a {
    color: inherit;
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Large desktops */
@media (min-width: 1200px) {
    /*
    .hero-section {
        padding: 80px 0 100px;
    }
    */
}

/* Tablet */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding: 50px 0 60px;
    }

    .min-vh-85 {
        min-height: auto;
    }

    .hero-img {
        height: 420px;
    }

    .about-img {
        height: 400px;
    }

    .contact-img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-padding {
        padding: 55px 0;
    }

    .hero-section {
        padding: 40px 0 50px;
    }

    .hero-heading {
        font-size: 2.3rem;
    }

    .section-heading {
        font-size: 1.85rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-img {
        height: 320px;
        margin-top: 2rem;
    }

    .about-img {
        height: 320px;
    }

    .instagram-grid {
        gap: 6px;
    }

    .process-step {
        border-left: 3px solid rgba(181, 31, 36, 0.12);
        padding-left: 1.25rem;
    }

    .process-number {
        font-size: 2.2rem;
    }

    .site-footer {
        padding: 2rem 0;
    }

    .site-footer .col-md-4 {
        text-align: center !important;
    }

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

    .footer-tagline {
        text-align: center;
    }

    .contact-img {
        height: 200px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-cat-item {
        font-size: 0.75rem;
        padding: 0.35rem 0.85rem;
    }

    .offer-card,
    .target-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
}

/* Prevent horizontal overflow */
.container-fluid,
.row {
    max-width: 100%;
}

body {
    max-width: 100vw;
}
