@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Jost:wght@300;400;500;600&display=swap');
:root {
    --primary: #1a1614;
    --secondary: #2a2421;
    --accent: #c49b6a;
    --accent-dark: #8e6a45;
    --accent-light: #d4b38c;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --bg-dark: #1a1614;
    --text-light: #f5f2ef;
    --text-dark: #1a1614;
    --text-body: #3d3835;
    --border: #e8e2dc;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.35s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-light);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}
h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}
h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}
h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.1rem;
}
p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent);
}
img {
    max-width: 100%;
    height: auto;
}
.btn {
    border-radius: 50rem;
    padding: 0.65rem 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
    border: 2px solid var(--accent);
}
.btn-accent:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 106, 0.3);
}
.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 106, 0.25);
}
.btn-light-custom {
    background: var(--text-light);
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}
.btn-light-custom:hover {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.btn-lg {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
}
.text-accent {
    color: var(--accent) !important;
}
.section-padding {
    padding: 100px 0;
}
.section-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 680px;
    line-height: 1.7;
}
.bg-dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}
.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4,
.bg-dark-section h5 {
    color: var(--text-light);
}
.bg-dark-section p {
    color: rgba(245, 242, 239, 0.85);
}
.bg-light-section {
    background-color: var(--bg-light);
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 22, 20, 0.85);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header.scrolled {
    background: rgba(26, 22, 20, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.4rem 0;
}
.site-header .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}
.site-header .navbar-brand span {
    color: var(--accent);
}
.site-header .navbar-nav .nav-link {
    color: rgba(245, 242, 239, 0.9);
    font-weight: 500;
    margin: 0 0.5rem;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
}
.site-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}
.site-header .navbar-nav .nav-link:hover::after,
.site-header .navbar-nav .nav-link.active::after {
    width: 70%;
}
.site-header .navbar-nav .nav-link:hover {
    color: var(--accent);
}
.site-header .navbar-toggler {
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
}
.site-header .navbar-toggler:focus {
    box-shadow: none;
}
.header-contact {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-contact i {
    color: var(--accent);
}
.hero-slider {
    position: relative;
}
.hero-slider .carousel-item {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.85) 0%, rgba(26, 22, 20, 0.55) 50%, rgba(26, 22, 20, 0.85) 100%);
}
.hero-slider .carousel-caption {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}
.hero-slider .carousel-caption .hero-content {
    max-width: 800px;
    padding-top: 60px;
}
.hero-slider .hero-label {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}
.hero-slider .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--text-light);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-slider .hero-title span {
    color: var(--accent);
    font-style: italic;
}
.hero-slider .hero-text {
    font-size: 1.15rem;
    color: rgba(245, 242, 239, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-slider .carousel-indicators {
    bottom: 30px;
}
.hero-slider .carousel-indicators button {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: rgba(245, 242, 239, 0.5);
    border: none;
    transition: var(--transition);
}
.hero-slider .carousel-indicators button.active {
    background: var(--accent);
    width: 60px;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 22, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}
.hero-slider .carousel-control-prev {
    left: 30px;
}
.hero-slider .carousel-control-next {
    right: 30px;
}
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0 80px;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.85) 0%, rgba(26, 22, 20, 0.6) 100%);
}
.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.page-hero h1 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
}
.page-hero .breadcrumb {
    background: transparent;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}
.page-hero .breadcrumb a {
    color: var(--accent);
    font-weight: 500;
}
.page-hero .breadcrumb a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}
.page-hero .breadcrumb .separator {
    color: rgba(245, 242, 239, 0.5);
}
.page-hero .breadcrumb .current {
    color: var(--text-light);
}
.feature-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-box:hover::before {
    transform: scaleX(1);
}
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-box .feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}
.feature-box h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.feature-box p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
}
.about-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.about-card .about-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.about-card h4 {
    margin-bottom: 0.75rem;
}
.about-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.portfolio-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    background: var(--bg-dark);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover img {
    transform: scale(1.08);
}
.portfolio-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.9) 0%, rgba(26, 22, 20, 0.2) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-item .portfolio-overlay h5 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}
.portfolio-item .portfolio-overlay p {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 0;
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    display: block;
}
.stat-label {
    font-size: 1rem;
    color: rgba(245, 242, 239, 0.8);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}
