/* ==========================================================================
   1. ROOT & GENERAL STYLES
   ========================================================================== */
:root {
    --primary-orange: #F97316;
    --dark-navy: #0D2C4F;
    --dark-text: #1F2937;
    --medium-text: #4B5563;
    --white: #ffffff;
    --light-gray-bg: #F8F9FA;
    --light-gray-border: #E5E7EB;
    --green: #25D366;
    --card-blue: #00A9E0;
    --card-yellow: #FFC72C;
    --modal-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--modal-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--dark-text);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 800;
}

.btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    padding: 14px 30px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. ANIMATION & UTILITY STYLES
   ========================================================================== */
.animated {
    opacity: 0;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in { opacity: 0; }
.slide-in-up { transform: translateY(50px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }

.animated.is-visible {
    opacity: 1;
    transform: none;
}

.eyebrow-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-intro h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.interactive-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-go-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: #ccc;
    transform: translateX(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.interactive-card:hover .card-go-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* ==========================================================================
   3. PAGE SECTIONS
   ========================================================================== */
/* --- Header --- */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 5%;
    border-bottom: 1px solid var(--light-gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-text);
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo span {
    color: var(--primary-orange);
}

.header .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--dark-text);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.header .cta-button:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}
.header .cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0,0,0, 0.3);
}

.phone-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: ring 2.5s infinite ease-in-out 1s;
    transform-origin: center;
}

@keyframes ring {
    0% { transform: rotate(0); }
    5% { transform: rotate(25deg); }
    15% { transform: rotate(-20deg); }
    25% { transform: rotate(15deg); }
    35% { transform: rotate(-10deg); }
    45% { transform: rotate(5deg); }
    55% { transform: rotate(-2deg); }
    65% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* --- Hero Section --- */
.hero {
    background-color: var(--light-gray-bg);
    padding: 60px 0;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-text-box h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--dark-navy);
}
.hero-text-box p {
    font-size: 1.1rem;
    margin: 25px 0 35px 0;
    line-height: 1.7;
}
.hero-text-box p strong { font-weight: 700; color: var(--primary-orange); }
.hero-buttons { display: flex; gap: 15px; }
.hero-buttons .btn {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}
.hero-buttons .btn:hover {
    background-color: var(--white);
    color: var(--primary-orange);
}
.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --- Who We Support Section --- */


.support-section {
    padding: 80px 0;
}
.support-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    background-color: #000; /* Set black background */
    border-radius: 24px;
    overflow: hidden;
}
.support-card-text { 
    padding: 60px; 
    color: white; /* Set all text inside to white */
}

.support-card-text h2 {
    font-size: 3rem;
    text-align: left;
}

.support-card-text p { 
    margin-bottom: 30px; 
}

.support-card-text .btn {
    background-color: transparent;
    color: white; /* White text for button */
    border: 2px solid white; /* White border */
    padding: 12px 28px;
}

.support-card-text .btn:hover {
    background-color: white;
    color: black;
}

.support-card-image {
    height: 100%;
}
.support-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- Difference Section --- */
.difference {
    padding: 80px 0;
    background-color: var(--white);
}

.difference-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diff-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.diff-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
}

.diff-card p {
    margin-top: 10px;
    flex-grow: 1;
}

.diff-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.diff-card-icon svg { width: 32px; height: 32px; }

.card-1 { background-color: var(--dark-navy); color: white; }
.card-2 { background-color: var(--card-blue); color: white; }
.card-3 { background-color: var(--card-yellow); color: var(--dark-text); }

.card-1 h3, .card-1 p, .card-2 h3, .card-2 p { color: rgba(255, 255, 255, 0.9); }
.card-1 .diff-card-icon, .card-2 .diff-card-icon { background-color: white; }
.card-3 .diff-card-icon { background-color: rgba(0,0,0,0.1); }
.card-3 .diff-card-icon svg { fill: var(--dark-text); }

/* --- Feature Suite (Technology & Process) --- */
.feature-suite {
    background-color: #f7f9fc;
    padding: 80px 0;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); 
    margin-top: -80px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-icon { margin-bottom: 20px; }
