/* ================================================
   IVS Immobilienverwaltung Stubenrauch - Design 4
   Clean Cards & Lines
   ================================================ */

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

:root {
    --primary: #3F529F;
    --primary-dark: #2d3d7a;
    --primary-light: #5a6db8;
    --primary-bg: #f0f3fa;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green: #059669;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

/* ================================================
   Navigation
   ================================================ */
nav[role="navigation"] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
}

nav[role="navigation"].scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo-img {
    height: 90px;
    width: 20;
    opacity: 0;
    transition: opacity 0.0s;
}

nav[role="navigation"].scrolled .logo-img {
    opacity: 2
    ;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

nav[role="navigation"].scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-cta {
    background: var(--white) !important;
    color: var(--primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600 !important;
}

nav[role="navigation"].scrolled .nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

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

nav[role="navigation"].scrolled .mobile-menu span {
    background: var(--gray-800);
}

/* ================================================
   Label Style (wiederkehrend)
   ================================================ */
.hero-label,
.about-label,
.services-label,
.team-label,
.properties-label,
.contact-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 5% 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: end;
}

.hero-label {
    color: rgba(255,255,255,0.8);
}

.hero-label .label-line {
    background: rgba(255,255,255,0.5);
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 650px;
}

.hero-text > p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-cards {
    display: flex;
    gap: 1rem;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
}

.card-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.card-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

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

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

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

/* ================================================
   About Section
   ================================================ */
.about {
    padding: 120px 5%;
    background: var(--white);
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-year {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(63, 82, 159, 0.3);
}

.about-year span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.about-year strong {
    font-size: 2rem;
    font-weight: 700;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.about-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.about-list-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* About Founders */
.about-founders {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.founders-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.founders-names {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.founders-names span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.founders-divider {
    color: var(--primary);
    font-size: 1.5rem;
}

/* ================================================
   Services Section
   ================================================ */
.services {
    padding: 120px 5%;
    background: var(--gray-50);
}

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

.services-header {
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.services-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

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

.service-card-accent {
    background: var(--primary);
    border-color: var(--primary);
}

.service-card-accent .service-number,
.service-card-accent h3,
.service-card-accent p,
.service-card-accent li {
    color: var(--white);
}

.service-card-accent .service-icon {
    background: rgba(255,255,255,0.15);
}

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

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
}

.service-card-accent .service-number {
    color: rgba(255,255,255,0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-card-accent li::before {
    background: rgba(255,255,255,0.5);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ================================================
   VDIV Section
   ================================================ */
.vdiv {
    padding: 80px 5%;
    background: var(--primary);
}

.vdiv-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.vdiv-logo-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vdiv-logo {
    width: 160px;
    height: auto;
}

.vdiv-content h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.vdiv-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
}

/* ================================================
   Team Section
   ================================================ */
.team {
    padding: 120px 5%;
    background: var(--white);
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

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

.team-card {
    background: var(--gray-50);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.team-image {
    height: 300px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.team-info p {
    color: var(--primary);
    font-weight: 500;
}

/* ================================================
   Properties Section
   ================================================ */
.properties {
    padding: 120px 5%;
    background: var(--gray-50);
}

.properties-container {
    max-width: 1100px;
    margin: 0 auto;
}

.properties-header {
    margin-bottom: 3rem;
}

.properties-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

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

.property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.property-image {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.property-tag.tag-green {
    background: #d1fae5;
    color: var(--green);
}

.property-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.property-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================================
   Jobs / Karriere Section
   ================================================ */
.jobs {
    padding: 120px 5%;
    background: #3F529F;
    position: relative;
    overflow: hidden;
}

.jobs::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 82, 159, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.jobs-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.jobs-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.jobs-label .label-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.4);
}

.jobs-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.jobs-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.job-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.job-card-header:hover {
    background: #f9fafb;
}

.job-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: #f0f3fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-icon svg {
    width: 26px;
    height: 26px;
    color: #3F529F;
}

.job-header-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.35rem;
}

.job-tags {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.job-type {
    display: inline-block;
    background: #059669;
    color: #ffffff;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-date {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid #3F529F;
    color: #3F529F;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.job-toggle:hover {
    background: #3F529F;
    color: #ffffff;
}

.job-toggle svg {
    transition: transform 0.3s;
}

.job-card.open .job-toggle svg {
    transform: rotate(180deg);
}

/* Job Details - Versteckt */
.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.job-card.open .job-details {
    max-height: 2000px;
}

.job-details-inner {
    padding: 0 2rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.job-highlight {
    background: linear-gradient(135deg, #f0f3fa 0%, #e8f5e9 100%);
    color: #3F529F;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #059669;
}

.job-details-inner h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.job-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

.job-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: #3F529F;
    border-radius: 50%;
}

.job-benefits li::before {
    background: #059669;
}

.job-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.job-contact > p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.job-contact-person {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.job-contact-person strong {
    color: #111827;
    font-size: 1rem;
}

.job-contact-person span {
    color: #6b7280;
    font-size: 0.85rem;
}

.job-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline-dark:hover {
    border-color: #374151;
    background: #f3f4f6;
}

/* Jobs CTA */
.jobs-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.jobs-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.jobs-cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.jobs-cta .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
}


/* ================================================
   Contact Section - Multi-Step Form
   ================================================ */
.contact {
    padding: 120px 5%;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-left > p {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

address {
    font-style: normal;
}

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

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

/* Progress Bar */
.form-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    margin-right: 1.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 16.66%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    overflow: visible;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-year {
   position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(63, 82, 159, 0.3);
}

.about-year span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-year strong {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.option-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
}

.option-card {
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s;
}

.option-content svg {
    width: 32px;
    height: 32px;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.option-content span {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.option-card:hover .option-content {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.option-card:hover .option-content svg {
    color: var(--primary);
}

.option-card input:checked + .option-content {
    border-color: var(--primary);
    background: var(--primary);
}

.option-card input:checked + .option-content svg {
    color: var(--white);
}

.option-card input:checked + .option-content span {
    color: var(--white);
}

/* Number Input */
.input-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.number-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.number-btn {
    width: 50px;
    height: 60px;
    border: none;
    background: var(--gray-100);
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

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

.number-input-wrapper input {
    width: 100px;
    height: 60px;
    border: none;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    background: var(--white);
}

.number-input-wrapper input:focus {
    outline: none;
}

.input-label {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Conditional Field */
.conditional-field {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.conditional-field label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.conditional-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
    resize: vertical;
}

.conditional-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Form Grid (Step 6) */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input.error {
    border-color: #ef4444;
}

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

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-box:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.file-upload-box svg {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.file-upload-box span {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.file-upload-box small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.file-item svg {
    color: var(--primary);
}

.file-item span {
    flex: 1;
    color: var(--gray-700);
}

.file-item small {
    color: var(--gray-500);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.btn-back {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
}

.btn-back:hover {
    border-color: var(--gray-600);
    background: var(--gray-100);
}

.btn-submit {
    background: var(--green);
}

.btn-submit:hover {
    background: #047857;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--gray-40);
    padding: 80px 5% 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-300);
}

.footer-brand img {
    height: 70px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary);
}
/* ================================================
   Accessibility
   ================================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        justify-content: flex-start;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .jobs-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-links a {
        color: var(--gray-800) !important;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

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

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

    .property-card {
        flex-direction: column;
    }

    .property-image {
        width: 100%;
        height: 200px;
    }

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

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

    .option-grid-2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

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

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

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }

    .founders-names {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .founders-divider {
        display: none;
    }
    
    .founders-names span {
        font-size: 1.1rem;
    }

    .jobs {
        padding: 80px 5%;
    }

    .jobs-content h2 {
        font-size: 1.75rem;
    }

    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .job-toggle {
        width: 100%;
        justify-content: center;
    }

    .job-details-inner {
        padding: 0 1.25rem 1.5rem;
    }

    .job-actions {
        flex-direction: column;
    }

    .job-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}