.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #f0a860;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-author .author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.testimonial-author .author-position {
    font-size: 0.85rem;
    color: var(--text-body);
}
.process-step {
    position: relative;
    padding-left: 90px;
    padding-bottom: 2.5rem;
}
.process-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}
.process-step:last-child::before {
    display: none;
}
.process-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(196, 155, 106, 0.3);
}
.process-step h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.process-step p {
    color: rgba(245, 242, 239, 0.75);
    margin-bottom: 0;
    line-height: 1.6;
}
.service-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 155, 106, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--text-dark);
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}
.service-card .service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-dark);
}
.service-card .service-link i {
    transition: transform 0.3s;
}
.service-card .service-link:hover i {
    transform: translateX(5px);
}
.team-card {
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.team-card .team-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-card:hover .team-photo img {
    transform: scale(1.05);
}
.team-card .team-info {
    padding: 1.5rem;
    text-align: center;
}
.team-card .team-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.team-card .team-info p {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.team-card .team-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}
.team-card .team-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 0.85rem;
    transition: var(--transition);
}
.team-card .team-socials a:hover {
    background: var(--accent);
    color: var(--text-dark);
}
.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(196, 155, 106, 0.15);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.pricing-card .plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 1.25rem;
    border-radius: 50rem;
    white-space: nowrap;
}
.pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.pricing-card .plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.pricing-card .plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-body);
}
.pricing-card .plan-period {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}
.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.pricing-card .plan-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.pricing-card .plan-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}
.pricing-card .plan-features li.disabled {
    color: #aaa;
    text-decoration: line-through;
}
.pricing-card .plan-features li.disabled i {
    color: #ccc;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.contact-info-item .contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(196, 155, 106, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.5;
}
.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}
.form-control::placeholder {
    color: #aaa;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(196, 155, 106, 0.2);
    background: var(--bg-white);
    color: var(--text-dark);
}
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.contact-wrapper {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 0;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.92) 0%, rgba(26, 22, 20, 0.75) 100%);
}
.cta-section .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
}
.cta-section .cta-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}
.cta-section .cta-text {
    color: rgba(245, 242, 239, 0.85);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2rem;
}
.clients-carousel {
    padding: 2rem 0;
}
.client-logo {
    text-align: center;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}
.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.client-logo img {
    max-height: 70px;
    width: auto;
}
.blog-card {
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.blog-card .blog-photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.blog-card .blog-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-photo img {
    transform: scale(1.05);
}
.blog-card .blog-body {
    padding: 1.75rem;
}
.blog-card .blog-meta {
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.blog-card .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.blog-card .blog-meta i {
    color: var(--accent);
}
.blog-card h4 a {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.4;
}
.blog-card h4 a:hover {
    color: var(--accent);
}
.blog-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}
.blog-card .blog-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-dark);
}
.blog-card .blog-link:hover {
    color: var(--accent);
}
.faq-accordion .accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-item:first-of-type,
.faq-accordion .accordion-item:last-of-type {
    border-radius: 14px !important;
}
.faq-accordion .accordion-button {
    background: transparent;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: var(--transition);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(196, 155, 106, 0.05);
    color: var(--accent-dark);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    background-image: none;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f078';
    font-size: 0.8rem;
    color: var(--accent);
    transition: var(--transition);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--accent-dark);
}
.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-body);
    font-size: 0.95rem;
}
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding-top: 80px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.site-footer h5 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.site-footer p {
    font-size: 0.9rem;
    color: rgba(245, 242, 239, 0.7);
    line-height: 1.6;
}
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .footer-links li {
    margin-bottom: 0.6rem;
}
.site-footer .footer-links a {
    color: rgba(245, 242, 239, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.site-footer .footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.site-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(245, 242, 239, 0.7);
}
.site-footer .footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    margin-top: 40px;
}
.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(245, 242, 239, 0.6);
    text-align: center;
}
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(196, 155, 106, 0.35);
    font-size: 1rem;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(196, 155, 106, 0.45);
}
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 860px;
    width: calc(100% - 48px);
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-consent.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
    pointer-events: none;
}
.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(245, 242, 239, 0.85);
    line-height: 1.5;
}
.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.btn-cc-accept {
    background: var(--accent);
    color: var(--text-dark);
    border: 2px solid var(--accent);
    border-radius: 50rem;
    padding: 0.45rem 1.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-cc-accept:hover {
    background: transparent;
    color: var(--accent);
}
.btn-cc-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50rem;
    padding: 0.45rem 1.75rem;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-cc-decline:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}
