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

:root {
    --primary-turquoise: #00bcd4;
    --primary-orange: #ff9800;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    height: 80px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-turquoise);
}

.nav-cta {
    background: var(--primary-turquoise);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #00a5bb;
    transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 0;
    height: 800px;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 url('../images/hero-banner.jpg') center center no-repeat;
    background-size: contain;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: none; /* Text is in the banner image */
}

.hero-text-box {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    max-width: 1100px;
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 1;
    margin-bottom: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-brand {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
    color: #00AADD;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

/* Mission Section */
.mission-section {
    padding: 1.5rem 0 10rem 0;
    background: url('../images/mission-background.png') center top no-repeat;
    background-size: cover;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.mission-section > * {
    position: relative;
    z-index: 2;
}
.mission-section .container {
    background: transparent;
    padding: 1.5rem 2.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    background: none;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    width: auto;
}

.lead-text {
    text-align: center;
    font-size: 1.55rem;
    color: white;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    background: none;
    display: block;
    padding: 0;
    line-height: 1.9;
}

.statement-text {
    text-align: center;
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    background: none;
    display: block;
    padding: 0;
    line-height: 1.9;
}

.benefits-list {
    max-width: 920px;
    margin: 1.5rem auto;
}

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

.bullet {
    width: 8px;
    height: 8px;
    background: var(--primary-turquoise);
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.35rem;
    line-height: 1.9;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    background: none;
    display: inline;
    padding: 0;
}

.cta-text {
    text-align: center;
    font-size: 1.55rem;
    margin-top: 1.5rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    background: none;
    display: block;
    padding: 0;
    line-height: 1.9;
}

/* Story Section */
.story-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-highlight {
    font-size: 1.25rem;
    font-weight: 500;
}

.highlight-number {
    color: var(--primary-turquoise);
    font-weight: 700;
}

/* Value Section */
.value-section {
    padding: 3rem 0;
    background: var(--dark-bg);
    color: white;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.value-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.value-number.turquoise {
    color: var(--primary-turquoise);
}

.value-number.orange {
    color: var(--primary-orange);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.value-summary {
    text-align: center;
    font-size: 1.125rem;
    max-width: 900px;
    margin: 1.5rem auto;
    line-height: 1.8;
}

.cta-container {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-turquoise);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #00a5bb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

/* Why Section */
.why-section {
    padding: 3rem 0;
    background: white;
}

.why-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    stroke: var(--primary-turquoise);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Collection Section */
.collection-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.collection-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.model-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.model-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

/* Hero image layout for updated model cards */
.model-hero-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.model-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.model-card:hover .model-hero-image img {
    transform: scale(1.04);
}
.model-size-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 188, 212, 0.92);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.model-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.model-floorplan-thumb {
    flex-shrink: 0;
    width: 110px;
    height: 140px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}
.model-floorplan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 4px;
}
.model-floorplan-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}
.model-name-block {
    margin-bottom: 0.4rem;
    flex: 1;
}
.model-tagline {
    font-size: 0.95rem;
    color: var(--primary-turquoise);
    font-style: italic;
    font-weight: 500;
    margin: 0 0 0.85rem 0;
    line-height: 1.3;
}

.model-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 300px;
    overflow: hidden;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-floorplan img {
    object-fit: contain;
    background: #f5f5f5;
    padding: 10px;
}

.grid-interior a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.step-inside-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 188, 212, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.grid-interior a:hover .step-inside-overlay {
    background: rgba(255, 152, 0, 0.95);
    transform: scale(1.05);
}

.model-info {
    padding: 2rem;
}

.model-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.model-specs {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.model-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.model-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-turquoise);
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-turquoise);
    color: var(--primary-turquoise);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Investment Section */
.investment-section {
    padding: 3rem 0;
    background: white;
}

.investment-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.investment-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.investment-card.featured {
    background: linear-gradient(135deg, var(--primary-turquoise), #00a5bb);
    color: white;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.investment-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.investment-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.investment-features {
    list-style: none;
}

.investment-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.investment-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-turquoise);
    font-weight: 700;
}

.investment-card.featured .investment-features li::before {
    color: white;
}

/* Calculator Section */
.calculator-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.calculator-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 1.5rem auto;
}

