@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2d2d2d;
    --color-electric-blue: #00d4ff;
    --color-electric-blue-dark: #009acb;
    --color-copper: #c9a66b;
    --color-copper-dark: #a88542;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-text-dark: #1a1a1a;
    --color-text-light: #f8f9fa;
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --radius-card: 12px;
    --radius-button: 6px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--color-off-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}


header {
    background-color: var(--color-charcoal);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--color-electric-blue);
}

.nav-link {
    color: var(--color-off-white) !important;
    font-weight: 600;
    margin-left: 1.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-electric-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}


.btn-primary-custom {
    background-color: var(--color-electric-blue);
    color: var(--color-charcoal);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--color-electric-blue-dark);
    transform: translateY(-2px);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--color-electric-blue);
    border: 2px solid var(--color-electric-blue);
    padding: 10px 28px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--color-electric-blue);
    color: var(--color-charcoal);
}


.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.7)),
                url('../assets/img/hero-bg.webp') no-repeat center center/cover;
    color: var(--color-white);
    text-align: center;
    padding: 4rem 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--color-electric-blue);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--color-electric-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.card-custom {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-glass);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--color-copper);
}

.card-custom:hover {
    transform: translateY(-5px);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-electric-blue);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-copper);
    margin: 1rem 0;
}


.team-card {
    text-align: center;
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-electric-blue);
}

.team-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--color-copper);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}


.review-card {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-card);
    position: relative;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-electric-blue);
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    margin-bottom: 1.5rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


.form-control-custom {
    border: 2px solid #ddd;
    padding: 12px 15px;
    border-radius: var(--radius-button);
    width: 100%;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--color-electric-blue);
    outline: none;
}


footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-electric-blue);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--color-electric-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 400px;
    border-left: 4px solid var(--color-electric-blue);
    display: block;
}

.cookie-content {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-electric-blue);
    color: var(--color-charcoal);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
}


.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: var(--color-white);
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--color-off-white);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--color-electric-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background: var(--color-off-white);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}


.badge-custom {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 212, 255, 0.1);
    color: var(--color-electric-blue-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}


.text-copper { color: var(--color-copper); }
.bg-charcoal { background-color: var(--color-charcoal); }
.bg-electric-blue { background-color: var(--color-electric-blue); }


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

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

    .navbar-collapse {
        background-color: var(--color-charcoal);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-card);
    }

    .nav-link {
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
}


strong, p {
    color: inherit;
}


@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.btn-primary-custom {
    animation: pulse-blue 2s infinite;
}


.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 2rem;
}


.text-electric-blue { color: var(--color-electric-blue); }
.text-charcoal { color: var(--color-charcoal); }
.text-copper { color: var(--color-copper); }
.text-danger { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-info { color: #0dcaf0; }
.text-secondary { color: #6c757d; }
.text-success { color: #198754; }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }


.bg-electric-blue { background-color: var(--color-electric-blue); }
.bg-copper { background-color: var(--color-copper); }
.bg-danger { background-color: #dc3545; }
.bg-warning { background-color: #ffc107; }
.bg-info { background-color: #0dcaf0; }
.bg-secondary { background-color: #6c757d; }
.bg-success { background-color: #198754; }


.border-copper { border-color: var(--color-copper); }
.border-electric-blue { border-color: var(--color-electric-blue); }
.border-danger { border-color: #dc3545; }
.border-warning { border-color: #ffc107; }
.border-info { border-color: #0dcaf0; }
.border-secondary { border-color: #6c757d; }
.border-success { border-color: #198754; }