.tech-icon svg { width: 48px; height: 48px; color: var(--primary-orange); }
.tech-feature-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.tech-feature-card p { color: #555; line-height: 1.6; }

#process-section {
    padding-top: 80px;
}

.process-steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr; 
    align-items: start;
    gap: 30px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    z-index: 0;
}

.process-step { padding-top: 50px; }
.process-step h3, .process-step p { position: relative; z-index: 1; }
.step-icon { margin-bottom: 15px; }
.step-icon svg { width: 40px; height: 40px; color: var(--primary-orange); }

.step-connector {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #ccc, #ccc 6px, transparent 6px, transparent 12px);
    margin-top: 85px;
}

/* --- Testimonials Section --- */

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray-bg);
    position: relative;
    overflow: hidden;
}

/* A decorative background element */
.testimonials::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 25rem;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    line-height: 0.8;
}

/* --- Grid Layout --- */
.testimonial-grid {
    display: grid;
    /* Creates a responsive grid that automatically wraps */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* --- Standard Card Styles --- */
.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--light-gray-border);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 400px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-weight: 800;
    color: var(--light-gray-border);
    line-height: 1;
    z-index: 0;
}

.star-rating {
    color: #FFC72C; /* Gold color for stars */
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.star-rating svg {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--medium-text);
    margin: 0;
    flex-grow: 1; /* Pushes the author to the bottom */
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    border-top: 1px solid var(--light-gray-border);
    padding-top: 25px;
    position: relative;
    z-index: 1;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.author-name {
    font-weight: 700;
    color: var(--dark-navy);
}

.author-title {
    font-size: 0.9rem;
    color: var(--medium-text);
}


/* --- Video Testimonial Card Styles --- */
.video-testimonial {
    padding: 0; /* Override default padding */
    justify-content: flex-end; /* Push content to the bottom */
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Replace with your video thumbnail image */
    background-image: url('images/video-thumbnail.jpg'); 
    transition: transform 0.4s ease;
}

.video-testimonial:hover .video-thumbnail {
    transform: scale(1.05);
}

/* Gradient overlay for text readability */
.video-thumbnail::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--white);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-orange);
    margin-left: 5px; /* Optically center the play icon */
}

/* Position author info over the video thumbnail */
.video-author-overlay {
    position: relative;
    z-index: 2;
    padding: 25px;
    border: none; /* Override default border */
}
.video-author-overlay .author-name,
.video-author-overlay .author-title {
    color: var(--white);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* --- AI Assistant Section --- */
.ai-assistant {
    background-color: black;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.ai-assistant::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/kanpur_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}
.ai-assistant h2, .ai-assistant p {
    color: var(--white);
}
.ai-assistant h2 {
    font-size: 3rem;
}
.ai-assistant p {
    max-width: 700px;
    margin: 20px auto 0 auto;
}

.ai-avatar-container {
    margin-bottom: 20px;
}
#ai-avatar-img {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.ai-chat-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.chat-header {
    background: var(--dark-text);
    color: var(--white);
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#lang-toggle-btn {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#lang-toggle-btn:hover {
    background-color: #e06514;
}
.chat-box {
    height: 350px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}
.chat-message {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    line-height: 1.5;
    color: var(--dark-text);
}
.user-message {
    background-color: #e9ecef;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.ai-message {
    background-color: var(--primary-orange);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    position: relative;
    padding-left: 50px;
    min-height: 40px;
}
.ai-message::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: url('https://storage.googleapis.com/maker-suite-images/29729a8a-5339-4475-b9f1-432d5612f0ce');
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.chat-input-area {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--light-gray-border);
    gap: 10px;
}
.chat-input-area #chat-input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}
.chat-input-area #chat-input:focus {
    border-color: var(--primary-orange);
}
.chat-input-area button {
    background: #f0f0f0;
    color: #555;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-input-area button svg {
    width: 24px;
    height: 24px;
    fill: #555;
}
.chat-input-area button:hover {
    background-color: #e0e0e0;
}
.chat-input-area button:active {
    transform: scale(0.95);
}
.chat-input-area #send-button {
    background-color: var(--primary-orange);
}
.chat-input-area #send-button svg {
    fill: white;
}
.chat-input-area #send-button:hover {
    background-color: #e06514;
}

