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

:root {
    /* Brand Colors */
    --accent: #7ed121;
    --accent-bright: #91d63e;
    --accent-dark: #6ab81a;
    --orange: #ff9500;
    --orange-bright: #ffb000;

    /* Backgrounds */
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #0a1620;
    --card: #1f2b39;

    /* Text Colors */
    --text: #1f2a36;
    --text-inverse: #f6f8fb;
    --muted: #6e7a88;
    --muted-inverse: #c6d0db;

    /* Borders & Elements */
    --border: #2c3b4f;
    --border-light: #e5e7eb;

    /* Semantic Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow: var(--shadow-lg);

    /* Spacing & Sizing */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --max-width: 1240px;

    /* Transitions */
    --transition: 250ms ease;
    --transition-fast: 150ms ease;
    --transition-slow: 500ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
    position: relative;
}

.section-header {
    margin-bottom: 42px;
}

.section-header h2 {
    margin: 0 0 12px;
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

.section-header p {
    margin: 0;
    color: var(--muted);
}

.section-underline {
    display: inline-block;
    width: 64px;
    height: 4px;
    background: var(--accent);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-accent {
    background: var(--accent);
    color: #1c2531;
    box-shadow: 0 14px 30px rgba(126, 211, 33, 0.35);
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-bright);
    box-shadow: 0 18px 40px rgba(126, 211, 33, 0.45);
    color: #1A202C;
}

.btn-accent:active {
    background: var(--accent-dark);
    box-shadow: 0 8px 20px rgba(126, 211, 33, 0.25);
}

.btn-ghost {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(126, 211, 33, 0.1);
}

.btn-secondary {
    background: var(--orange);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 149, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--orange-bright);
    box-shadow: 0 18px 40px rgba(255, 149, 0, 0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
    min-width: 200px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(35, 47, 63, 0.98);
    border-bottom: 1px solid rgba(143, 190, 62, 0.2);
    backdrop-filter: blur(16px);
    color: var(--text-inverse);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    position: relative;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-right: 12px;
}

.logo-mark {
    width: auto;
    height: 72px;
    display: block;
}

/* Removed logo-text styles */

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8899a6;
    /* Muted Grey */
}

.lang-sep {
    color: #555;
    margin: 0 2px;
}

.lang-link {
    color: #667788;
    text-decoration: none;
    transition: color 0.2s;
}

.lang-link:hover {
    color: #ffffff;
}

.lang-link.is-active {
    color: #ffffff;
    /* White for Active */
    font-weight: 700;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu a {
    color: var(--text-inverse);
    font-weight: 500;
    position: relative;
}

.main-nav .menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.main-nav .menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-inverse);
    gap: 4px;
    align-items: center;
    cursor: pointer;
}

.menu-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--accent);
    display: block;
    border-radius: 999px;
}

.menu-toggle-label {
    margin-left: 8px;
    font-size: 0.85rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(17, 24, 33, 0.78) 0%, rgba(17, 24, 33, 0.55) 55%, rgba(17, 24, 33, 0.32) 100%),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-inverse);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 680px;
    padding: 32px 36px;
    background: transparent;
    border-radius: 20px;
    border: none;
    box-shadow: none;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--accent);
    margin: 0 0 16px;
}

.hero h1 {
    font-size: 3.4rem;
    margin: 0 0 16px;
    white-space: nowrap;
}

.hero-subtitle {
    color: var(--muted-inverse);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.services-section {
    background: var(--bg-alt);
}

.services-section .section-header {
    text-align: center;
}

.services-section .section-underline {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 250px;
    transition: transform var(--transition), box-shadow var(--transition);
    color: var(--text-inverse);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
    margin: 0;
    color: var(--accent);
    font-size: 1.4rem;
}

.stats-section {
    background: linear-gradient(90deg, #1f2b39 0%, #2f3c38 45%, #8bbf3f 100%);
    color: var(--text-inverse);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    background: transparent;
    border: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--text-inverse);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-section {
    background: var(--bg-alt);
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: var(--card);
    overflow: hidden;
    color: var(--text-inverse);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition);
}

.faq-icon::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 18px;
    top: 0;
    left: 8px;
}

.faq-item.is-open .faq-icon::after {
    transform: scaleY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--muted-inverse);
    transition: max-height var(--transition), padding var(--transition);
}

.faq-item.is-open .faq-answer {
    padding: 0 20px 18px;
}

.inquiry-section {
    background: var(--bg-alt);
}

.inquiry-form {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    color: var(--text-inverse);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-wide {
    grid-column: span 2;
}

label {
    color: var(--accent);
    font-size: 0.9rem;
}

input,
select,
textarea {
    background: #2a3646;
    border: 1px solid #344255;
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-inverse);
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    background: #ffffff !important;
    color: #1c2531 !important;
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(126, 211, 33, 0.2);
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
}

.form-message.success {
    background: rgba(126, 211, 33, 0.16);
    border: 1px solid rgba(126, 211, 33, 0.4);
    color: var(--accent);
}

