/* Import navigation styles */


/* Variables */
@import url('../base/variables.css');
@import url('../base/typography.css');
@import url('../base/layout.css');
@import url('../components/nav.css');
@import url('../components/footer.css');


/* Global Styles */


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



/* Sticky Navigation */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 72px; /* nav height */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.hero-bg-left, .hero-bg-right {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 0.1s ease-out;
}

.hero-image {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-bg-left .hero-image {
    right: 0;
    width: 200%;
    filter: brightness(0.4) contrast(1.2);
}

.hero-bg-right .hero-image {
    left: 0;
    width: 200%;
    filter: brightness(0.9) saturate(1.1);
}

.hero-bg-left:hover .hero-image,
.hero-bg-right:hover .hero-image {
    transform: scale(1.05);
}

.wildfire-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.app-interface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-interface img {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vertical-divider {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
    overflow: visible;
    z-index: 2;
    cursor: ew-resize;
}

.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 4;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s ease-in forwards;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

@keyframes particleFloat {
    0% {
        transform: translate(0, -10px) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        transform: translate(var(--x-move), 50vh) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translate(calc(var(--x-move) * 1.5), 100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
    padding: 2rem;
}

.hero-text-container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.hero-text-left, .hero-text-right {
    position: relative;
    width: 45%;
    text-align: center;
}

.hero-text-left h1,
.hero-text-right h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(-20px);
    animation: shiftDown 0.8s ease forwards;
}

.hero-text-left h1 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text-right h1 {
    background: linear-gradient(135deg, #f16ceb 0%, #6dc1e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

@keyframes shiftDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: auto;
    white-space: nowrap;
}

.cta-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    border-radius: 35px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: var(--font-heading);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.cta-button .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: sparkleMove 1s ease-out forwards;
}

@keyframes sparkleMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x-move), var(--y-move)) scale(0);
        opacity: 0;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.cta-button:hover .sparkle-container {
    opacity: 1;
}

.stats-counter {
    margin-top: 1rem;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
}

.counter {
    font-weight: 700;
    transition: color 0.3s ease;
}

.counter[data-animated="true"] {
    color: var(--primary);
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-text-left h1,
    .hero-text-right h1 {
        font-size: 3rem;
    }
}

@media (max-width: 778px) {
    .hero-background {
        flex-direction: column;
    }

    .hero-bg-left,
    .hero-bg-right {
        width: 100%;
        height: 50%;
    }

    .vertical-divider {
        left: 0;
        top: 50%;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }

    .hero-text-container {
        position: relative;
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .hero-text-left,
    .hero-text-right {
        position: relative;
        width: 100%;
        text-align: center;
    }

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

    .hero-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh;
    }

    .hero-cta {
        position: relative;
        width: 100%;
        bottom: 2rem;
        left: 0;
        transform: none;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

/* Portrait Mode Adjustments */
@media screen and (orientation: portrait) {
    .hero-background {
        flex-direction: column;
    }

    .hero-bg-left,
    .hero-bg-right {
        width: 100%;
        height: 50vh;
    }

    .hero-text-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-text-left,
    .hero-text-right {
        width: 100%;
        text-align: center;
    }

    .hero-text-left h1,
    .hero-text-right h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-content {
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 15vh;
    }

    .hero-cta {
        margin-top: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    /* Problem Statement Section */
    .problem-statement {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .stats-container {
        width: 100%;
        padding: 1.5rem;
    }

    .photo-collage {
        width: 100%;
        min-height: 250px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    /* Solution Section */
    .solution {
        padding: 3rem 1rem;
    }

    .video-container {
        width: 100%;
        padding-top: 75%; /* 4:3 Aspect Ratio */
    }

    /* Timeline Section */
    .timeline-container {
        padding: 3rem 1rem;
    }

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

    .timeline-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Tall Portrait Screens */
@media screen and (orientation: portrait) and (min-height: 800px) {
    .hero-content {
        padding-top: 20vh;
    }

    .hero-text-left h1,
    .hero-text-right h1 {
        font-size: 3.5rem;
    }
}

/* Extra Tall Portrait Screens */
@media screen and (orientation: portrait) and (min-height: 1000px) {
    .hero-content {
        padding-top: 25vh;
    }

    .hero-text-left h1,
    .hero-text-right h1 {
        font-size: 4rem;
    }
}

/* Problem Statement */
.problem-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    overflow: hidden;
}

.stats-container {
    position: relative;
    background: var(--dark);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stats-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
}

.stats-logo img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.stat {
    color: var(--white);
    margin-bottom: 2rem;
}

.stat h3 {
    font-size: 3.5rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat p {
    font-size: 1.4rem;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 300px;
    color: var(--white);
}

.photo-collage {
    background: var(--dark);
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stats-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.photo-collage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(48, 48, 48, 0.4), transparent);
    pointer-events: none;
}

.photo-collage:hover {
    filter: contrast(1.2) brightness(1);
}

/* Solution & Video Demo */
.solution {
    padding: 6rem 2rem;
    text-align: center;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution h2 {
    background: linear-gradient(135deg, #f16ceb 0%, #6dc1e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #000;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.demo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 90vh;
    min-width: 100%;
    border-radius: 12px;
    display: block;
}

.video-caption {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 2rem;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, rgba(241, 108, 235, 0.05), rgba(109, 193, 232, 0.05));
}

.how-it-works h2 {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.step {
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 360px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Custom styling for each step's background and colors */
.step[data-step="1"] {
    background: linear-gradient(135deg, rgba(109, 193, 232, 0.1), rgba(79, 184, 229, 0.1));
}

.step[data-step="2"] {
    background: linear-gradient(135deg, rgba(232, 94, 224, 0.1), rgba(109, 193, 232, 0.1));
}

.step[data-step="3"] {
    background: linear-gradient(135deg, rgba(241, 108, 235, 0.1), rgba(232, 94, 224, 0.1));
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(241, 108, 235, 0.15);
}

.step.active {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(241, 108, 235, 0.2);
}

.step-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.step h3 {
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
    font-weight: 600;
}

/* Custom text colors for each step */
.step[data-step="1"] h3 {
    background: linear-gradient(135deg, #6dc1e8, #4fb8e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step[data-step="2"] h3 {
    background: linear-gradient(135deg, #e85ee0, #6dc1e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step[data-step="3"] h3 {
    background: linear-gradient(135deg, #f16ceb, #e85ee0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-image {
    flex-grow: 1;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step:not(.active):hover .preview-image {
    transform: scale(1.05);
}

.step.active .step-image {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.step-content {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    padding: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.step.active .step-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.98);
}

/* Ensure expand button rotation stays on active state */
.step.active .expand-btn i {
    transform: rotate(180deg);
}

.step-content p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-size: 1rem;
    color: var(--dark);
}

.step-content ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style: none;
}

.step-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--dark);
    position: relative;
    padding-left: 0.5rem;
}

.step-content li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    top: 0;
}

/* Custom bullet colors for each step */
.step[data-step="1"] li::before {
    color: #6dc1e8;
}

.step[data-step="2"] li::before {
    color: #e85ee0;
}

.step[data-step="3"] li::before {
    color: #f16ceb;
}

/* Add a slight text shadow to the headings for better contrast */
.step h3 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Improve content visibility */
.step.active .step-content p,
.step.active .step-content li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.step-content p,
.step-content li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    color: var(--dark);
    opacity: 0.6;
}

.step.active .expand-btn {
    opacity: 1;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        height: 300px;
    }

    .step-content {
        padding: 1rem;
    }
}

/* Future Vision */
.future-vision {
    padding: 6rem 2rem;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--dark);
}

.timeline-item {
    margin: 2rem 0;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item:nth-child(1) .timeline-dot { background: var(--accent); }
.timeline-item:nth-child(2) .timeline-dot { background: var(--yellow); }
.timeline-item:nth-child(3) .timeline-dot { background: #6dc1e8; }

/* Final CTA + Vision Teaser */
.final-cta {
    background: var(--primary);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    color: var(--white);
    opacity: 0.1;
    font-size: 2rem;
    animation: float-icons 20s linear infinite;
}

/* Position icons randomly */
.floating-icons i:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { left: 85%; top: 30%; animation-delay: -4s; }
.floating-icons i:nth-child(3) { left: 20%; top: 80%; animation-delay: -8s; }
.floating-icons i:nth-child(4) { left: 70%; top: 70%; animation-delay: -12s; }
.floating-icons i:nth-child(5) { left: 30%; top: 40%; animation-delay: -16s; }
.floating-icons i:nth-child(6) { left: 60%; top: 90%; animation-delay: -20s; }

@keyframes float-icons {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.1;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta .cta-button {
    background: #6dc1e8;
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
    border-radius: 35px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 2rem;
}

.final-cta .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(241, 108, 235, 0.4);
    background: #7ac2e4;
}

.vision-teaser {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive adjustments for Final CTA */
@media (max-width: 768px) {
    .final-cta {
        padding: 6rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta h3 {
        font-size: 1.4rem;
    }

    .final-cta .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }

    .floating-icons i {
        font-size: 1.5rem;
    }

    .stat h3 {
        font-size: 2.8rem;
    }

    .stat p {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    padding: 4rem 2rem;
    color: var(--white);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-tagline {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--yellow);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.badge img {
    height: 32px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(83%) sepia(24%) saturate(636%) hue-rotate(332deg) brightness(101%) contrast(101%);
}

.badge span {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive adjustments for trust badges */
@media (max-width: 768px) {
    .badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .badge img {
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .badge span {
        font-size: 0.9rem;
    }
}

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

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legal-links,
.contact-links,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-links a,
.contact-links a,
.contact-links address {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-style: normal;
    font-size: 0.9rem;
}

.legal-links a:hover,
.contact-links a:hover {
    color: var(--yellow);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--yellow);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .steps-container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .problem-statement {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .hero-bg-left .hero-image {
        right: 0;
        width: 100%;
        filter: brightness(0.4) contrast(1.2);
    }

    .hero-bg-right .hero-image {
        left: 0;
        width: 100%;
        filter: brightness(0.9) saturate(1.1);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .stats-container {
        padding: 2rem;
    }

    .photo-collage {
        min-height: 300px;
        padding: 1.5rem;
    }

    .stats-image {
        max-width: 90%;
    }
}

.hero .cta-button {
    background: #f16ceb;
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 35px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(241, 108, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.hero .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(241, 108, 235, 0.4);
    background: #f47eee;
}

.hero .stats-counter {
    margin-top: 1rem;
    color: #f16ceb;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.counter {
    color: #f16ceb;
    font-weight: 700;
}

/* Responsive adjustments for hero CTA */
@media (max-width: 768px) {
    .hero .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero .stats-counter {
        font-size: 0.8rem;
    }
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::before,
.slider-handle::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--accent);
}

.slider-handle::before {
    transform: translateX(-5px);
}

.slider-handle::after {
    transform: translateX(5px);
}

/* Calculator Tool */
.calculator-tool {
    background: linear-gradient(135deg, rgba(241, 108, 235, 0.05), rgba(109, 193, 232, 0.05));
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.calculator-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-slideshow {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(241, 108, 235, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent), var(--yellow)) 1;
    padding: 1px;
}

.calculator-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.calculator-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.calculator-form {
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-group {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

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

.input-group input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid rgba(48, 48, 48, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.calculate-btn {
    width: 100%;
    max-width: 400px;
    padding: 1.2rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent), var(--yellow));
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--yellow), var(--accent));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.calculate-btn:hover::before {
    opacity: 1;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(228, 95, 43, 0.2);
}

.results-content {
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.results-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.results-cards-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: 2rem;
    flex-grow: 1;
    margin-top: 1rem;
    min-height: 600px;
}

/* Adjust card spacing */
.summary-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Card Styles */
.value-card {
    grid-column: 1;
    grid-row: 1 / 3;
}

.risk-card {
    grid-column: 2;
    grid-row: 1;
}

.action-card {
    grid-column: 2;
    grid-row: 2;
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Value Card Styles */
.value-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.value-item .label {
    color: #666;
    font-size: 0.9rem;
    flex: 1;
}

.value-item .amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    text-align: right;
    min-width: 140px;
}

.value-item.total .amount {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.value-item.covered .amount {
    color: var(--accent);
}

.value-item.gap .amount {
    color: var(--yellow);
}

.gap-note {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.chart-container {
    height: 200px;
    margin-top: 2rem;
}

/* Risk Card Styles */
.risk-factors {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.risk-factor {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.factor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.risk-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.risk-name i {
    font-size: 1rem;
    width: 20px;
    color: var(--accent);
}

.factor-value {
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 70px;
    text-align: center;
}

.factor-value.high {
    background: #fff1ec;
    color: var(--accent);
}

.factor-meter {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease-out;
}

.meter-fill.high {
    background: var(--accent);
    width: 90%;
}

.meter-fill.medium {
    background: var(--yellow);
    width: 60%;
}

.meter-fill.low {
    background: #44bb44;
    width: 20%;
}

/* Remove risk gauge styles */
.risk-gauge-container,
.risk-gauge,
.risk-indicator,
.risk-arrow,
.gauge-label {
    display: none;
}

/* Action Card Styles */
.action-card {
    background: linear-gradient(135deg, #f16ceb, #6dc1e8);
}

.action-content {
    padding: 1.5rem;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
}

.action-message h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.action-message p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.action-card .cta-button {
    background: white;
    color: #f16ceb;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-content {
        height: auto;
        padding: 1.5rem;
    }

    .results-cards-flow {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        min-height: auto;
    }

    .value-card, .risk-card, .action-card {
        grid-column: 1;
        grid-row: auto;
    }

    .card-header, .card-content {
        padding: 1rem;
    }

    .chart-container {
        height: 160px;
    }

    .value-item .amount {
        min-width: 120px;
    }
    
    .factor-value {
        min-width: 60px;
    }
}

/* Section Headers Standardization */
section h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--dark);
}

.solution h2 {
    color: var(--primary);
}

.how-it-works h2 {
    color: var(--secondary);
    font-size: 3.5rem; /* Matching other section titles */
}

.timeline-container h2 {
    color: var(--accent);
}

/* Subtitle Standardization */
section p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--dark);
}

.video-caption,
.timeline-subtitle,
.step-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Step Headers */
.step-header h3 {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 600;
}

/* Timeline Items */
.timeline-year {
    color: var(--secondary);
    font-weight: bold;
}

.timeline-text {
    color: var(--dark);
}

/* CTA Buttons */
.cta-button {
    background: var(--primary);
    color: var(--white);
}

.cta-button:hover {
    background: var(--accent);
}

/* Calculator Risk Colors */
.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(228, 95, 43, 0.3);
    background: #f06c3a;
}

/* Risk Assessment Colors */
.risk-badge.high {
    background: #fff1ec;
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.back-to-calculator {
    background: linear-gradient(135deg, var(--accent), var(--yellow));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 95, 43, 0.2);
}

.back-to-calculator i {
    font-size: 1.1rem;
}

@media (max-width: 1400px) {
    .nav-container {
        gap: 4rem;
        padding: 1rem;
    }
    
    .search-container {
        width: 250px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .demo-video {
        height: 80vh;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .video-caption {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
} 