#mic-button.active {
    background-color: #dc3545;
}
#mic-button.active svg {
    fill: white;
    transform: scale(1.1);
}

.loading-indicator {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.loading-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}
.loading-indicator .dot:nth-child(1) { animation-delay: -0.32s; }
.loading-indicator .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* --- App Download Section --- */
.app-download-section {
    padding: 80px 0;
    background-color: var(--light-gray-bg);
}
.app-download-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    overflow: hidden;
}
.app-download-text { padding: 60px; }
.app-download-text h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}
.app-download-text p {
    color: var(--medium-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.app-store-buttons { display: flex; gap: 15px; }
.app-store-buttons img { height: 45px; cursor: pointer; transition: transform 0.2s ease;}
.app-store-buttons img:hover { transform: scale(1.05); }

.app-download-image {
    text-align: right;
    position: relative;
    height: 100%;
    min-height: 400px;
}
.app-download-image img {
    position: absolute;
    bottom: -10%;
    right: -5%;
    max-width: 80%;
    transform: rotate(10deg);
}

/* --- CTA Banner Section --- */
.cta-banner {
    background-color: var(--card-yellow);
}
.cta-banner a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    text-decoration: none;
    color: var(--dark-navy);
    transition: background-color 0.3s ease;
}
.cta-banner a:hover { background-color: #ffda70; }
.cta-banner .cta-text p { font-weight: 600; }
.cta-banner .cta-text h2 { font-size: 3.5rem; }
.cta-banner .cta-arrow {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.cta-banner a:hover .cta-arrow { transform: rotate(45deg); }
.cta-banner .cta-arrow svg {
    width: 30px;
    height: 30px;
    stroke: var(--dark-navy);
}

/* --- Final CTA Section --- */
.final-cta {
    padding: 80px 0;
    background-color: var(--light-gray-bg);
}
.final-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: var(--dark-navy);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.final-cta-content {
    padding: 60px;
    color: var(--white);
}
.final-cta-content .founders {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.final-cta-content .founders strong {
    display: block;
    font-weight: 600;
}
.final-cta-content .btn {
    background-color: var(--primary-orange);
    color: var(--white);
}
.final-cta-content .btn:hover {
    background-color: var(--white);
    color: var(--primary-orange);
}
.final-cta-image {
    height: 100%;
}
.final-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Footer --- */

/* --- FOOTER --- */
.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    /* Use padding on the top and bottom, not the sides */
    padding: 0 5%; 
}

/* --- Layer 1: Newsletter Subscription --- */
.footer-subscribe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.subscribe-text p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    min-width: 400px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden; /* Ensures button border-radius is clean */
}

.subscribe-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--white);
    outline: none;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-form button {
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e06514; /* A darker shade of orange */
}

/* --- Layer 2: Main Footer Grid --- */
.footer-grid {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

#footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

#footer-brand .footer-logo span {
    color: var(--primary-orange);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li, .footer-contact li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-orange);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-orange);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

/* --- Layer 3: Bottom Bar --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* --- RESPONSIVENESS for the Footer --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-subscribe {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .subscribe-form {
        min-width: 0;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-socials {
        order: -1; /* Puts social icons above the copyright text */
    }
}
.footer {
    position: relative; /* Required for absolute positioning inside */
    overflow: hidden;
}

.footer-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Places it behind the content */
    opacity: 0.15; /* Make it faint */
    pointer-events: none; /* ***CRITICAL: Prevents map interaction*** */
}

.footer-map-bg iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(1); /* Styles map to be dark mode */
}

/* Make sure your footer content sits on top */
.footer .container {
    position: relative;
    z-index: 1;
}


/* ==========================================================================
   4. COMPONENTS
   ========================================================================== */
/* --- Premium Modal --- */
.modal {
            /* FIXED: Modal is hidden by default */
            display: none; 
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
            align-items: center;
            justify-content: center;
        }

