:root {
    --primary: #c2481e;
    --primary-dark: #a33a18;
    --primary-light: #d85a2e;
    --accent: #0f4c5c;
    --accent-dark: #083238;
    --accent-light: #16697a;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #1a1a2e;
    --font-heading: "Inter",system-ui,-apple-system,sans-serif;
    --font-body: "Inter",system-ui,-apple-system,sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.25);
    --radius-sm: .25rem;
    --radius-md: .5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: .3s cubic-bezier(.4,0,.2,1)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--primary-dark)
}

.btn {
    font-weight: 600;
    padding: .75rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: .875rem
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.btn-primary:hover,.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary)
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px)
}

.btn-light {
    background: #fff;
    color: var(--dark)
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.bg-primary {
    background: var(--primary)!important
}

.bg-dark {
    background: var(--dark)!important
}

.bg-accent {
    background: var(--accent)!important
}

.bg-darker {
    background: var(--darker)!important
}

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

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

.text-light-muted {
    color: rgba(255,255,255,.7)!important
}

.section-padding {
    padding: 5rem 0
}

@media(max-width: 768px) {
    .section-padding {
        padding:3rem 0
    }
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: .75rem;
    color: var(--gray-900)
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2.5rem
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    background-color: #1a1a1a
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.4) 100%);
    z-index: 1
}

.hero-section>* {
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,.85);
    max-width: 550px;
    margin: 1.5rem 0 2rem
}

.overlay-section {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    background-color: #1a1a1a
}

.overlay-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,.5) 100%);
    z-index: -1
}

.card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
    box-shadow: var(--shadow-sm)
}

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

.card-img-top {
    height: 240px;
    object-fit: cover
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm)
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light)
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: .75rem
}

.service-card p {
    color: var(--gray-600);
    font-size: .95rem
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    position: relative;
    box-shadow: var(--shadow-sm)
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: .3;
    position: absolute;
    top: 1.25rem;
    left: 1.5rem
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-600);
    margin: 1rem 0 .75rem
}

.carousel-control-prev,.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: .9;
    box-shadow: var(--shadow-md)
}

.carousel-control-prev {
    left: 1rem
}

.carousel-control-next {
    right: 1rem
}

.carousel-control-prev:hover,.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-dark)
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
    border: none
}

.carousel-indicators .active {
    background: var(--primary);
    width: 14px;
    height: 14px
}

.badge {
    font-weight: 600;
    padding: .35em .65em;
    border-radius: var(--radius-sm)
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: .75rem;
    overflow: hidden;
    transition: var(--transition)
}

.faq-item .faq-question {
    background: #fff;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: var(--gray-800)
}

.faq-item .faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: var(--transition);
    color: var(--primary)
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg)
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600)
}

.footer {
    background: var(--darker);
    color: rgba(255,255,255,.8);
    padding: 4rem 0 2rem
}

.footer a {
    color: rgba(255,255,255,.7)
}

.footer a:hover {
    color: var(--primary-light)
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem
}

.footer .list-unstyled li {
    margin-bottom: .5rem
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.125rem;
    transition: var(--transition);
    margin-right: .5rem
}

.footer .social-links a:hover {
    background: var(--primary)
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: .875rem
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block
}

.notification {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    max-width: 400px;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    gap: 1rem
}

.notification.show {
    transform: translateX(0)
}

.notification.success {
    border-left: 4px solid #28a745
}

.notification.error {
    border-left: 4px solid #dc3545
}

.notification .icon {
    font-size: 1.75rem
}

.notification .text {
    font-size: .95rem;
    color: var(--gray-700)
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 480px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem 2rem;
    z-index: 9998;
    display: none;
    animation: slideUp .4s ease
}

.cookie-banner.show {
    display: block
}

.cookie-banner p {
    font-size: .9rem;
    color: var(--gray-600);
    margin-bottom: 1rem
}

.cookie-banner .btn {
    padding: .5rem 1.5rem;
    font-size: .8rem
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.animated-border {
    position: relative
}

.animated-border::after {
    content: "";
    position: absolute;
    bottom: -.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px
}

.stat-item {
    text-align: center
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1
}

.stat-item .label {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: .5rem
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.process-step .step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 3rem
}

.process-step .step-content h4 {
    font-size: 1.125rem;
    margin-bottom: .25rem
}

.process-step .step-content p {
    color: var(--gray-600);
    font-size: .9rem
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

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

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem
}

.team-card h5 {
    margin-bottom: .25rem
}

.team-card span {
    color: var(--gray-500);
    font-size: .875rem
}

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

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition)
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600
}

.gallery-item:hover .overlay {
    opacity: 1
}

.page-header {
    background: var(--dark);
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.5) 100%);
    z-index: 1
}

.page-header>* {
    position: relative;
    z-index: 2
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,.7)
}

.page-header .breadcrumb-item.active {
    color: var(--primary-light)
}

@media(max-width: 768px) {
    .hero-title {
        font-size:2.5rem
    }

    .section-title {
        font-size: 2rem
    }

    .page-header h1 {
        font-size: 2.25rem
    }

    .stat-item .number {
        font-size: 2.5rem
    }

    .carousel-control-prev,.carousel-control-next {
        width: 2.5rem;
        height: 2.5rem
    }
}

[data-aos] {
    pointer-events: none
}

[data-aos].aos-animate {
    pointer-events: auto
}
