:root {
    --color-primary: #10b981;
    /* Emerald */
    --color-primary-dark: #059669;
    --color-bg: #022c22;
    /* Very dark green/black */
    --color-surface: #064e3b;
    --color-text: #ecfdf5;
    --color-text-muted: #a7f3d0;
    --font-main: "Inter", system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
}

body {
    margin: 0;
    background-color: #020617;
    /* Slate 950 base */
    background-image: radial-gradient(circle at 50% 0%, #064e3b 0%, #020617 60%);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Global Links --- */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #34d399;
    text-decoration: underline;
}

/* --- Header & Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    z-index: 1000;
}

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

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-primary {
    background: var(--color-primary);
    color: #020617;
    padding: 12px 24px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #34d399;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* --- Hero Section --- */
.hero {
    padding: 180px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(to right, #ffffff, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: uppercase;
}

/* --- Image Collage Section --- */
.image-collage {
    width: 100%;
    overflow: hidden;
    background: #020617;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns by default */
    gap: 0;
    /* Seamless look, or use small px value like 4px */
}

.collage-item {
    position: relative;
    overflow: hidden;
    /* Maintain aspect ratio containers or let img dictate height */
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.render-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Tablet / Desktop Tweaks */
@media (min-width: 768px) {
    .collage-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on wide screens */
    }
}

/* --- Features Grid --- */
.features {
    padding: 80px 0;
    background: #020617;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.card {
    background: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(52, 211, 153, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-5px);
    background: rgba(6, 78, 59, 0.5);
}

.card h3 {
    font-size: 22px;
    margin: 0 0 12px;
    color: #fff;
}

.card p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 15px;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: block;
    /* Removes bottom space/gap issues */
}

.feature-image-wrapper {
    position: relative;
    margin-bottom: 24px;
}

/* --- Info Section --- */
.info-section {
    padding: 50px 24px 80px;
    background: #064e3b;
    text-align: center;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
}

/* --- Footer --- */
.site-footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #6b7280;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}

.footer-col h4 {
    color: #fff;
    margin: 0 0 20px;
    font-size: 16px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.legal-line {
    padding-top: 32px;
    border-top: 1px solid #1f2937;
    text-align: center;
    font-size: 12px;
}

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

    .nav-links {
        display: none;
    }

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

.construction-notice {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: #fde047;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* --- Page Content (Legal/Text Pages) --- */
.page-content {
    padding-top: 160px;
    padding-bottom: 80px;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #fff;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.page-content p {
    margin-bottom: 16px;
    color: #d1d5db;
}

.page-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
    color: #d1d5db;
}

.page-content li {
    margin-bottom: 8px;
}

/* CookieYes Trigger */
.cky-banner-element {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 24px;
}

.cky-banner-element:hover {
    background: var(--color-primary);
    color: #020617;
}

/* --- Contact Form --- */
/* --- Contact Form Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        /* align-items: stretch; is default, so removing 'start' enables it */
    }
}

.contact-form-container,
.contact-info-container {
    padding: 32px;
    background: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
}

.contact-info-container h3 {
    margin-top: 0;
    color: #fff;
    font-size: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.icon {
    font-size: 24px;
}

.info-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
    color: var(--color-text-muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 16px;
    transition: all 0.2s;
    box-sizing: border-box;
}

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

.contact-form-container {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
    margin-top: auto;
}

/* --- Map Section --- */
.map-section {
    width: 100%;
    margin-bottom: -6px;
    /* Remove potential gap for inline-block iframe */
    filter: invert(90%) hue-rotate(180deg);
    /* Dark mode map effect */
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
}