.modal-content {
    background-color: #ffffff;
    padding: 2.5rem;
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.is-opening .modal-content {
    animation: subtleFadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.modal.is-closing .modal-content {
    animation: subtleFadeOutDown 0.5s ease-out forwards;
}

@keyframes subtleFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes subtleFadeOutDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}

.modal-content .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 24px;
    background-color: #f1f1f1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content .close-btn:hover, .modal-content .close-btn:focus {
    color: #333;
    background-color: #e7e7e7;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.modal-content p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.modal-content .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-content .form-group input,
.modal-content .form-group select,
.modal-content .form-group textarea {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
}

.modal-content .form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.7rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.8rem;
}

.modal-content .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-content .form-group input:focus,
.modal-content .form-group select:focus,
.modal-content .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(239, 108, 28, 0.1);
}

.modal-content .btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    color: white;
    background-image: linear-gradient(45deg, var(--primary-orange) 0%, #ff8c42 100%);
    box-shadow: 0 4px 15px rgba(239, 108, 28, 0.25);
}

.modal-content .btn:hover, .modal-content .btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(239, 108, 28, 0.4);
}

.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background-color: #f1f1f1; border-radius: 10px; }
.modal-content::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 10px; border: 2px solid #f1f1f1; }
.modal-content::-webkit-scrollbar-thumb:hover { background-color: #aaa; }

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    background-color: var(--green);
    animation: pulse 2s infinite ease-out;
}
.whatsapp-float::after {
    animation-delay: 1s;
}
@keyframes pulse {
    0% { width: 100%; height: 100%; opacity: 0.7; }
    100% { width: 200%; height: 200%; opacity: 0; }
}
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 140px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 120%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}
.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-text-box h1, .testimonial-intro h2, .difference-intro h2 { 
        font-size: 3rem; 
    }
    .hero .container, .support-card, .final-cta-card { 
        grid-template-columns: 1fr; 
    }
    .hero-image-container { 
        order: -1; 
    }
    .hero-text-box, .support-card-text, .final-cta-content { 
        text-align: center; 
    }
    .hero-buttons { 
        justify-content: center; 
    }
    .support-card-image { 
        order: -1; 
        height: 300px; 
    }
    .support-card-text h2 { 
        text-align: center;
    }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .process-steps-container {
        grid-template-columns: 1fr;
    }
    .step-connector {
        display: none;
    }
    .process-step:not(:last-child) {
        position: relative;
        padding-bottom: 50px;
    }
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: repeating-linear-gradient(0deg, #ccc, #ccc 6px, transparent 6px, transparent 12px);
    }
}

@media (max-width: 768px) {
    .app-download-card { 
        grid-template-columns: 1fr; 
    }
    .app-download-image {
        right: 0;
        margin-top: -40px;
        padding-bottom: 40px;
        order: -1;
        min-height: auto;
    }
    .app-download-image img {
        position: relative;
        bottom: auto;
        right: auto;
        transform: rotate(0deg) scale(1);
        max-width: 60%;
    }
    .cta-banner a { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
        padding: 40px 30px; 
    }
    .cta-banner .cta-text h2 { 
        font-size: 2.5rem; 
    }
    .section-intro { 
        margin-bottom: 40px; 
    }
    .interactive-card { 
        padding: 25px; 
    }
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1.5rem;
    }
    .modal-content h2 {
        font-size: 1.5rem;
    }
    .modal-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1, .hero-text-box h1 { 
        font-size: 2.5rem; 
    }
    .hero-buttons { 
        flex-direction: column; 
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
}







/* From Uiverse.io by chase2k25 */ 
.glass-radio-group-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0);
  padding: 1.5rem 1.2rem;
  border: 0px solid rgb(255, 255, 255, 0);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  width: 230px;
  overflow: hidden;
  gap: 0.5rem;
}

.glass-radio-group-vertical input {
  display: none;
}

.glass-radio-group-vertical label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ccc;
  cursor: pointer;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.label-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.radio-indicator {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  box-shadow: 0 0 0 2px transparent;
  transition: all 0.3s ease-in-out;
}

