:root {
    --primary:        #13a862;
    --primary-dark:   #265a41;
    --secondary:      #1C2621;
    --accent:         #C7A252;
    --dark:           #141A16;
    --light:          #f8f9fa;
    --muted:          #6c757d;
    --text:           #232b26;
    --whatsapp:       #25D366;
    --whatsapp-dark:  #128C7E;
    --bg-soft:        #F4F6F2;
    --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
    --shadow-md:      0 6px 20px rgba(0,0,0,.08);
    --shadow-lg:      0 16px 40px rgba(0,0,0,.12);
    --radius:         12px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    padding-top: 78px;
    background: #fff;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--secondary);
}

a { text-decoration: none; }

/* ============================================
   Navbar
   ============================================ */
#mainNavbar {
    background: rgba(255,255,255,.97);
    backdrop-filter: saturate(180%) blur(8px);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    padding: 12px 0;
}
#mainNavbar.scrolled {
    padding: 6px 0;
    box-shadow: var(--shadow-md);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--secondary) !important;
}
.navbar-brand i {
    color: var(--primary);
    margin-right: 4px;
}
.navbar-brand span {
    color: var(--primary);
}
.nav-link {
    font-weight: 600;
    color: var(--text) !important;
    padding: 8px 4px !important;
    position: relative;
    transition: color .25s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px; bottom: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.btn-call {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    transition: background .25s ease, transform .25s ease;
}
.btn-call:hover {
    background: var(--primary-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    background:
        linear-gradient(120deg, rgba(28,38,33,.74) 0%, rgba(20,26,22,.46) 100%),
        url('/images/dolab-1.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    padding: 40px 0 45px;
    min-height: 340px;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(176,125,79,.32), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 18px;
}
.hero-sub {
    color: rgba(255,255,255,.88);
    font-size: 1.1rem;
    margin-bottom: 22px;
    max-width: 560px;
}
.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.hero-points li {
    margin-bottom: 8px;
    font-weight: 500;
}
.hero-points i {
    color: var(--accent);
    margin-right: 8px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 22px;
    padding-top: 14px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent);
}
.hero-stat-label {
    font-size: .9rem;
    color: rgba(255,255,255,.82);
}

/* Endirim lenti */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--accent); }

.btn-primary-cta, .btn-whatsapp-cta, .btn-light-cta, .btn-outline-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    border: none;
}
.btn-primary-cta {
    background: var(--primary);
    color: #fff;
}
.btn-primary-cta:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-whatsapp-cta {
    background: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp-cta:hover {
    background: var(--whatsapp-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-light-cta {
    background: #fff;
    color: var(--primary);
}
.btn-light-cta:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
}
.btn-outline-primary-cta {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-primary-cta:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 50px 0;
}
.section-alt {
    background: var(--bg-soft);
}
.section-head {
    max-width: 720px;
    margin: 0 auto 20px;
}
.section-head h2 {
    font-size: 2rem;
    margin: 10px 0 12px;
}
.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}
.badge-tag {
    display: inline-block;
    background: rgba(176,125,79,.12);
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ============================================
   Service cards
   ============================================ */
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(176,125,79,.28);
}
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(176,125,79,.12);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--muted);
    margin: 0;
    font-size: .96rem;
}

/* ============================================
   Benefit cards
   ============================================ */
.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.6rem;
}
.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.benefit-card p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 50px 0;
}
.cta-banner h2 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.7rem;
}
.cta-banner p {
    margin: 0;
    color: rgba(255,255,255,.92);
}

/* ============================================
   FAQ Accordion
   ============================================ */
#faqAccordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
#faqAccordion .accordion-button {
    font-weight: 600;
    color: var(--secondary);
    background: #fff;
    padding: 18px 22px;
}
#faqAccordion .accordion-button:not(.collapsed) {
    background: rgba(176,125,79,.08);
    color: var(--primary);
    box-shadow: none;
}
#faqAccordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
#faqAccordion .accordion-body {
    background: #fff;
    color: var(--text);
    padding: 0 22px 20px;
}

/* ============================================
   Inner page banner / breadcrumb
   ============================================ */
.page-banner {
    background:
        linear-gradient(120deg, rgba(28,38,33,.70) 0%, rgba(20,26,22,.42) 100%),
        url('/images/dolab-5.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 50px;
}
.page-banner h1 {
    color: #fff;
    font-size: 2.2rem;
    margin: 6px 0 0;
}
.breadcrumb-nav {
    font-size: .92rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 6px;
}
.breadcrumb-nav a {
    color: var(--accent);
}
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav .sep { margin: 0 6px; opacity: .6; }

.content-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 30px;
    box-shadow: var(--shadow-sm);
    line-height: 1.7;
}
.content-block h2 {
    font-size: 1.45rem;
    margin: 24px 0 12px;
}
.content-block h3 {
    font-size: 1.15rem;
    margin: 18px 0 8px;
}
.content-block ul { padding-left: 1.2rem; }
.content-block ul li { margin-bottom: 6px; }

.card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
}
.card-link:hover { color: var(--primary-dark); }

/* Lang link */
.lang-link {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    padding: 6px 10px !important;
    font-size: .9rem;
    font-weight: 700 !important;
}

/* Social row */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* Contact form */
.contact-form .form-control {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(176,125,79,.18);
}

