/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown-dark: #2e2320;
    --brown: #3a2f2b;
    --brown-medium: #4b433f;
    --brown-light: #6b5d56;
    --gold: #ffc551;
    --gold-light: #ffd580;
    --gold-dark: #e6a82e;
    --cream: #faf7f2;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 197, 81, 0.4);
}

.btn-secondary {
    background: var(--brown);
    color: var(--gold);
    border: 2px solid var(--brown);
}

.btn-secondary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(58, 47, 43, 0.3);
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--brown);
}

.logo-img {
    height: 48px;
    width: auto;
    /* Invert the white-on-transparent logo for the white header */
    filter: brightness(0) saturate(100%);
}

.header.scrolled .logo-img {
    filter: brightness(0) saturate(100%);
}

.footer-logo-img {
    height: 40px;
    /* Keep original colors (white/gold) for dark footer */
    filter: none;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.nav-link:hover {
    background: var(--cream);
    color: var(--brown);
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 100;
    min-width: 480px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.nav-dropdown-col a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition);
}

.nav-dropdown-col a:hover {
    background: var(--cream);
    color: var(--brown);
    padding-left: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--brown-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.header-phone:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    padding-top: 72px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46,35,32,0.88) 0%, rgba(58,47,43,0.82) 50%, rgba(75,67,63,0.78) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,197,81,0.06) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-intro {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-intro strong {
    color: var(--gold);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--cream);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--brown);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 24px;
    margin-top: 48px;
    text-align: center;
}

.subsection-title:first-of-type {
    margin-top: 0;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--brown);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--brown-dark);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    background: var(--brown);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 24px;
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--brown);
    box-shadow: var(--shadow);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PROCESS ===== */
.process-steps {
    display: flex;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--brown-light));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(255, 197, 81, 0.3);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--brown);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brown);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0d8d3;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--brown);
    border-radius: var(--radius);
    padding: 32px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

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

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition);
}

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

.contact-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.cta-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 2px dashed var(--gold);
}

.cta-box p {
    margin-bottom: 8px;
    color: var(--text);
}

.cta-box .btn {
    margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.mobile-cta-phone {
    background: var(--brown);
    color: var(--gold);
}

.mobile-cta-form {
    background: var(--gold);
    color: var(--brown-dark);
}

/* ===== SERVICE PAGES ===== */
.service-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding-top: 72px;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46,35,32,0.9) 0%, rgba(46,35,32,0.4) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    color: var(--white);
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--gold-light);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.service-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.service-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    max-width: 600px;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-main h2 {
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 16px;
}

.service-main h3 {
    font-size: 1.3rem;
    color: var(--brown);
    margin-top: 32px;
    margin-bottom: 12px;
}

.service-main p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text);
}

.service-main ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.service-main ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.6;
    list-style: none;
}

.service-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-cta {
    background: var(--brown);
    color: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-cta h3 {
    color: var(--gold);
    margin-bottom: 8px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.sidebar-services {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-services h4 {
    color: var(--brown);
    margin-bottom: 12px;
    font-size: 1rem;
}

.sidebar-services ul li {
    list-style: none;
}

.sidebar-services ul li a {
    display: block;
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid #e8e0da;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.sidebar-services ul li a:hover {
    color: var(--gold-dark);
    padding-left: 8px;
}

.sidebar-services ul li:last-child a {
    border-bottom: none;
}

.sidebar-trust {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
}

.sidebar-trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.inline-cta {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 28px;
    margin-top: 40px;
}

.inline-cta h3 {
    color: var(--brown);
    margin-bottom: 8px;
    margin-top: 0;
    font-size: 1.2rem;
}

.inline-cta p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.section-cta {
    background: var(--brown);
    padding: 60px 0;
}

@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .service-content-grid {
        grid-template-columns: 1fr !important;
    }
    .service-sidebar {
        position: static;
    }
    .service-hero {
        min-height: 300px;
    }
    .service-hero-content {
        padding: 30px 0;
    }
    .service-hero h1 {
        font-size: 1.6rem;
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: 0;
        background: transparent;
    }
    .nav-dropdown-grid {
        grid-template-columns: 1fr;
    }
    .nav-dropdown-col a {
        border-bottom: 1px solid #eee;
    }
    .inline-cta {
        padding: 20px;
    }
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46,35,32,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== SECTION BACKGROUNDS ===== */

.footer-company-info {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    line-height: 1.5;
}

/* ===== CALLBACK FAB & MODAL ===== */
.callback-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 197, 81, 0.4);
    transition: all var(--transition);
    animation: fabPulse 2s ease-in-out infinite;
}

.callback-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 197, 81, 0.5);
    animation: none;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 197, 81, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 197, 81, 0.6); }
}

.callback-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.callback-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.callback-modal-overlay.active .callback-modal {
    transform: translateY(0) scale(1);
}

.callback-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.callback-close:hover {
    background: #f0f0f0;
    color: var(--text);
}

.callback-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.callback-modal-header svg {
    color: var(--gold);
    margin-bottom: 12px;
}

.callback-modal-header h3 {
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 6px;
}

.callback-modal-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.callback-form .form-group {
    margin-bottom: 16px;
}

.callback-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

.callback-success {
    text-align: center;
    padding: 20px 0;
}

.callback-success svg {
    margin-bottom: 16px;
}

.callback-success h3 {
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 8px;
}

.callback-success p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .callback-fab {
        bottom: 80px; /* above mobile CTA bar */
        right: 16px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    .callback-fab-text {
        display: none;
    }
    .callback-fab {
        border-radius: 50%;
        padding: 16px;
    }
    .callback-modal {
        padding: 28px;
    }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-text p:first-child {
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--text);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--brown-dark);
}

.cookie-btn-accept:hover {
    background: var(--gold-dark);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #ddd;
}

.cookie-btn-reject:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
    }
    .cookie-consent {
        bottom: 60px; /* above mobile CTA bar */
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right var(--transition);
        z-index: 1000;
    }
    .nav.open {
        right: 0;
    }
    .nav-link {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-bottom: 1px solid #eee;
    }
    .hamburger {
        display: flex;
    }
    .header-phone span {
        display: none;
    }
    .header-phone {
        padding: 10px;
        border-radius: 50%;
    }

    .hero {
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-intro {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    .trust-bar-inner {
        gap: 16px;
        justify-content: center;
    }
    .trust-item {
        font-size: 0.8rem;
        flex: 0 0 calc(50% - 8px);
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .services-grid,
    .services-grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mobile-cta-bar {
        display: flex;
    }
    .footer {
        padding-bottom: 70px;
    }
    .section:last-of-type {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .stat-card {
        padding: 24px 16px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 24px;
    }
}
