/* ==========================================================================
   Level Lifehacks - Real Estate Website Styles
   ========================================================================== */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background-color: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #1e3f73;
    border-color: #1e3f73;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.btn-secondary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-outline:hover {
    background-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   Header and Navigation
   ========================================================================== */

.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

.navbar {
    padding: 1rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c5aa0;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Cookie Banner and Modal
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 90, 160, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cookie-text h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 2rem;
}

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

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-category span {
    font-weight: 500;
}

.cookie-category p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

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

.about-text {
    text-align: left;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.team-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

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

.team-avatar {
    margin-bottom: 1.5rem;
}

.avatar-svg {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.team-card h3 {
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.team-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.team-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   Success Stories Section
   ========================================================================== */

.success-stories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.story-icon {
    margin-bottom: 1.5rem;
}

.story-icon svg {
    width: 60px;
    height: 60px;
}

.story-card h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.story-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-author {
    font-weight: 500;
    color: #2c5aa0;
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact CTA Section
   ========================================================================== */

.contact-cta {
    padding: 5rem 0;
    background-color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-header-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* ==========================================================================
   Company Story and Mission/Vision
   ========================================================================== */

.company-story,
.mission-vision {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.story-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mv-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

/* ==========================================================================
   Company Stats
   ========================================================================== */

.company-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.stat-card span {
    font-size: 0.8rem;
    color: #888;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-choose {
    padding: 5rem 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ==========================================================================
   Services Detail Pages
   ========================================================================== */

.main-services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 4rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.service-header {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 3rem;
    text-align: center;
}

.service-content {
    padding: 3rem;
}

.service-features {
    margin-bottom: 3rem;
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

.service-process {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.rental-types,
.legal-services,
.management-package {
    margin-top: 2rem;
}

.rental-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.rental-type,
.package {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.rental-type h5,
.package h5 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.legal-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
    list-style: none;
}

.legal-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* ==========================================================================
   Property Showcase
   ========================================================================== */

.property-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.property-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

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

.property-image {
    height: 200px;
    overflow: hidden;
}

.property-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.property-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.property-features span {
    background-color: #e8f4fd;
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */

.process-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.process-timeline {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-icon {
    flex-shrink: 0;
}

.timeline-icon svg {
    width: 60px;
    height: 60px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}

/* ==========================================================================
   Team Leadership and Members
   ========================================================================== */

.team-leadership,
.team-members {
    padding: 5rem 0;
}

.team-leadership {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.team-members {
    background-color: #ffffff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.leader-avatar {
    flex-shrink: 0;
}

.leader-info h3 {
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.leader-title {
    color: #ff6b6b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.leader-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.leader-expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.leader-expertise span {
    background-color: #e8f4fd;
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-info {
    text-align: left;
}

.team-title {
    color: #ff6b6b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-contact {
    font-size: 0.9rem;
    color: #2c5aa0;
    font-weight: 500;
}

/* ==========================================================================
   Team Values
   ========================================================================== */

.team-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* ==========================================================================
   Join Team CTA
   ========================================================================== */

.join-team {
    padding: 5rem 0;
    background-color: #ffffff;
}

.join-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Forms and Information
   ========================================================================== */

.contact-info-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.contact-card p {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-card span {
    font-size: 0.9rem;
    color: #666;
}

.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.map-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.map-placeholder {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.map-svg {
    width: 100%;
    height: 400px;
}

.map-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.directions {
    margin-top: 1.5rem;
}

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

.direction-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Thanks Page
   ========================================================================== */

.thanks-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #e8f8f0 0%, #f0fff0 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.success-svg {
    width: 120px;
    height: 120px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.next-steps {
    padding: 5rem 0;
    background-color: #ffffff;
}

.steps-timeline {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #228B22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.step-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.step-time {
    font-size: 0.9rem;
    color: #228B22;
    font-weight: 500;
}

.emergency-contact {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.emergency-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.emergency-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.emergency-content h3 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.emergency-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.resources-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #2c5aa0;
    font-weight: 500;
    text-decoration: underline;
}

.resource-link:hover {
    color: #1e3f73;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-content {
    padding: 5rem 0;
    background-color: #ffffff;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-intro {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid #2c5aa0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f4fd;
}

.legal-section h3 {
    color: #1e3f73;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.legal-section ol li {
    list-style-type: decimal;
}

.legal-footer {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Cookie Policy Specific Styles */
.cookie-settings-panel {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
}

.settings-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cookie-controls {
    margin: 2rem 0;
}

.cookie-switch {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    cursor: pointer;
}

.cookie-switch input[type="checkbox"] {
    position: relative;
    width: 50px;
    height: 25px;
    appearance: none;
    background-color: #ccc;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    margin-top: 0.2rem;
}

.cookie-switch input[type="checkbox"]:checked {
    background-color: #2c5aa0;
}

.cookie-switch input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-switch input[type="checkbox"]:checked::after {
    transform: translateX(25px);
}

.cookie-switch input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-label strong {
    display: block;
    color: #2c5aa0;
    margin-bottom: 0.3rem;
}

.cookie-label span {
    font-size: 0.9rem;
    color: #666;
}

.settings-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c5aa0;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.service-card h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-card a {
    color: #2c5aa0;
    text-decoration: underline;
}

.service-card a:hover {
    color: #1e3f73;
}

/* ==========================================================================
   CTA Sections
   ========================================================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: #2c5aa0;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

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

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

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

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-buttons .btn {
        min-width: 120px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem 0.5rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services-grid,
    .team-grid,
    .stories-grid,
    .properties-grid,
    .features-grid,
    .values-grid,
    .stats-grid,
    .mv-grid,
    .faq-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .legal-document {
        padding: 0 1rem;
    }

    .settings-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Accessibility and Animations
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .nav-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .page-header {
        padding: 2rem 0;
    }

    .legal-content {
        padding: 1rem 0;
    }
}
