/* ========== MODERN CONSTRUCTION & ECO PALETTE ========== */
:root {
    --primary: #1a1e21;
    --primary-light: #2d3338;
    --accent: #76bd22;
    --accent-dark: #5fa310;
    --accent-glow: rgba(118, 189, 34, 0.15);
    --bg-light: #f4f4f4;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --border-light: #ebebeb;
    --gray: #6b7280;
    --gray-dark: #4b5563;
    --text: #1a1e21;
    --white: #ffffff;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Manrope', -apple-system, sans-serif;

    --shadow-hard: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-accent: 0 4px 20px rgba(118, 189, 34, 0.25);

    --radius: 2px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
}

.nav.scrolled .logo {
    color: var(--primary);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
    letter-spacing: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

.nav-cta:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.nav.scrolled .mobile-toggle span {
    background: var(--primary);
}

/* ========== HERO - MODERN CONSTRUCTION ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--white);
    max-width: 800px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    line-height: 1.05;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* ========== TRUST BAR - LIGHT STYLE ========== */
.trust-bar {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Strong shadow for visibility */
    position: relative;
    z-index: 10;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-stats {
    display: flex;
    gap: 4rem;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(118, 189, 34, 0.15);
    border: 1px solid rgba(118, 189, 34, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.trust-stat-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    /* Dark text for light bg */
    line-height: 1.1;
    letter-spacing: 1px;
}

.trust-stat-content span {
    font-size: 0.8125rem;
    color: var(--text-light);
    /* Darker gray for readability */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-logos span {
    font-size: 0.75rem;
    color: var(--text-light);
    /* Readable on white */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Unused class but kept just in case, updated for light theme */
.partner-logo {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== SECTIONS COMMON ========== */
section {
    padding: 6rem 2rem;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.section-label::before {
    right: 100%;
}

.section-label::after {
    left: 100%;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* ========== SERVICES - GRID WITH BORDERS ========== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(4n) {
    border-right: 1px solid var(--border);
}

.service-card:nth-child(3n) {
    border-right: none;
}

.service-card:nth-last-child(-n+3) {
    border-bottom: none;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    pointer-events: none;
}

.service-card:hover {
    background: var(--accent-glow);
}

.service-card:hover::before {
    border-color: var(--accent);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========== PROCESS ========== */
.process {
    background: var(--bg-white);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 55px;
    right: 0;
    width: calc(100% - 100px);
    height: 2px;
    background: var(--border);
    transform: translateX(50%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    z-index: 2;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.process-step:hover .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.process-step h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

/* ========== PORTFOLIO ========== */
.portfolio {
    background: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 30, 33, 0.95) 0%, rgba(26, 30, 33, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

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

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    transform: translateY(15px);
    transition: transform 0.4s 0.1s;
}

.portfolio-overlay span {
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(15px);
    transition: transform 0.4s 0.15s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.testimonial-card {
    padding: 2.5rem;
    border-right: 1px solid var(--border);
    position: relative;
}

.testimonial-card:last-child {
    border-right: none;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author-info strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9375rem;
}

.testimonial-author-info span {
    font-size: 0.8125rem;
    color: var(--gray);
}

/* ========== CONTACT ========== */
.contact {
    background: var(--bg-white);
}

.contact-centered-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-centered-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-centered-header p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-phone-centered {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: var(--primary);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    transition: transform 0.3s;
}

.contact-phone-centered:hover {
    transform: translateY(-2px);
}

.contact-phone-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-phone-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
    display: block;
}

.contact-phone-number {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.contact-divider-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 800px;
}

.contact-divider-center::before,
.contact-divider-center::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.contact-divider-center span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-form-wrapper.centered-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.375rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form>p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s;
    color: var(--text);
}

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

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

/* Button status states */
.form-submit {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit.btn-sending {
    opacity: 0.85;
    pointer-events: none;
}

.form-submit.btn-success {
    background: #22c55e !important;
    border-color: #22c55e !important;
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.form-submit.btn-error {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    animation: btnShake 0.5s ease;
}

@keyframes btnShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========== MAP ========== */
.map-section {
    height: 350px;
    background: var(--bg-light);
    position: relative;
    border-top: 1px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* filter: grayscale(100%) contrast(1.1); REMOVED - Map should be colored */
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    padding: 4rem 2rem 2rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-column h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ========== GDPR COOKIE BAR ========== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 2px solid var(--accent);
    flex-wrap: wrap;
}

.cookie-bar.show {
    display: flex;
}

.cookie-bar p {
    font-size: 0.875rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-bar a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

/* ========== GDPR MODAL ========== */
.gdpr-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gdpr-modal-content {
    background: var(--bg-white);
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
}

.gdpr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.gdpr-modal-close:hover {
    color: var(--primary);
}

.gdpr-modal h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.gdpr-modal h3 {
    font-size: 1rem;
    color: var(--primary);
    margin: 1.5rem 0 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.gdpr-modal p,
.gdpr-modal li {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.gdpr-modal ul {
    margin-left: 1.25rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .cookie-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        bottom: 80px;
        /* Above mobile sticky bar */
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .gdpr-modal-content {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ========== MOBILE STICKY CALL BAR ========== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 0.875rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-top: 1px solid var(--border);
}

.mobile-sticky-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-sticky-bar a:hover,
.mobile-sticky-bar a:active {
    background: var(--accent-dark);
}

.mobile-sticky-bar svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
/* Navigation & Mobile - 1200px breakpoint */
@media (max-width: 1200px) {
    .nav {
        padding: 1rem;
    }

    .nav.scrolled {
        padding: 0.75rem 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text);
        font-size: 0.875rem;
    }

    .nav-cta {
        text-align: center;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }
}

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

    .service-card:nth-child(2n) {
        border-right: none;
    }

    .service-card:nth-child(4n) {
        border-right: 1px solid var(--border);
    }

    .service-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

    .process-step:not(:last-child)::after {
        display: none;
    }

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

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

    .testimonial-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .testimonial-card:last-child {
        border-bottom: none;
    }

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

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

@media (max-width: 768px) {

    /* Trust Bar Mobile */
    /* Trust Bar Mobile */
    /* Trust Bar Mobile */
    .trust-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        margin: 0;
        padding: 0 0.5rem;
    }

    .trust-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .trust-stat-icon {
        display: none;
    }

    .trust-stat-content strong {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
        display: block;
    }

    .trust-stat-content span {
        font-size: 0.75rem;
        line-height: 1.2;
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 6rem 1.25rem 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Trust Bar */
    .trust-bar {
        padding: 2rem 1rem;
    }

    .trust-container {
        flex-direction: column;
        text-align: center;
    }



    .trust-logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Sections */
    section {
        padding: 3.5rem 1.25rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-label::before,
    .section-label::after {
        display: none;
    }

    /* Services */
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 1rem;
    }

    .service-card {
        border: 1px solid var(--border) !important;
        margin-bottom: 0;
        padding: 1.5rem;
        display: grid;
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
        column-gap: 1.5rem;
        align-items: start;
        text-align: left;
    }

    .service-icon {
        grid-row: 1 / span 2;
        grid-column: 1;
        margin-bottom: 0;
        width: 72px;
        height: 72px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0.25rem;
        font-size: 1.125rem;
        display: block;
        align-self: flex-start;
        margin-top: -4px;
        line-height: 1.2;
    }

    .service-card p {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service-card:last-child {
        margin-bottom: 0;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1rem 0;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26, 30, 33, 0.9) 0%, rgba(26, 30, 33, 0) 30%);
    }

    .portfolio-overlay h3,
    .portfolio-overlay span {
        transform: translateY(0);
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 0;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    /* Contact */
    .contact-phone-centered {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .contact-phone-text {
        letter-spacing: 1px;
    }

    .contact-phone-number {
        font-size: 1.5rem;
    }

    .contact-form-wrapper.centered-form {
        padding: 1.5rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-centered-header h2 {
        font-size: 1.75rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-profile-img {
        width: 120px;
        height: 120px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    /* Map */
    .map-section {
        height: 250px;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.8125rem;
    }

    .trust-stat-content strong {
        font-size: 1.5rem;
    }
}



/* ========== FAQ SECTION ========== */
.faq {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}



.faq-question {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    /* Add padding-right for absolute icon */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 80px;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    transform: translateY(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Active State Styling */
.faq-item.active {
    background: rgba(118, 189, 34, 0.08);
    /* Light green tint */
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(118, 189, 34, 0.2);
}

.faq-item.active .faq-question {
    justify-content: flex-start;
    text-align: left;
    color: var(--primary);
}

.faq-item.active .faq-answer p {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Increased to fit content */
}

/* ========== IMPROVED COOKIE BAR ========== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-bar p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 800px;
}

.cookie-bar a {
    color: var(--highlight);
    text-decoration: underline;
}

.cookie-bar a:hover {
    color: var(--white);
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

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

.cookie-btn-accept:hover {
    background-color: #65a31d;
}

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

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ========== ENHANCED GDPR MODAL ========== */
.gdpr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gdpr-modal-content {
    background-color: var(--white);
    padding: 0;
    border-radius: 8px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.gdpr-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.gdpr-header h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.gdpr-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.gdpr-body {
    padding: 2rem;
    overflow-y: auto;
}

.gdpr-body h3 {
    font-size: 1.1rem;
    color: var(--primary-light);
    margin: 1.5rem 0 0.75rem;
    border-left: 3px solid var(--highlight);
    padding-left: 0.75rem;
}

.gdpr-body h3:first-child {
    margin-top: 0;
}

.gdpr-body p,
.gdpr-body ul {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.gdpr-body ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.gdpr-body li {
    margin-bottom: 0.5rem;
}

.gdpr-footer {
    padding: 1.5rem 2rem;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: right;
}

.gdpr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    line-height: 1;
}

.gdpr-modal-close:hover {
    color: var(--primary);
}

/* ========== TOUCH DEVICE OPTIMIZATIONS ========== */
@media (hover: none) {
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26, 30, 33, 0.9) 0%, rgba(26, 30, 33, 0) 30%);
    }

    .portfolio-overlay h3,
    .portfolio-overlay span {
        transform: translateY(0);
    }
}

/* ========== FOOTER ATTRIBUTION ========== */
.footer-attribution {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-attribution {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
    }
}

.footer-attribution a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-attribution a:hover {
    opacity: 1;
    text-decoration: underline;
}