:root {
    --bg-dark: #070707;
    --text-light: #ffffff;
    --primary: #7b61ff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Base overlay to ensure text contrast */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 0.5rem;
    gap: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.btn-primary {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Hero Content - Placed at bottom left */
.hero-content {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 0 4rem 4rem 4rem;
    max-width: 100%;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.btn-call:hover {
    transform: translateY(-2px);
}

.btn-call .arrow {
    background: var(--primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.2rem;
    line-height: 1;
}

.subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.85);
    text-transform: lowercase;
}

.title {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 3.5rem;
}

/* Metrics Section */
.metrics {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    gap: 2rem;
    max-width: 1400px;
}

.metric-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}

.metric-text h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

.metric-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    font-weight: 500;
}

.metric-text p strong {
    color: #fff;
    font-weight: 700;
}

/* About Section */
.about-section {
    background-color: #f5f5f5;
    color: #000;
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.about-image-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 300px;
}

.about-image-left .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.badge-1 {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 3rem;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.signature {
    font-family: 'Brush Script MT', cursive, serif;
    font-size: 2rem;
    margin-top: 2rem;
    transform: rotate(-10deg);
    color: #333;
}

.about-content {
    flex: 1;
    max-width: 500px;
}

.section-subtitle {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    color: #111;
}

.about-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #6a4ff0;
}

.btn-secondary .arrow-circle {
    background: #fff;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.2rem;
    line-height: 1;
}

.about-image-right {
    position: relative;
    width: 250px;
    border-radius: 20px;
    margin-top: 100px;
}

.about-image-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fire-emoji {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Offer Section */
.offer-section {
    background-color: #f5f5f5;
    padding: 0 4rem 8rem 4rem;
    display: flex;
    justify-content: center;
}

.offer-container {
    background: #fff;
    border-radius: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.offer-top {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.offer-text-area {
    flex: 1;
}

.offer-desc {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
}

.offer-desc strong {
    color: #111;
    font-weight: 700;
}

.offer-main-card {
    flex: 1.5;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.offer-main-card img, .offer-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.offer-small-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
}

.red-overlay {
    background: linear-gradient(to top, rgba(150,0,0,0.9), transparent);
}

/* Blog Section */
.blog-section {
    background-color: #f5f5f5;
    padding: 4rem;
    display: flex;
    justify-content: center;
}

.blog-container {
    max-width: 1200px;
    width: 100%;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.blog-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #333;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nav-btn.next {
    background: var(--primary);
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 420px;
}

.blog-card.highlighted {
    background: var(--primary);
    color: #fff;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.date-pill {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.date-pill.outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}

.blog-card .arrow-circle {
    width: 30px;
    height: 30px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.blog-card .arrow-circle.outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: auto;
}

.blog-card.highlighted p {
    color: rgba(255,255,255,0.8);
}

.blog-card:not(.highlighted) p {
    color: #666;
}

.blog-img-placeholder {
    height: 160px;
    border-radius: 15px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.blog-cta-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-secondary.dark {
    background: #111;
    color: #fff;
    padding: 0.8rem 0.8rem 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary.dark .arrow-circle {
    background: #fff;
    color: #111;
}

.btn-secondary.dark:hover {
    background: #000;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f5f5f5;
    padding: 0 4rem 8rem 4rem;
    display: flex;
    justify-content: center;
}

.testimonials-container {
    background: #fff;
    border-radius: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.testimo-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.testimo-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.testimo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimo-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #e0e0e0;
    overflow: hidden;
    flex-shrink: 0;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    background: #e0e0e0;
}

.reviewer-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.reviewer-details p {
    font-size: 1rem;
    color: #666;
}

.stars {
    margin-left: auto;
    color: #F1C40F;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimo-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

.testimo-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
    margin-bottom: 3rem;
}

.testimo-nav {
    display: flex;
    gap: 1rem;
    align-self: flex-start;
}

/* Footer Section */
.main-footer {
    background-color: #050505;
    color: #fff;
    padding: 0 4rem 4rem 4rem;
    position: relative;
    margin-top: 15rem; /* Space for the floating card */
}

.footer-cta-card {
    background-image: url('assets/footer-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 4rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: -10rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Add a dark gradient overlay to make text readable */
.footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 40px;
    pointer-events: none;
}

.footer-cta-card > * {
    position: relative;
    z-index: 2;
}

.footer-cta-card .cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

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

.footer-top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-area .logo-white {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255,255,255,0.1);
}

.footer-newsletter p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

.newsletter-input-group {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    padding: 0.2rem 0.2rem 0.2rem 1.5rem;
    width: 350px;
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    flex: 1;
    font-family: inherit;
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-input-group button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-links-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links-row a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

.back-to-top {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.arrow-up {
    background: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .hero-content {
        padding: 0 2rem 3rem 2rem;
    }

    .title {
        font-size: 4rem !important;
    }

    .about-section {
        padding: 4rem 2rem;
    }

    .about-container {
        gap: 2rem;
    }

    .about-image-right {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .offer-section {
        padding: 0 2rem 4rem 2rem;
    }

    .offer-container {
        padding: 2rem;
        border-radius: 25px;
    }

    .offer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .offer-main-card {
        height: 280px;
    }

    .offer-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-section {
        padding: 2rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card {
        height: auto;
        min-height: 350px;
    }

    .testimonials-section {
        padding: 0 2rem 4rem 2rem;
    }

    .testimonials-container {
        padding: 2rem;
        border-radius: 25px;
    }

    .testimo-content {
        gap: 2rem;
    }

    .main-footer {
        padding: 0 2rem 2rem 2rem;
        margin-top: 12rem;
    }

    .footer-cta-card {
        padding: 3rem;
        border-radius: 25px;
    }

    .footer-cta-card .cta-title {
        font-size: 2.5rem;
    }

    .footer-links-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 1.5rem 2.5rem 1.5rem;
    }

    .title {
        font-size: 2.8rem !important;
        letter-spacing: -1px !important;
    }

    .metrics p {
        font-size: 1.1rem !important;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image-left {
        width: 220px;
    }

    .about-image-right {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

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

    .offer-section {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .offer-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .offer-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .offer-main-card {
        height: 220px;
    }

    .offer-bottom-grid {
        grid-template-columns: 1fr;
    }

    .offer-small-card {
        height: 180px;
    }

    .card-overlay h3 {
        font-size: 1.2rem;
    }

    .blog-section {
        padding: 1.5rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .blog-card {
        height: auto;
        min-height: auto;
    }

    .blog-img-placeholder {
        height: 120px;
    }

    .testimonials-section {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .testimonials-container {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .testimo-content {
        flex-direction: column;
        gap: 2rem;
    }

    .testimo-image {
        height: 250px;
    }

    .main-footer {
        padding: 0 1.5rem 2rem 1.5rem;
        margin-top: 10rem;
    }

    .footer-cta-card {
        padding: 2rem;
        border-radius: 20px;
        min-height: 300px;
        top: -8rem;
    }

    .footer-cta-card .cta-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .footer-content {
        margin-top: -3rem;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links-row {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .title {
        font-size: 2.2rem !important;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .footer-cta-card .cta-title {
        font-size: 1.6rem;
    }

    .btn-call {
        font-size: 1rem;
    }
}