.calculator-form {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.calculator-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.toggle-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.toggle-btn.active {
    background: var(--primary-turquoise);
    color: white;
    border-color: var(--primary-turquoise);
}

.btn-calculate {
    width: 100%;
    padding: 1rem;
    background: var(--primary-turquoise);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-calculate:hover {
    background: #00a5bb;
}

.results-panel {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.result-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.result-row.highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: none;
    text-align: center;
    justify-content: center;
}

.cta-box {
    margin-top: 1.5rem;
    background: var(--dark-bg);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background: #00a5bb;
}

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

/* Process Section */
.process-section {
    padding: 3rem 0;
    background: white;
}

.process-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline {
    max-width: 800px;
    margin: 4rem auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-shrink: 0;
    position: relative;
}

.timeline-number .step-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.timeline-number .step-num {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.partners-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo-wrap {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.partner-logo {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.partner-category {
    color: var(--primary-turquoise);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.partner-card--featured {
    border: 2px solid var(--primary-turquoise);
    background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
}

.partner-tag {
    color: var(--primary-turquoise);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary-turquoise);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-turquoise);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.partner-link:hover {
    opacity: 0.75;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background: white;
}

.faq-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-list {
    max-width: 900px;
    margin: 1.5rem auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer-content {
    color: var(--text-light);
    line-height: 1.8;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

/* Resources Section */
.resources-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.resources-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.resource-icon {
    width: 60px;
    height: 60px;
    stroke: var(--primary-turquoise);
    margin-bottom: 1.5rem;
}

.resource-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-download {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-turquoise);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-download:hover {
    background: #00a5bb;
}

/* Certifications Section */
.certifications-section {
    padding: 3rem 0;
    background: var(--dark-bg);
    color: white;
}

.certifications-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.cert-icon {
    width: 50px;
    height: 50px;
    stroke: var(--primary-turquoise);
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: white;
}

.contact-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 700px;
    margin: 1.5rem auto;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-turquoise);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #00a5bb;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.visit-section {
    max-width: 900px;
    margin: 5rem auto 0;
}

.visit-section h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.visit-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.visit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.australia-map-container {
    margin: 2rem 0 3rem;
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.australia-map {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}   padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.map-section h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
}

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

.location-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.location-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-turquoise);
}

.location-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Environmental Section */
.environmental-section {
    padding: 2rem 0;
    background: var(--light-bg);
    text-align: center;
}

.env-icon {
    width: 60px;
    height: 60px;
    stroke: var(--primary-turquoise);
    margin-bottom: 1rem;
}

.environmental-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.environmental-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.feedback-box {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.feedback-box a {
    color: var(--primary-turquoise);
    font-weight: 600;
    text-decoration: none;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background: white;
}

.disclaimer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

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

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-turquoise);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.podcast-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* ===== GENERAL MOBILE ===== */
    body {
        font-size: 15px;
        line-height: 1.6;
    }
    h1 { font-size: 1.6rem; margin-bottom: 0.75rem; }
    h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
    h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
    section { padding: 40px 0 !important; }
    .container { padding: 0 16px; }

    /* ===== NAVIGATION ===== */
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }

    /* ===== HERO BANNER ===== */
    .hero {
        height: auto;
        min-height: 0;
        padding: 0;
        background-image: url('../images/hero-banner-mobile.jpg');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        aspect-ratio: 9 / 10;
        max-height: 90vh;
    }

    /* ===== MISSION SECTION ===== */
    .mission-section {
        background-size: cover;
        background-position: center center;
        padding: 3rem 0 !important;
    }
    .mission-section .container {
        padding: 1.5rem 1.25rem;
    }
    .mission-section h2 {
        font-size: 1.5rem;
    }
    .mission-subheading {
        font-size: 1.3rem !important;
    }
    .lead-text {
        font-size: 1rem;
    }
    .statement-text {
        font-size: 0.95rem;
    }
    .benefit-item p {
        font-size: 0.95rem;
    }
    .cta-text {
        font-size: 1rem;
    }

    /* ===== FUNDAMENTALS SECTION ===== */
    .fundamentals-section {
        padding: 50px 0 !important;
    }
    .fundamentals-grid {
        gap: 40px;
    }
    .fundamental-item,
    .fundamental-item.reverse {
        grid-template-columns: 1fr;
        gap: 0;
        direction: ltr;
    }
    /* Image always on top, text below on mobile */
    .fundamental-item .fundamental-image {
        order: -1;
    }
    .fundamental-item.reverse .fundamental-image {
        order: -1;
    }
    .fundamental-image {
        width: 100%;
        height: 260px;
        background-size: cover;
        background-position: center;
        border-radius: 12px 12px 0 0;
    }
    .fundamental-content {
        padding: 1.25rem 1rem;
    }
    .fundamental-content h3 {
        font-size: 1.3rem;
    }
    .fundamental-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* ===== MODELS SECTION ===== */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    .model-card { padding: 0; }
    .model-hero-image {
        height: 220px;
    }
    .model-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .model-info { padding: 1.25rem; }
    .model-card h3 { font-size: 1.2rem; }
    .model-specs { gap: 8px; margin: 10px 0; }
    .spec-item { font-size: 0.8rem; padding: 6px 10px; }
    .model-price { font-size: 1.3rem; margin: 10px 0; }
    .model-description { font-size: 0.9rem; line-height: 1.5; margin-bottom: 12px; }
    .cta-button { padding: 10px 20px; font-size: 0.9rem; width: 100%; text-align: center; }

    /* ===== FEATURES / WHY SECTION ===== */
    .features-grid { gap: 15px; }
    .feature-card { padding: 15px; }
    .feature-icon { font-size: 1.6rem; margin-bottom: 8px; }
    .feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
    .feature-card p { font-size: 0.85rem; line-height: 1.5; }

    /* ===== VALUE CARDS ===== */
    .value-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .value-number { font-size: 3rem; }

    /* ===== PROCESS STEPS ===== */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* ===== CALCULATOR ===== */
    .calculator-container { padding: 15px; }
    .calculator-input label { font-size: 0.9rem; margin-bottom: 4px; }
    .calculator-input input { padding: 8px 12px; font-size: 0.9rem; }
    .calculator-results { padding: 15px; }
    .result-row { padding: 8px 0; font-size: 0.85rem; }

    /* ===== PARTNERS ===== */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .partner-card { padding: 12px; }
    .partner-logo { height: 50px; margin-bottom: 8px; }
    .partner-card h3 { font-size: 0.9rem; margin-bottom: 4px; }
    .partner-card p { font-size: 0.78rem; line-height: 1.3; }

    /* ===== FORMS ===== */
    .form-row { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }

    /* ===== GENERAL IMAGES ===== */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.model-price-old {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.contact-offer {
    font-size: 0.75rem;
    color: #00b4d8;
    margin: 0;
    font-style: italic;
}

/* WA Owned Badge Section */
.wa-badge-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.wa-badge {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .wa-badge-section {
        padding: 40px 0;
    }
    
    .wa-badge {
        max-width: 200px;
    }
}



/* Fundamentals Section */
.fundamentals-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fundamentals-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.fundamentals-section .section-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-turquoise);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fundamentals-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.fundamentals-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.fundamental-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fundamental-item.reverse {
    direction: rtl;
}

.fundamental-item.reverse > * {
    direction: ltr;
}

.fundamental-content {
    padding: 20px;
}

.fundamental-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.fundamental-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-turquoise);
}