.checkmark {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.glass-glider-vertical {
  position: absolute;
  left: 0;
  height: 56px;
  width: 80%;
  margin-left: 20px;
  border-radius: 0.8rem;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.5, 1.6, 0.4, 1),
    background 0.5s ease-in-out,
    box-shadow 0.4s;
}

#glass-silver:checked ~ .glass-glider-vertical {
  transform: translateY(0%);
  background: linear-gradient(135deg, #00000050, #d1d1d1cc);
  box-shadow: 0 0 15px #00000077;
}
#glass-silver:checked + label {
  color: white;
}
#glass-silver:checked + label .radio-indicator {
  background: #c0c0c0;
  box-shadow:
    0 0 0 2px #858585aa,
    0 0 6px #6b6b6baa;
}
#glass-silver:checked + label .checkmark {
  opacity: 1;
  transform: scale(1);
}

#glass-gold:checked ~ .glass-glider-vertical {
  transform: translateY(115%);
  background: linear-gradient(135deg, #00000050, #ffbb00);
  box-shadow: 0 0 15px #00000077;
}
#glass-gold:checked + label {
  color: white;
}
#glass-gold:checked + label .radio-indicator {
  background: #ffc400;
  box-shadow:
    0 0 0 2px #9c7300d3,
    0 0 6px #695a00aa;
}
#glass-gold:checked + label .checkmark {
  opacity: 1;
  transform: scale(1);
}

#glass-platinum:checked ~ .glass-glider-vertical {
  transform: translateY(230%);
  background: linear-gradient(135deg, #00000050, #57d5ff);
  box-shadow: 0 0 15px #00000077;
}
#glass-platinum:checked + label {
  color: white;
}
#glass-platinum:checked + label .radio-indicator {
  background: #75c5ff;
  box-shadow:
    0 0 0 2px #0095ff5b,
    0 0 6px #0095ff57;
}
#glass-platinum:checked + label .checkmark {
  opacity: 1;
  transform: scale(1);
}

.glass-radio-group-vertical:has(#glass-silver:checked) {
  border-color: #c0c0c0;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 8px rgba(255, 255, 255, 0.4);
}

.glass-radio-group-vertical:has(#glass-gold:checked) {
  border-color: #ffbb00;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 8px rgba(255, 196, 0, 0.527);
}

.glass-radio-group-vertical:has(#glass-platinum:checked) {
  border-color: #57d5ff;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 8px rgba(0, 183, 255, 0.63);
}



/* From Uiverse.io by marcelodolza */ 
.button {
  --white: #ffe7ff;
  --bg: #080808;
  --radius: 100px;
  outline: none;
  cursor: pointer;
  border: 0;
  position: relative;
  border-radius: var(--radius);
  background-color: var(--bg);
  transition: all 0.2s ease;
  box-shadow:
    inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.3),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.5),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}
.button .wrap {
  font-size: 25px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 45px;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}
.button .wrap p span:nth-child(2) {
  display: none;
}
.button:hover .wrap p span:nth-child(1) {
  display: none;
}
.button:hover .wrap p span:nth-child(2) {
  display: inline-block;
}
.button .wrap p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transition: all 0.2s ease;
  transform: translateY(2%);
  mask-image: linear-gradient(to bottom, white 40%, transparent);
}
.button .wrap::before,
.button .wrap::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.button .wrap::before {
  left: -15%;
  right: -15%;
  bottom: 25%;
  top: -100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
}
.button .wrap::after {
  left: 6%;
  right: 6%;
  top: 12%;
  bottom: 40%;
  border-radius: 22px 22px 0 0;
  box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.button:hover {
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.4),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.7),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}
.button:hover .wrap::before {
  transform: translateY(-5%);
}
.button:hover .wrap::after {
  opacity: 0.4;
  transform: translateY(5%);
}
.button:hover .wrap p {
  transform: translateY(-4%);
}
.button:active {
  transform: translateY(4px);
  box-shadow:
    inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.5),
    inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.8),
    inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.4),
    0 3rem 3rem rgba(0, 0, 0, 0.3),
    0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}