.page-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: var(--bg-white);
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 320px;
    max-width: 450px;
    border-left: 5px solid var(--accent);
}
.page-notification.show {
    transform: translateX(0);
}
.page-notification.success {
    border-left-color: #28a745;
}
.page-notification.error {
    border-left-color: #dc3545;
}
.page-notification i {
    font-size: 1.5rem;
    color: var(--accent);
}
.page-notification.success i {
    color: #28a745;
}
.page-notification.error i {
    color: #dc3545;
}
.page-notification span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}
.legal-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}
.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}
.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content li {
    margin-bottom: 0.4rem;
}
.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}
.pagination {
    gap: 0.5rem;
}
.pagination .page-link {
    border: none;
    border-radius: 10px !important;
    color: var(--text-body);
    padding: 0.6rem 1rem;
    font-weight: 500;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin: 0 2px;
}
.pagination .page-link:hover {
    background: var(--accent);
    color: var(--text-dark);
}
.pagination .page-item.active .page-link {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--bg-dark);
}
.gallery-item.portrait {
    aspect-ratio: 3 / 4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item .gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
}
.gallery-item .gallery-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
}
.decorative-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto 1rem;
}
.decorative-divider.left {
    margin: 0 0 1rem;
}
.bg-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
}
.bg-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 20, 0.85) 0%, rgba(26, 22, 20, 0.6) 100%);
}
.bg-overlay .overlay-content {
    position: relative;
    z-index: 1;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
#preloader .loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}
#preloader .loader-logo span {
    color: var(--accent);
}
@media (max-width: 1199.98px) {
    .portfolio-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    .site-header .navbar-collapse {
        background: rgba(26, 22, 20, 0.98);
        padding: 1.5rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    .site-header .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.6rem 0.75rem;
        border-radius: 8px;
    }
    .site-header .navbar-nav .nav-link:hover {
        background: rgba(196, 155, 106, 0.1);
    }
    .hero-slider .carousel-item {
        min-height: 90vh;
    }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-section .cta-content {
        padding: 60px 0;
    }
}
@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .hero-slider .carousel-item {
        min-height: 75vh;
    }
    .hero-slider .hero-title {
        font-size: 2.2rem;
    }
    .hero-slider .hero-text {
        font-size: 1rem;
    }
    .portfolio-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 12px;
    }
    .cookie-consent-actions {
        justify-content: center;
    }
    .page-notification {
        min-width: 0;
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .legal-content {
        padding: 1.5rem;
    }
    .contact-wrapper {
        margin-top: 2rem;
    }
    .map-container {
        height: 350px;
    }
    .process-step {
        padding-left: 70px;
    }
    .process-step::before {
        left: 30px;
    }
    .process-step .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
@media (max-width: 575.98px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }
    .hero-slider .carousel-caption {
        padding: 0 1rem;
    }
    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    .site-header .navbar-brand {
        font-size: 1.4rem;
    }
}
