* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --primary-blue: #0052cc;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-color: #e0e0e0;
    --bg-light: #f5f5f5;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    padding: 16px 40px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 30px 30px;
    width: 1200px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.badge {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

.contact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.divider {
    width: 1px;
    height: 24px;
    background-color: #d0d0d0;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin: 0 auto;
}

.hero-text-container {
    max-width: 500px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.title-line-1 {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
}

.title-line-2 {
    display: block;
    color: #ffffff;
    padding: 8px 8px;
    margin: 0;
    font-weight: 900;
    width: fit-content;
    padding-left: 0;
    padding-right: 16px;
    position: relative;
    z-index: 1;
}

.title-line-2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-50vw + 50%);
    right: 0;
    background-color: #223E97;
    z-index: -1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.hero-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #e8e8e8;
    max-width: 450px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.cta-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Consultation Section */
.consultation {
    background-color: #ffffff;
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation-container {
    width: 1000px;
    max-width: 100%;
    background-color: #E5E5E5;
    padding: 40px;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.consultation-title {
    font-size: 28px;
    font-weight: 700;
    color: #223E97;
    margin-bottom: 32px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-input {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    outline: none;
    border-color: #223E97;
    box-shadow: 0 0 0 3px rgba(34, 62, 151, 0.1);
}

.submit-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    align-self: center;
}

.submit-btn img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.submit-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.submit-btn:active {
    transform: scale(0.98);
}

.consultation-note {
    font-size: 14px;
    color: #666666;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

/* Why Choose Section */
.why-choose {
    background-color: #ffffff;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 18px solid #223E97;
}

.why-choose-container {
    width: 1200px;
    max-width: 100%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-content {
    flex: 1;
}

.why-choose-title {
    font-size: 32px;
    font-weight: 700;
    color: #223E97;
    margin-bottom: 32px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.3;
}

.why-choose-list {
    list-style: none;
    padding: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 2px solid #d0d0d0;
    border-radius: 12px;
}

.why-choose-list li {
    font-size: 16px;
    color: #333333;
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-weight: 500;
    padding-left: 24px;
    position: relative;
}

.why-choose-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #223E97;
    font-weight: 700;
    font-size: 20px;
}

.why-choose-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Features Section */
.features {
    position: relative;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    background-color: #ffffff;
    overflow: visible;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    overflow: hidden;
}

.features-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.features-wrapper {
    position: relative;
    z-index: 3;
    width: 1200px;
    max-width: 100%;
    padding: 0 40px;
    padding-top: 80px;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.features-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 60px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.6;
    max-width: 500px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feature-item {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: visible;
}

.feature-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.feature-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Built Around Real Needs Section */
.built-section {
    background-color: #ffffff;
    padding: 40px 0 10px 0;
}

.built-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.built-image {
    flex: 0 0 45%;
}

.built-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.built-content {
    flex: 1;
    padding: 60px 60px;
}

.built-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.built-list {
    margin-bottom: 32px;
}

.built-item {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
}

.built-bullet {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    flex-shrink: 0;
    padding-top: 2px;
}

.built-item p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.5;
    margin: 0;
}

.built-description {
    font-size: 18px;
    color: #000000;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.6;
    margin-bottom: 32px;
}

.built-description strong {
    font-weight: 700;
}

.built-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.built-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.built-button img {
    width: 280px;
    height: auto;
    display: block;
}

/* 6 Steps Section */
.steps-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.steps-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Aura Header */
.aura-header {
    background-image: url('images/aura hero section background.png');
    background-size: cover;
    background-position: center;
    padding: 20px 40px;
    border-bottom: 2px solid #d4af37;
}

.aura-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aura-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Aura Hero Section */
.aura-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.aura-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.aura-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aura-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.aura-hero-content {
    position: relative;
    z-index: 3;
    width: 1200px;
    max-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.aura-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.2;
}

.aura-title-line-1 {
    display: block;
    font-size: 56px;
    margin-bottom: 8px;
}

.aura-title-line-2 {
    display: block;
    font-size: 56px;
}

.aura-hero-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.6;
}

.aura-highlight {
    color: #ffff00;
    font-style: italic;
}

.aura-hero-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 32px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.6;
}

.aura-cta-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.aura-cta-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.aura-cta-button img {
    width: auto;
    height: auto;
    display: block;
}

/* Aura Features Section */
.aura-features {
    background-color: #ffffff;
    padding: 40px 40px;
}

.aura-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.aura-features-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    background-color: #041316;
    padding: 12px 60px;
    border-radius: 50px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.aura-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.aura-features-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.aura-feature-card {
    flex: 0 0 calc(25% - 18px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aura-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.aura-feature-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.aura-features-description {
    font-size: 18px;
    color: #666666;
    text-align: center;
    font-family: 'Inter', 'Helvetica', sans-serif;
    line-height: 1.6;
    font-style: italic;
}

/* Why AURA Section */
.why-aura {
    background-color: #ffffff;
    padding: 20px 10px;
}

.why-aura-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    min-height: 650px;
}

.why-aura-image {
    flex: 0 0 48%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.why-aura-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0px;
}

.why-aura-content {
    flex: 1;
    padding: 50px 60px;
    background: linear-gradient(135deg, #1a5a5e 0%, #0d3a3d 100%);
    border-radius: 0 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-aura-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 28px;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
}

.why-aura-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.why-aura-list li {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.why-aura-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffff00;
    font-size: 18px;
    font-weight: bold;
}

.why-aura-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    align-self: flex-start;
}

.why-aura-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.why-aura-button img {
    width: auto;
    height: 40px;
    display: block;
}

/* At a Glance Section */
.at-glance {
    background-color: #ffffff;
    padding: 40px 40px;
}

.at-glance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.at-glance-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

/* Personalize Your Lift Section */
.personalize-lift {
    background: linear-gradient(180deg, #113F40 0%, #2CA3A6 100%);
    padding: 80px 40px 280px 40px;
    position: relative;
    z-index: 1;
}

.personalize-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.personalize-content {
    flex: 1;
}

.personalize-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 16px;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    text-align: left;
}

.personalize-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.personalize-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.personalize-list li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.personalize-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffff00;
    font-size: 20px;
    font-weight: bold;
}

.personalize-note {
    font-size: 14px;
    color: #ffffff;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.personalize-image {
    flex: 0 0 40%;
    position: relative;
}

.personalize-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}


/* Architects Section */
.architects-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.architects-image {
    flex: 0 0 40%;
    position: relative;
}

.architects-image img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}


