@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --emerald-primary: #10B981;
    --emerald-dark: #059669;
    --electric-orange: #F97316;
    --orange-dark: #EA580C;
    --charcoal-dark: #1F2937;
    --charcoal-light: #374151;
    --off-white: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #111827;
    --text-light: #F3F4F6;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

strong, p {
    color: inherit;
}

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

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


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-light) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--emerald-primary);
    border-radius: 1rem;
    opacity: 0.5;
    transform: translate(15px, 15px);
    z-index: -1;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--emerald-primary);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--electric-orange);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 52px;
}

.btn-secondary:hover {
    background: var(--electric-orange);
    color: var(--white);
}

.btn-orange {
    background: var(--electric-orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--orange-dark);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}


.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--charcoal-dark);
    color: var(--white);
}

.section-dark h2 {
    color: var(--white);
}

.section-dark p {
    /* color: var(--text-light); */
}

.section-accent {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: var(--white);
}

.section-accent h2 {
    color: var(--white);
}

.section-accent p {
    /* color: rgba(255, 255, 255, 0.9); */
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-dark .section-subtitle {
    color: var(--text-light);
}

.section-accent .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--emerald-primary);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.section-divider.orange {
    background: var(--electric-orange);
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.glass-card h4,
.glass-card p {
    color: var(--text-dark);
}

.section-dark .glass-card,
.section-dark .glass-card h4,
.section-dark .glass-card p {
    color: var(--white) !important;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--emerald-primary);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-icon-wrapper.orange {
    background: linear-gradient(135deg, var(--electric-orange) 0%, var(--orange-dark) 100%);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald-primary);
    margin: 1rem 0;
    font-family: 'Rajdhani', sans-serif;
}

.service-price-label {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-weight: 400;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--emerald-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal-dark);
}

.feature-content p {
    color: var(--charcoal-light);
}


.team-card {
    text-align: center;
    padding: 2rem;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--emerald-primary);
    overflow: hidden;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal-dark);
}

.team-role {
    color: var(--emerald-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--charcoal-dark);
    font-size: 0.95rem;
}


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

.review-stars {
    color: var(--electric-orange);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text {
    font-style: italic;
    color: var(--charcoal-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    color: var(--charcoal-dark);
}

.review-location {
    font-size: 0.9rem;
    color: var(--charcoal-dark);
}


.contact-form-wrapper {
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--charcoal-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--text-dark);
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--emerald-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}


.map-container {
    border-radius: 1rem;
    overflow: hidden;
    height: 400px;
    border: 2px solid #E5E7EB;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.site-footer {
    background: var(--charcoal-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--emerald-primary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}


.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--charcoal-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: block;
}

.cookie-consent-banner h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-consent-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-btn-accept {
    background: var(--emerald-primary);
    color: var(--white);
}

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

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

.cookie-btn-decline:hover {
    border-color: var(--white);
}


.navbar {
    background: var(--charcoal-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-brand span {
    color: var(--emerald-primary);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-link:hover,
.navbar-link.is-active {
    color: var(--emerald-primary);
    background:none;
}

.navbar-burger {
    display: none;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}


@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal-dark);
        padding: 1rem;
        flex-direction: column;
    }

    .navbar-menu.is-active {
        display: flex;
    }

    .navbar-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .navbar-burger {
        display: block;
    }

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

    .navbar-burger.is-active span:nth-child(2) {
        opacity: 0;
    }

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


.page-header {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-light) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}


.faq-item {
    background: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    color: var(--text-dark);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.faq-question:hover {
    color: var(--emerald-primary);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--emerald-primary);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--charcoal-light);
    line-height: 1.8;
}


.service-detail-header {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-light) 100%);
    padding: 4rem 0;
    color: var(--white);
}

.service-detail-content {
    padding: 4rem 0;
}

.service-process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.process-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--emerald-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal-dark);
}

.process-content p {
    color: var(--charcoal-light);
}


.cta-section {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

@media screen and (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}


.has-text-emerald {
    color: var(--emerald-primary);
}

.has-text-orange {
    color: var(--electric-orange);
}

.has-background-emerald {
    background-color: var(--emerald-primary);
}

.has-background-charcoal {
    background-color: var(--charcoal-dark);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }


@media screen and (min-width: 769px) {
    .is-hidden-mobile {
        display: none !important;
    }
}


@media screen and (max-width: 768px) {
    .is-hidden-desktop {
        display: none !important;
    }
}