/* Blog cards */
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}
.blog-thumb {
    overflow: hidden;
    background: var(--bg-soft);
}
.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}
.blog-card-body,
.blog-body {
    padding: 20px 22px;
}
.blog-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
}
.blog-card h3 a {
    color: var(--secondary);
    transition: color .2s ease;
}
.blog-card h3 a:hover {
    color: var(--primary);
}
.blog-card p {
    color: var(--muted);
    margin: 0 0 12px;
    font-size: .95rem;
}
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    transition: gap .2s ease, color .2s ease;
}
.blog-readmore:hover {
    color: var(--primary-dark);
    gap: 10px;
}
.blog-readmore i {
    font-size: .85rem;
}

/* 404 */
.error-section {
    padding: 100px 0;
    text-align: center;
}
.error-section h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1;
}
.error-section h2 {
    font-size: 1.6rem;
    margin: 10px 0 16px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.78);
    padding: 50px 0 24px;
}
.site-footer h4, .site-footer h5 {
    color: #fff;
    margin-bottom: 14px;
}
.footer-brand i { color: var(--primary); }
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-contact li { margin-bottom: 8px; }
.footer-links a, .footer-contact a {
    color: rgba(255,255,255,.78);
    transition: color .2s ease;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary);
}
.footer-contact i {
    width: 18px;
    color: var(--primary);
    margin-right: 6px;
}
.site-footer hr {
    border-color: rgba(255,255,255,.12);
    margin: 28px 0 16px;
}

/* ============================================
   Product Cards
   ============================================ */
.product-section {
    padding: 50px 0;
}

.product-section .product-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-section .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(176,125,79,.28);
}
.product-section .product-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
}
.product-section .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-section .product-card:hover .product-thumb img {
    transform: scale(1.05);
}
.product-section .product-thumb::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(30,38,33,.6);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transition: opacity .25s ease;
}
.product-section .product-card:hover .product-thumb::after {
    opacity: 1;
}
.product-section .product-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-section .product-body h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    line-height: 1.3;
    color: var(--secondary);
}
.product-section .product-body p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

/* PhotoSwipe caption overlay */
.pswp__top-bar { top: 10px; }
.pswp__product-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,0));
    color: #fff;
    z-index: 10;
    pointer-events: none;
}
.pswp__product-caption h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}
.pswp__product-caption p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.5;
    max-width: 780px;
    color: rgba(255,255,255,.92);
}

@media (max-width: 767.98px) {
    .product-section [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .product-section .product-thumb {
        aspect-ratio: 16 / 10;
    }
}

/* ============================================
   Floating action buttons
   ============================================ */
.fab-btn {
    position: fixed;
    right: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
    z-index: 1030;
    transition: transform .25s ease;
}
.fab-btn:hover {
    transform: scale(1.08);
    color: #fff;
}
.fab-call {
    bottom: 82px;
    background: var(--primary);
    animation: pulseBrown 2s infinite;
}
.fab-wa {
    bottom: 18px;
    background: var(--whatsapp);
    animation: pulseGreen 2s infinite;
}
@keyframes pulseBrown {
    0%, 100% { box-shadow: 0 0 0 0 rgba(176,125,79,.55); }
    50%      { box-shadow: 0 0 0 14px rgba(176,125,79,0); }
}
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
    50%      { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================
   Material / rəng seçimi
   ============================================ */
.color-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 10px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.color-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.color-swatch {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 8px;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.color-card p {
    margin: 0;
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

/* ============================================
   Product card (link wrapper)
   ============================================ */
.product-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(176,125,79,.28);
}
.product-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-thumb img {
    transform: scale(1.05);
}
.product-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-body h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    line-height: 1.3;
    color: var(--secondary);
}
.product-body p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

/* ============================================
   Proses addımları (iş qaydası)
   ============================================ */
.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 22px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.step-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}
.step-card p {
    color: var(--muted);
    font-size: .93rem;
    margin: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    body { padding-top: 70px; }
    .hero {
        padding: 28px 0 32px;
        min-height: 280px;
        text-align: center;
        background-position: center;
    }
    .hero-title { font-size: 2rem; }
    .hero-sub { display: none; }
    .hero-points { display: none; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 24px; margin-top: 24px; }
    .hero-stat { align-items: center; }
    .hero-stat-num { font-size: 1.5rem; }
    .section { padding: 60px 0; }
    .section-head h2 { font-size: 1.6rem; }
    .cta-banner { text-align: center; }
    .cta-banner .text-lg-end { margin-top: 16px; }
    #mainNavbar { padding: 8px 0; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.7rem; }
    .btn-primary-cta, .btn-whatsapp-cta { width: 100%; justify-content: center; }
    .fab-btn { width: 48px; height: 48px; font-size: 1.2rem; }
    .fab-call { bottom: 70px; }
}

/* ============================================
   Qiymət cədvəli
   ============================================ */
.price-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.price-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    margin: 0;
}
.price-table thead th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 18px;
    text-align: left;
    white-space: nowrap;
}
.price-table tbody td {
    padding: 13px 18px;
    border-top: 1px solid rgba(0,0,0,.06);
    vertical-align: middle;
}
.price-table tbody tr:nth-child(even) {
    background: var(--bg-soft);
}
.price-table .pt-model {
    font-weight: 600;
    color: var(--secondary);
}
.price-table .pt-price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}
.price-note {
    font-size: .9rem;
    color: var(--muted);
    margin-top: 14px;
}
.price-note i {
    color: var(--accent);
    margin-right: 5px;
}