.fundamental-item:nth-child(even) .fundamental-icon svg {
    stroke: var(--primary-orange);
}

.fundamental-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.fundamental-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.fundamental-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fundamental-image:hover {
    transform: scale(1.02);
}

/* Floor plan specific styling */
.fundamental-image.floorplan {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive Design for Fundamentals */
@media (max-width: 968px) {
    .fundamental-item,
    .fundamental-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    .fundamental-image {
        height: 300px;
    }
    
    .fundamentals-section h2 {
        font-size: 1.6rem;
    }
    
    .fundamental-content h3 {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 576px) {
    .fundamentals-section {
        padding: 60px 0;
    }
    
    .fundamentals-grid {
        gap: 50px;
    }
    
    .fundamental-icon {
        width: 50px;
        height: 50px;
    }
    
    .fundamental-content h3 {
        font-size: 1.3rem;
    }
    
    .fundamental-content p {
        font-size: 1rem;
    }
}

/* ===== THE OPERA MODEL & VIDEO ===== */
.opera-full-section {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.opera-wide-card {
    border: 2px solid var(--primary-turquoise);
    box-shadow: 0 0 28px rgba(0, 188, 212, 0.3);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: 16px;
    background: white;
}

/* 16:9 hero image on the left ~56.25% of card height */
.opera-wide-hero {
    position: relative;
    flex: 0 0 45%;
    min-height: 200px;
    max-height: 240px;
    overflow: hidden;
}

.opera-wide-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opera-wide-info {
    flex: 1;
    padding: 0.9rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.85rem;
}

.opera-card .model-price {
    font-size: 1.1rem;
    color: var(--primary-turquoise);
}

.opera-wide-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.opera-wide-info .model-tagline {
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
}

.opera-wide-info .model-specs {
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
}

.opera-wide-info .model-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.opera-wide-info .contact-offer {
    font-size: 0.68rem;
}

/* Video section - same full width, 16:9 */
.opera-video-wide {
    width: 100%;
}

.opera-video-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-turquoise);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

.opera-video-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* true 16:9 so subtitles at bottom are never cropped */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border: 2px solid var(--primary-turquoise);
    background: #000;
}

.opera-video-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full frame so subtitles are always visible */
}

/* Model warranty line */
.model-warranty {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-turquoise);
    margin: 0.4rem 0 0.75rem 0;
    letter-spacing: 0.2px;
}

/* ===== EFFICIENT & RAPID — IMAGE + VIDEO STACK ===== */
.efficient-media-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.efficient-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.efficient-video {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    display: block;
    object-fit: contain;
    background: #000;
    border: 2px solid var(--primary-turquoise);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Home Base visit strip in WA badge section */
.wa-badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.homebase-visit-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 2px solid #e0e0e0;
    padding-left: 3rem;
}

.homebase-strip-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.homebase-strip-text {
    font-size: 1.2rem;
    color: #333;
    max-width: 360px;
    line-height: 1.6;
}

.homebase-strip-text strong {
    color: #222;
}

/* Featured Home Base partner card */
.homebase-featured-card {
    border: 2px solid #00bcd4;
    background: #f0fbff;
}

.homebase-partner-logo {
    max-height: 90px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* High-End stacked layout: text on top, collage full width below */
.fundamental-item--stacked {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 1.5rem;
    width: 100%;
    overflow: visible;
}

.fundamental-item--stacked .fundamental-content {
    max-width: 100%;
}

.highend-collage-full {
    width: 100%;
}

.highend-collage-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