.form-message.error {
    background: rgba(219, 77, 77, 0.15);
    border: 1px solid rgba(219, 77, 77, 0.4);
    color: #ff6b6b;
}

.btn-submit {
    margin-top: 24px;
}

.contact-section {
    position: relative;
    padding: 96px 0 70px;
    background: url('../images/map-europe.svg') center/cover no-repeat;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 28, 0.7);
}

.contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    color: var(--text-inverse);
}

.contact-col h2,
.contact-col h3 {
    margin-top: 0;
}

.contact-address,
.contact-email,
.contact-people p {
    color: var(--muted-inverse);
    margin: 0 0 12px;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(126, 211, 33, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.site-footer {
    background: #111823;
    padding: 60px 0 24px;
    color: var(--text-inverse);
}

.footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: var(--accent);
    margin: 0 0 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted-inverse);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-company {
    max-width: 600px;
}

.footer-team {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-person a {
    color: var(--muted-inverse);
    font-size: 0.9rem;
}

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

.footer-person span {
    color: var(--muted-inverse);
    font-size: 0.85rem;
}

.footer-person em {
    color: var(--accent);
    font-style: normal;
    font-weight: 500;
}

.footer-address {
    color: var(--muted-inverse);
    font-size: 0.9rem;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address strong {
    color: var(--text-inverse);
}

.footer-bottom {
    text-align: center;
    color: var(--muted-inverse);
    font-size: 0.85rem;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.page-hero {
    padding: 96px 0 50px;
}

.page-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.service-detail-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-detail-reverse .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-reverse .service-detail-text {
    order: 2;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
}

.checklist li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.alt-section {
    background: #1f2b39;
    color: var(--text-inverse);
}

.alt-section .checklist li {
    color: var(--muted-inverse);
}

.about-hero {
    padding-top: 80px;
}

.slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider-track {
    position: relative;
}

.slide {
    display: none;
}

.slide.is-active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 22, 34, 0.7);
    border: 1px solid rgba(126, 211, 33, 0.4);
    color: var(--accent);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-btn-prev {
    left: 16px;
}

.slider-btn-next {
    right: 16px;
}

.about-content .about-block {
    margin-bottom: 32px;
}

.highlight-block {
    background: rgba(126, 211, 33, 0.1);
    border: 1px solid rgba(126, 211, 33, 0.4);
    padding: 20px 24px;
    border-radius: 16px;
    font-weight: 700;
}

.request-steps {
    text-align: center;
}

.step-badges {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.step-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(126, 211, 33, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text);
}

.step-circle-accent {
    background: rgba(126, 211, 33, 0.2);
    color: var(--accent);
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent);
}

.step-note {
    color: var(--muted);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.contact-page-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--radius);
}

.post-grid {
    display: grid;
    gap: 20px;
}

.post-card {
    background: var(--card);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--border);
    color: var(--text-inverse);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.1);
    background-color: var(--bg-alt);
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 4px;
}

input[type="text"].error,
input[type="email"].error,
textarea.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-success {
    color: var(--success);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Card Styles */
.card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.card-dark {
    background: var(--card);
    border-color: var(--border);
    color: var(--text-inverse);
}

/* Typography Utilities */
.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--muted);
}

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

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

/* Divider */
hr,
.divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 24px 0;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--transition-slow) ease, transform var(--transition-slow) ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 500ms ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide In Animation */
.slide-in-up {
    animation: slideInUp 500ms ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-accent {
    background: rgba(126, 211, 33, 0.2);
    color: var(--accent);
}

.badge-success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.badge-error {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 86px 0;
    }
}

@media (max-width: 810px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(10, 18, 28, 0.98);
        border-bottom: 1px solid rgba(126, 211, 33, 0.2);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 28px;
        gap: 18px;
        display: none;
    }

    body.menu-open .header-menu {
        display: flex;
    }

    .main-nav .menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .services-grid,
    .stats-grid,
    .contact-inner,
    .service-detail-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-text {
        order: 0;
    }

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

    .form-field-wide {
        grid-column: span 1;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-left {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 24px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .step-circle {
        width: 86px;
        height: 86px;
        font-size: 0.85rem;
    }

    .brand-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Team Member Contacts */
.team-contacts {
    margin-top: 24px;
}

.team-member {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.team-member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-member p {
    margin: 0 0 4px;
}

.team-name {
    font-size: 1.1rem;
    color: var(--text);
}

.team-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px !important;
}

.team-member a {
    color: var(--muted);
    font-size: 0.9rem;
}

.team-member a:hover {
    color: var(--accent);
}

/* =============================================
   Services Page Redesign - Clean Layout
   ============================================= */

.services-redesign {
    background: var(--bg);
}

/* Services Intro Header */
.services-intro {
    padding: 120px 0 90px;
    background: var(--bg);
    text-align: center;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.3;
    margin: 0 0 36px;
}

.services-intro-text {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text);
}

.services-intro-text strong {
    color: #1a365d;
}

/* Service Block - Alternating Layout */
.service-block {
    padding: 90px 0;
    background: var(--bg);
}

.service-block:nth-child(even) {
    background: var(--bg-alt);
}

.service-block-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0 0 48px;
}