.architects-content {
    flex: 1;
}

.architects-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffff00;
    margin-bottom: 16px;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    text-align: left;
}

.architects-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.architects-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.architects-list li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.architects-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffff00;
    font-size: 20px;
    font-weight: bold;
}

.personalize-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.personalize-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.personalize-button img {
    width: 450px;
    height: auto;
    display: block;
}

/* Testimonial Section */
.testimonial {
    background-color: transparent;
    padding: 10px 40px 40px 40px;
    position: relative;
    z-index: 2;
    margin-top: -200px;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 0;
    overflow: hidden;
    transition: transform 0.5s ease;
    width: 300%;
}

.testimonial-card {
    flex: 0 0 calc(100% / 3);
    min-width: calc(100% / 3);
    padding: 0 20px;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* Secondary Consultation Section */
.consultation-secondary {
    background-color: #ffffff;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation-secondary-container {
    width: 1000px;
    max-width: 100%;
    background-color: #E5E5E5;
    padding: 40px;
    border-radius: 16px 16px 16px 16px;
    text-align: center;
}

/* Footer Section */
.footer {
    background-color: #113F40;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    font-size: 14px;
    color: #ffffff;
    font-family: 'DM Sans', 'Helvetica', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .consultation-container {
        width: 90%;
    }

    .why-choose-container {
        width: 90%;
    }

    .features-content {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .header {
        width: 90%;
    }

    .hero {
        min-height: 350px;
    }

    .hero-content {
        width: 90%;
        padding: 0 40px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .title-line-2 {
        margin: 0;
        width: fit-content;
        padding-left: 0;
        padding-right: 16px;
    }

    .title-line-2::before {
        left: calc(-50vw + 50%);
        right: 0;
    }

    .steps-section {
        padding: 10px 0;
        margin: 0;
    }

    .steps-section img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .consultation {
        padding: 40px 20px;
    }

    .consultation-container {
        width: 95%;
        padding: 30px 20px;
    }

    .consultation-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-btn img {
        height: 40px;
    }

    .consultation-note {
        font-size: 13px;
    }

    .why-choose {
        padding: 40px 20px;
    }

    .why-choose-container {
        width: 95%;
        flex-direction: column;
        gap: 40px;
    }

    .why-choose-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .why-choose-list li {
        font-size: 14px;
        padding-left: 20px;
    }

    .why-choose-list li::before {
        font-size: 18px;
    }

    .features {
        min-height: 650px;
        padding-top: 0;
    }

    .features-bg {
        height: 320px;
    }

    .features-overlay {
        height: 320px;
    }

    .features-wrapper {
        width: 95%;
        padding: 0 20px;
        padding-top: 60px;
    }

    .features-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .features-subtitle {
        font-size: 14px;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 180px;
    }

    .feature-item {
        padding: 0;
    }

    .feature-item img {
        width: 100%;
        height: auto;
    }

    .built-section {
        padding: 30px 0;
    }

    .built-container {
        flex-direction: column;
        gap: 0;
    }

    .built-image {
        flex: 0 0 100%;
    }

    .built-content {
        padding: 40px 30px;
    }

    .built-title {
        font-size: 32px;
        margin-bottom: 20px;
    }


    .aura-hero {
        min-height: 400px;
    }

    .aura-hero-content {
        width: 95%;
        padding: 0 20px;
    }

    .aura-hero-title {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .aura-title-line-1 {
        font-size: 40px;
        margin-bottom: 6px;
    }

    .aura-title-line-2 {
        font-size: 40px;
    }

    .aura-hero-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .aura-hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .aura-cta-button img {
        height: 40px;
    }

    .aura-features {
        padding: 60px 20px;
    }

    .aura-features-title {
        font-size: 20px;
        margin-bottom: 40px;
        padding: 10px 30px;
    }

    .aura-carousel-wrapper {
        margin-bottom: 30px;
        max-width: 800px;
    }

    .aura-features-carousel {
        gap: 16px;
    }

    .aura-feature-card {
        flex: 0 0 calc(33.333% - 10.67px);
    }

    .aura-features-description {
        font-size: 14px;
    }

    .why-aura {
        padding: 40px 20px;
    }

    .why-aura-container {
        flex-direction: column;
        gap: 0;
        max-width: 800px;
    }

    .why-aura-image {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: -30px;
        z-index: 1;
    }

    .why-aura-content {
        flex: 1;
        padding: 30px;
        z-index: 2;
        position: relative;
    }

    .why-aura-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .why-aura-list li {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .at-glance {
        padding: 60px 20px;
    }

    .at-glance-container {
        padding: 0 30px;
    }

    .personalize-lift {
        padding: 60px 20px;
    }

    .personalize-container {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .personalize-image {
        flex: 0 0 100%;
    }

    .personalize-container {
        max-width: 900px;
    }

    .personalize-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .personalize-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .personalize-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .personalize-note {
        font-size: 13px;
    }

    .architects-container {
        flex-direction: column;
        gap: 40px;
        max-width: 900px;
    }

    .architects-image {
        flex: 0 0 100%;
    }

    .architects-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .architects-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .architects-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .header {
        padding: 12px 20px;
        width: 85%;
    }

    .header-container {
        flex-direction: column;
        gap: 12px;
    }

    .header-left {
        gap: 12px;
    }

    .logo {
        height: 32px;
    }

    .badge {
        height: 28px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .contact-item {
        font-size: 12px;
    }

    .hero {
        min-height: 350px;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    }

    .hero-content {
        width: 85%;
        padding: 0 20px;
    }

    .hero-text-container {
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .title-line-2 {
        margin: 0;
        width: fit-content;
        padding-left: 0;
        padding-right: 16px;
    }

    .title-line-2::before {
        left: calc(-50vw + 50%);
        right: 0;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .cta-button img {
        height: 40px;
    }

    .steps-section {
        padding: 10px 0;
        margin: 0;
    }

    .steps-section img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 480px) {

    /* Mobile Hero Image */
    .hero-bg-image {
        content: url('images/hero banner mobile.jpg');
    }

    /* Mobile 6-Step Image */
    .steps-section img {
        content: url('images/6 step mobile.jpg');
    }

    .consultation {
        padding: 16px 12px;
    }

    .consultation-container {
        width: 100%;
        padding: 16px 12px;
    }

    .consultation-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .consultation-form {
        gap: 12px;
        margin-bottom: 20px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 12px;
    }

    .submit-btn {
        display: flex;
        justify-content: center;
    }

    .submit-btn img {
        height: 36px;
    }

    .consultation-note {
        font-size: 12px;
    }

    .why-choose {
        padding: 16px 12px;
    }

    .why-choose-container {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }

    .why-choose-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .why-choose-list {
        gap: 12px;
    }

    .why-choose-list li {
        font-size: 13px;
        padding-left: 18px;
    }

    .why-choose-list li::before {
        font-size: 16px;
    }

    .features {
        min-height: 600px;
        padding-top: 0;
    }

    .features-bg {
        height: 280px;
    }

    .features-overlay {
        height: 280px;
    }

    .features-wrapper {
        width: 100%;
        padding: 0 16px;
        padding-top: 40px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .features-subtitle {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 50px;
    }

    .feature-item {
        padding: 0;
    }

    .feature-item img {
        width: 100%;
        height: auto;
    }

    .built-section {
        padding: 10px 0;
    }

    .built-container {
        flex-direction: column;
        gap: 0;
    }

    .built-image {
        flex: 0 0 100%;
    }

    .built-content {
        padding: 16px 12px;
    }

    .built-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .built-item {
        padding: 8px;
        margin-bottom: 10px;
    }

    .built-item p {
        font-size: 12px;
    }

    .built-description {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .built-button {
        display: flex;
        justify-content: center;
    }

    .built-button img {
        width: auto;
        height: 40px;
    }

    .aura-cta-button {
        display: flex;
        justify-content: center;
    }

    .why-aura-button {
        display: flex;
        justify-content: center;
    }

    .personalize-button {
        display: flex;
        justify-content: center;
    }

    .aura-header {
        padding: 12px 16px;
    }

    .aura-logo img {
        height: 40px;
    }

    .aura-hero {
        min-height: 350px;
    }

    .aura-hero-content {
        width: 100%;
        padding: 0 16px;
    }

    .aura-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .aura-title-line-1 {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .aura-title-line-2 {
        font-size: 28px;
    }

    .aura-hero-subtitle {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .aura-hero-description {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .aura-cta-button {
        display: flex;
        justify-content: center;
    }

    .aura-cta-button img {
        height: 40px;
        width: auto;
    }

    .aura-features {
        padding: 16px 12px;
    }

    .aura-features-title {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 8px 20px;
    }

    .aura-carousel-wrapper {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .aura-features-carousel {
        gap: 12px;
    }

    .aura-feature-card {
        flex: 0 0 calc(50% - 6px);
    }

    .aura-features-description {
        font-size: 12px;
    }

    .why-aura {
        padding: 16px 12px;
    }

    .why-aura-container {
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .why-aura-image {
        flex: 0 0 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        height: 280px;
    }

    .why-aura-image img {
        border-radius: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .why-aura-content {
        flex: 1;
        padding: 30px 20px;
        border-radius: 0 0 20px 20px;
    }

    .why-aura-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .why-aura-list li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 20px;
    }

    .why-aura-list li::before {
        font-size: 16px;
    }

    .why-aura-button {
        display: flex;
        justify-content: center;
    }

    .why-aura-button img {
        height: 40px;
        width: auto;
    }

    .at-glance {
        padding: 10px 0;
    }

    .at-glance-container {
        padding: 0 16px;
    }

    .personalize-lift {
        padding: 16px 12px 100px 12px;
    }

    .personalize-container {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
        max-width: 100%;
        padding: 0;
    }

    .personalize-image {
        flex: 0 0 100%;
        order: -1;
        margin-top: 20px;
    }

    .personalize-image img {
        height: 250px;
    }

    .personalize-content {
        order: 0;
        padding: 0 8px;
    }

    .personalize-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .personalize-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .personalize-list li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .personalize-list li::before {
        font-size: 16px;
    }

    .personalize-note {
        font-size: 12px;
    }

    .personalize-button {
        display: flex;
        justify-content: center;
    }

    .personalize-button img {
        width: auto;
        height: 40px;
    }

    .testimonial {
        padding: 0px 16px 40px 16px;
        margin-top: -80px;
    }

    .testimonial-container {
        max-width: 100%;
        overflow: hidden;
    }

    .testimonial-carousel {
        width: 300%;
    }

    .testimonial-card {
        flex: 0 0 calc(100% / 3);
        min-width: calc(100% / 3);
        padding: 0 10px;
    }

    .architects-container {
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
        padding: 0;
    }

    .architects-image {
        flex: 0 0 100%;
        order: 0;
    }

    .architects-image img {
        height: 250px;
    }

    .architects-content {
        order: 1;
        padding: 0 8px;
    }

    .architects-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .architects-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .architects-list li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .architects-list li::before {
        font-size: 16px;
    }

    .header {
        padding: 10px 16px;
        width: 80%;
    }

    .header-left {
        gap: 8px;
    }

    .logo {
        height: 28px;
    }

    .badge {
        height: 24px;
    }

    .contact-item {
        font-size: 11px;
    }

    .hero {
        min-height: 400px;
        height: 50vh;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    }

    .hero-content {
        width: 80%;
        padding: 0 16px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .title-line-1 {
        font-size: 24px;
    }

    .title-line-2 {
        font-size: 24px;
        margin: 0;
        width: fit-content;
        padding: 4px 8px;
        padding-left: 0;
        padding-right: 12px;
    }

    .title-line-2 {
        margin: 0;
        width: fit-content;
        padding-left: 0;
        padding-right: 16px;
    }

    .title-line-2::before {
        left: calc(-50vw + 50%);
        right: 0;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .cta-button {
        display: flex;
        justify-content: center;
    }

    .cta-button img {
        height: 40px;
        width: auto;
    }

    .consultation-secondary {
        padding: 10px 20px;
    }

    .consultation-secondary-container {
        width: 95%;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .consultation-secondary-container .consultation-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .consultation-secondary-container .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .consultation-secondary-container .submit-btn img {
        height: 40px;
    }

    .footer {
        padding: 30px 20px;
    }

    .copyright {
        font-size: 12px;
    }

    .steps-section {
        padding: 5px 0;
        margin: 0;
    }

    .steps-section img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* ==========================================
   VIDEO TESTIMONIALS SECTION
   ========================================== */
.video-testimonials-section {
    background: linear-gradient(135deg, #0a0f2e 0%, #223E97 60%, #1a2f7a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.video-testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.vt-label { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #93c5fd; text-align: center; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.vt-title { font-size: 40px; font-weight: 700; color: #ffffff; text-align: center; margin-bottom: 12px; line-height: 1.2; font-family: 'Inter', sans-serif; }
.vt-subtitle { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.7); text-align: center; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; font-family: 'Inter', sans-serif; }
.vt-carousel-wrapper { position: relative; }
.vt-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vt-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); cursor: pointer; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease; background: #000; }
.vt-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 2px rgba(147,197,253,0.4); }
.vt-video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.vt-video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vt-play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%); transition: opacity 0.35s ease; z-index: 2; }
.vt-card.playing .vt-play-overlay { opacity: 0; pointer-events: none; }
.vt-play-btn { width: 68px; height: 68px; border-radius: 50%; background: rgba(34,62,151,0.95); border: 3px solid rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease, background 0.3s ease; box-shadow: 0 8px 30px rgba(34,62,151,0.5); margin-bottom: 16px; }
.vt-play-btn:hover { transform: scale(1.1); background: rgba(26,47,122,0.95); }
.vt-play-btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.vt-card-info { padding: 20px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,15,46,0.95) 100%); position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.vt-card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #93c5fd; margin-bottom: 5px; font-family: 'Inter', sans-serif; }
.vt-card-name { font-size: 16px; font-weight: 700; color: #ffffff; margin: 0 0 4px 0; font-family: 'Inter', sans-serif; }
.vt-card-role { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.7); margin: 0; font-family: 'Inter', sans-serif; }
.vt-badge { position: absolute; top: 16px; left: 16px; z-index: 4; width: 36px; height: 36px; border-radius: 50%; background: rgba(34,62,151,0.9); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; box-shadow: 0 4px 12px rgba(34,62,151,0.4); font-family: 'Inter', sans-serif; }
.vt-stars { display: flex; gap: 3px; margin-bottom: 8px; }
.vt-stars svg { width: 14px; height: 14px; fill: #fbbf24; }

@media (max-width: 900px) {
    .vt-carousel { grid-template-columns: 1fr 1fr; gap: 20px; }
    .vt-carousel .vt-card:nth-child(3) { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
}

@media (max-width: 600px) {
    .video-testimonials-section { padding: 60px 0; }
    .video-testimonials-section .container { padding: 0 20px; }
    .vt-title { font-size: 28px; }
    .vt-carousel { grid-template-columns: 1fr; }
    .vt-carousel .vt-card:nth-child(3) { grid-column: auto; max-width: 100%; }
}