.service-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.service-block-reverse .service-block-grid {
    direction: rtl;
}

.service-block-reverse .service-block-grid>* {
    direction: ltr;
}

.service-block-intro {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 30px;
}

.service-block-intro strong {
    color: #1a365d;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 18px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text);
}

.service-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a365d;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
}

.service-features-list li strong {
    color: #1a365d;
}

.service-block-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: var(--bg-alt);
    text-align: center;
}

.services-cta-inner h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin: 0 0 16px;
}

.services-cta-inner p {
    color: var(--muted);
    margin: 0 0 32px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 900px) {
    .service-block-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-block-reverse .service-block-grid {
        direction: ltr;
    }

    .service-block-image {
        order: -1;
    }

    .services-main-title {
        font-size: 1.6rem;
    }

    .services-main-title br {
        display: none;
    }
}

/* About Us Values Redesign */
.values-section {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.08);
    /* Light blue tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #1a365d;
    /* Primary deep blue */
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #1a365d;
    color: #ffffff;
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 700;
}

.value-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Offer Icons Adjustments for FontAwesome */
.offer-icon i {
    font-size: 2.5rem;
    line-height: 1;
}

/* Spacer for moved section */
.about-cta-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-carousel .slider {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
}

.hero-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.hero-carousel .slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-carousel .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.hero-carousel .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel .slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
}

.hero-carousel .slider-btn-prev {
    left: 20px;
}

.hero-carousel .slider-btn-next {
    right: 20px;
}

/* Custom List Styles */
.custom-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

/* Service & Contact Page Layouts */
.service-page-grid,
.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {

    .service-page-grid,
    .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image-wrapper,
    .contact-map-side {
        min-height: 400px;
    }
}

/* Service Page Specifics */
.service-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 100%;
}

/* Contact Page Specifics */
.contact-list-side {
    padding-right: 2rem;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text, #333);
}

.contact-icon {
    flex: 0 0 32px;
    font-size: 1.3rem;
    color: var(--primary, #1a365d);
    margin-top: 3px;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: var(--primary, #1a365d);
    font-weight: 700;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent, #e30613);
}

.contact-item-large.email-item {
    margin-top: -0.8rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: #666;
}

.contact-map-side {
    height: 100%;
    min-height: 600px;
}

.contact-map-side iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Footer Background Customization */
.contact-section {
    position: relative;
    background-image: url('../images/footer-bg.webp') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Dark Blue/Black Overlay */
    z-index: 1;
}

.contact-inner {
    z-index: 2;
}

/* Inquiry Form Styles */
.inquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent);

}

/* Mobile Menu Implementation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
    margin-left: auto;
}

.menu-toggle-bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(35, 47, 63, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        transform: translateY(-20px);
    }

    body.menu-open .header-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav .menu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .main-nav .menu a {
        font-size: 1.5rem;
        font-weight: 600;
    }



    .header-menu .btn {
        margin-top: 2rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Mobile Header Adjustments */
    .header-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .brand-wrap {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 12px;
    }
}

/* ==============================================
   Inquiry Page - Stepper & Dark Form
   ============================================== */

.inquiry-page {
    background: var(--bg);
    min-height: 60vh;
}

/* Stepper Section */
.stepper-section {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Step with just the DONE button - needs vertical centering */
.step:last-child {
    padding-top: 18px;
    /* Align pill center with circle center */
}

.step-number {
    width: 90px;
    height: 90px;
    border: 3px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #ddd;
    background: transparent;
    transition: all 0.3s ease;
}

.step-active .step-number {
    border-color: var(--accent);
    color: var(--accent);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.step-active .step-label {
    color: #333;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #ccc;
    position: relative;
    margin: 0 24px;
    margin-top: 45px;
    /* Center with circle (90px / 2) */
}

.step-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ccc;
}

.step-line-active {
    background: var(--accent);
}

.step-line-active::after {
    border-left-color: var(--accent);
}

.step-text {
    font-size: 1rem;
    font-weight: 700;
    color: #3a4555;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 20px 50px;
    border: 3px solid #3a4555;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.step-active .step-text {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
}

/* Form Section */
.inquiry-form-section {
    padding: 40px 0 80px;
}

.inquiry-form-card {
    max-width: 800px;
    margin: 0 auto;
    background: #2a3441;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.inquiry-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inquiry-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inquiry-form .form-field-textarea {
    grid-row: span 2;
}

.inquiry-form label {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    background: #3a4555;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form select::placeholder {
    color: #8a9aaa;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent);
}

.inquiry-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.inquiry-form .btn-full {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stepper {
        flex-direction: column;
        gap: 16px;
    }

    .step-line {
        width: 2px;
        height: 40px;
    }

    .step-line::after {
        content: '↓';
        right: -8px;
        top: auto;
        bottom: -16px;
    }

    .inquiry-form-card {
        padding: 24px;
        margin: 0 16px;
    }

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

    .inquiry-form .form-field-textarea {
        grid-row: auto;
    }
}