@font-face {
    font-family: 'SkPrimo';
    src: url('fonts/SkPrimo.fonts/skprimo-regular-trial.ttf') format('woff2'),
         url('fonts/skprimo-regular-trial.ttf');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Garet';
    src: url('fonts/Garet-Book.otf') format('woff2'),
         url('fonts/Garet-Book.otf') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Garet-Heavy';
    src: url('fonts/Garet-Heavy.woff') format('woff2'),
         url('fonts/Garet-Heavy.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
/* Accessibility & SEO Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-dark-purple);
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for better keyboard navigation */
*:focus {
    outline: 3px solid var(--accent-light-purple);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    position: relative;
    z-index: 1;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
}

/* Font Loading States */
.fonts-loading body {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fonts-loaded body {
    visibility: visible;
    opacity: 1;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fonts-loaded .loading-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(61, 44, 141, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-dark-purple);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Optimize font loading */
@font-face {
    font-family: 'SkPrimo';
    src: url('fonts/SkPrimo.fonts/skprimo-regular-trial.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet';
    src: url('fonts/Garet-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet-Heavy';
    src: url('fonts/Garet-Heavy.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
:root {
    --primary-dark-purple: #3D2C8D; /* Deep Indigo */
    --primary-mid-purple: #6A1B9A;  /* Rich Purple */
    --accent-light-purple: #af87fe; /* Medium Orchid */
    --accent-pinkish-purple: #CE93D8; /* Light Orchid */
    --complementary-light: #F3E5F5; /* Lavender Tint */
    --text-light: #F5F5F5;
    --text-dark: #212121;
    --text-muted: #666;
    --card-bg: #ffffff;
    --section-bg-light: #FAF7FC; /* Very light purple tint */
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--section-bg-light);
    overflow-x: hidden;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
#hero .container {
    position: relative;
    z-index: 1;
}
.hero-text {
    font-family: 'SkPrimo', cursive;
    font-size: clamp(3rem, 12vw, 10rem); /* Responsive scaling */
    line-height: 1.1;
    margin: 0 auto;
    max-width: 95vw; /* Ensures it doesn't overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.03em;
    color: var(--text-light);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.boost {
    font-family: 'Garet';
    font-weight: 700;
    font-size: clamp(0.5rem, 12vw, 2rem); /* Match hero-text size */
    color: var(--accent-light-purple);
    text-shadow: 0 4px 10px rgba(106, 27, 154, 0.3);
}
h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-mid-purple);
}
h1 {
    font-family: 'SkPrimo', cursive;
    font-weight: 700;
    font-size: 8em;
    line-height: 1;
    letter-spacing: -0.02em;
}
h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8em;
    position: relative;
    font-weight: 700;
}
h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--accent-light-purple);
    margin: 15px auto 0;
    border-radius: 2px;
}
p {
    color: var(--text-muted);
    font-size: 1.05em;
}
/* Ensure main content paragraphs are clearly visible */
#about .about-text p,
.step-card p,
.reason-card p,
.pricing-card ul li {
    color: var(--text-dark);
}
#about .about-text strong {
    color: var(--primary-mid-purple);
}
a {
    text-decoration: none;
    color: var(--accent-light-purple);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-mid-purple);
}
.section-padding {
    padding: 80px 0;
    position: relative;
}
.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-light-purple);
    border-radius: 2px;
    opacity: 0.3;
}
.bg-light {
    background-color: var(--card-bg);
}
/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
    flex-direction: row; /* Ensure horizontal layout */
}
.logo {
    font-family: 'SkPrimo', cursive;
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-dark-purple);
}
/* Navigation Links */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    transition: all 0.5s ease-in-out;
}
.nav-item {
    margin-left: 30px;
}
.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    font-size: 0.95em;
    display: block;
}
/* Mobile Menu Button */
.menu-btn {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    margin-left: auto; /* Push to the right */
}
.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
    width: 30px;
    height: 3px;
    background-color: var(--primary-dark-purple);
    position: absolute;
    transition: all 0.3s ease;
}
.menu-btn__lines {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu-btn__lines::before,
.menu-btn__lines::after {
    content: '';
    left: 0;
}
.menu-btn__lines::before {
    top: -8px;
}
.menu-btn__lines::after {
    top: 8px;
}
/* Menu Open State */
.menu-open .menu-btn__lines {
    background-color: transparent;
}
.menu-open .menu-btn__lines::before {
    transform: rotate(45deg) translate(5px, 6px);
}
.menu-open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(5px, -6px);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background-color: var(--accent-light-purple);
    transition: width 0.4s ease;
    border-radius: 1px;
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-mid-purple);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);  /* 30% less transparent */
    font-size: 1.8rem;  /* 20% larger */
    animation: floatIcons 12s linear infinite;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;  /* 20% larger */
    height: 72px;  /* 20% larger */
    background: rgba(255, 255, 255, 0.15);  /* 30% less transparent */
    border-radius: 15px;  /* Slightly larger radius for bigger icons */
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Generate different positions and animations for each icon */
/* Position and animate each icon */
.floating-icons i:nth-child(1) {
    left: 8%;
    top: 12%;
    animation-delay: 0s;
    animation-duration: 18s;
    font-size: 3.2rem;
}

.floating-icons i:nth-child(2) {
    left: 88%;
    top: 18%;
    animation-delay: 2s;
    animation-duration: 20s;
    font-size: 3.5rem;
}

.floating-icons i:nth-child(3) {
    left: 15%;
    top: 78%;
    animation-delay: 3s;
    animation-duration: 22s;
    font-size: 3.8rem;
}

.floating-icons i:nth-child(4) {
    left: 78%;
    top: 75%;
    animation-delay: 1s;
    animation-duration: 19s;
    font-size: 3.3rem;
}

.floating-icons i:nth-child(5) {
    left: 52%;
    top: 15%;
    animation-delay: 2.5s;
    animation-duration: 21s;
    font-size: 3.6rem;
}

.floating-icons i:nth-child(6) {
    left: 25%;
    top: 25%;
    animation-delay: 1.5s;
    animation-duration: 23s;
    font-size: 3.4rem;
}

.floating-icons i:nth-child(7) {
    left: 65%;
    top: 80%;
    animation-delay: 3.5s;
    animation-duration: 20s;
    font-size: 3.7rem;
}

.floating-icons i:nth-child(8) {
    left: 35%;
    top: 15%;
    animation-delay: 0.5s;
    animation-duration: 24s;
    font-size: 3.5rem;
}

.floating-icons i:nth-child(9) {
    left: 85%;
    top: 70%;
    animation-delay: 4s;
    animation-duration: 22s;
    font-size: 3.6rem;
}

.floating-icons i:nth-child(10) {
    left: 65%;
    top: 30%;
    animation-delay: 1.5s;
    animation-duration: 21s;
    font-size: 4rem;  /* 20% larger */
}

.floating-icons i:nth-child(11) {
    left: 25%;
    top: 65%;
    animation-delay: 3.5s;
    animation-duration: 23s;
    font-size: 3.8rem;  /* 20% larger */
}

.floating-icons i:nth-child(12) {
    left: 75%;
    top: 55%;
    animation-delay: 2.5s;
    animation-duration: 20s;
    font-size: 4.2rem;  /* 20% larger */
}

@keyframes floatIcons {
    0% {
        transform: translateY(100vh) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.35;  /* 30% less transparent */
    }
    90% {
        opacity: 0.35;  /* 30% less transparent */
    }
    100% {
        transform: translateY(-100px) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-dark-purple) 0%, var(--primary-mid-purple) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 200px 0 150px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero h1 {
    font-family: 'SkPrimo', cursive;
    font-weight: 700;
    font-size: 16em;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
}
#hero .container {
    position: relative;
    z-index: 1;
}
#hero h1 {
    font-size: 4em;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#hero .dynamic-text-area {
    font-family: 'Garet-Heavy';
    font-size: 1em;
    color: var(--accent-light-purple);
    font-weight: 400;
    min-height: 1.5em;
    display: block;
    position: relative;
    padding: 0 10px;
    letter-spacing: 0.05em;
}
#hero .highlight {
    color: var(--accent-pinkish-purple);
    font-weight: bold;
}
#hero p.subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(245, 245, 245, 0.9);
}
.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 1px;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--accent-light-purple);
    color: var(--text-light);
    border-color: var(--accent-light-purple);
}
.btn-primary:hover {
    background-color: var(--accent-pinkish-purple);
    border-color: var(--accent-pinkish-purple);
    color: var(--text-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 15px rgba(171, 71, 188, 0.5);
}
.btn-primary:hover {
    background-color: var(--accent-pinkish-purple);
    border-color: var(--accent-pinkish-purple);
    color: var(--text-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 15px rgba(171, 71, 188, 0.5);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-mid-purple);
    border: 2px solid var(--primary-mid-purple);
}
.btn-secondary:hover {
    background-color: var(--primary-mid-purple);
    color: var(--text-light);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(106, 27, 154, 0.4);
}
/* Parallax Background for sections (example) */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    background-color: var(--section-bg-light);
}
/* About Section */
#about {
    background-color: var(--card-bg);
}
#about .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-inline: 20px;
}
#about .about-text {
    flex: 1.2;
}
#about .about-text p {
    margin-bottom: 15px;
}
#about .about-image {
    flex: 0.8;
    text-align: center;
}
#about .about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}
#about .about-image img:hover {
    transform: scale(1.05);
}
.social-platforms {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.social-platforms li {
    margin-bottom: 12px;
    font-size: 1.15em;
    color: var(--text-dark);
}
.social-platforms li i {
    margin-right: 12px;
    color: var(--accent-light-purple);
    width: 22px;
}
/* How It Works Section */
#how-it-works {
    background-color: var(--section-bg-light);
}
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}
.step-card {
    background-color: var(--card-bg);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}
.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px rgba(106, 27, 154, 0.15);
    border-bottom-color: var(--accent-light-purple);
}
.step-icon {
    font-size: 3.5em;
    color: var(--accent-light-purple);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}
.step-card:hover .step-icon {
    transform: scale(1.1);
}
.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.6em;
    color: var(--primary-dark-purple);
}
/* Why Us Section */
#why-us {
    background-color: var(--card-bg);
}
.reasons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    padding: 0 20px;
    margin-top: 60px;
}
.reason-card {
    background-color: var(--section-bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 6px solid var(--accent-light-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.reason-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 25px rgba(106, 27, 154, 0.1);
    background-color: var(--card-bg);
}
.reason-icon {
    font-size: 3em;
    color: var(--primary-mid-purple);
    margin-bottom: 20px;
}
.reason-card h3 {
    margin-bottom: 12px;
    font-size: 1.4em;
    color: var(--primary-dark-purple);
}
/* Pricing Section */
#pricing {
    background-color: var(--section-bg-light);
}
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}
.pricing-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 22px 45px rgba(106, 27, 154, 0.18);
}
.pricing-card.popular {
    border: 3px solid var(--accent-light-purple);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(171, 71, 188, 0.25);
}
.pricing-card.popular:hover {
     transform: translateY(-10px) scale(1.07);
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent-light-purple);
    color: var(--text-light);
    padding: 6px 35px;
    font-size: 0.9em;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.pricing-header h3 {
    font-size: 2em;
    margin-bottom: 12px;
    color: var(--primary-dark-purple);
}
.price {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--primary-mid-purple);
    margin-bottom: 8px;
}
.suitable-for {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95em;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}
.pricing-card ul li {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.05em;
}
.pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-light-purple);
    margin-right: 12px;
}
.pricing-card .btn {
    margin-top: 25px;
    width: 85%;
}
/* Contact Section */
#contact {
    background-color: var(--card-bg);
}
#contact .contact-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 20px;
}
#contact .contact-image {
    flex: 1;
    text-align: center;
    margin-top: 0;
}
#contact .contact-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#contact .contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-item {
    display: flex;
    align-items: center;
    background-color: var(--section-bg-light);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 27, 154, 0.1);
}
.contact-item i {
    font-size: 1.8em;
    color: var(--accent-light-purple);
    margin-right: 20px;
    width: 30px;
}
.contact-item p {
    margin: 0;
    font-size: 1.1em;
    color: var(--text-dark);
}
.contact-item a {
    color: var(--primary-dark-purple);
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--accent-light-purple);
}
#contact .contact-image {
    flex: 1;
    text-align: center;
    margin-top: 0;
}
#contact .contact-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* Footer */
footer {
    background-color: var(--primary-dark-purple);
    color: var(--complementary-light);
    padding: 40px 0;
    text-align: center;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer p {
    margin: 0 0 20px 0;
    color: rgba(243, 229, 245, 0.8);
    font-size: 0.95em;
}
.social-links a {
    color: var(--complementary-light);
    margin: 0 12px;
    font-size: 1.6em;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
    color: var(--accent-pinkish-purple);
    transform: scale(1.1);
}
/* Scroll Animations */
.section-padding {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}
.about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}
.step-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: calc(0.1s * var(--i, 0));
}
.reason-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: calc(0.1s * var(--i, 0));
}
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: calc(0.1s * var(--i, 0));
}
.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: calc(0.1s * var(--i, 0));
}
.contact-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* Hero Section Animations */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--accent-light-purple);
    }
    50% {
        text-shadow: 0 0 20px var(--accent-light-purple),
                    0 0 30px var(--accent-light-purple),
                    0 0 40px var(--accent-light-purple);
    }
}
/* Apply animations */
.hero-text {
    animation: slideInFromLeft 1s ease-out forwards;
}
.boost {
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.3s;
}
.dynamic-text-area {
    opacity: 1;
    visibility: visible;
}
#hero .subtitle {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.9s;
}
#hero .btn {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.2s;
}
/* Enhance animations on hover */
.hero-text:hover {
    animation: glow 2s ease-in-out forwards;
}
/* Responsive Design */
@media (max-width: 992px) {
    header {
        padding: 0;
    }

    nav.container {
        padding: 0 20px;
        height: 60px; /* Slightly smaller on mobile */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.8em;
        margin: 0;
        padding: 0;
        line-height: 1;
        position: relative;
        z-index: 1001;
        display: flex;
        align-items: center;
        height: 100%;
        /* Ensure logo stays on the left */
        margin-right: auto;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        padding: 0;
        margin: 0 0 0 20px; /* Add left margin to separate from logo */

        z-index: 1001;
        /* Ensure hamburger stays on the right */
        margin-left: auto;
    }

    .menu-btn__lines,
    .menu-btn__lines::before,
    .menu-btn__lines::after {
        width: 24px;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-btn__lines::before {
        top: -6px;
    }

    .menu-btn__lines::after {
        top: 6px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 0 20px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease-in-out;
        margin: 0;
    }

    .menu-open .nav-links {
        right: 0;
    }

    .nav-item {
        margin: 15px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
        list-style: none;
        padding: 0;
        width: 100%;
    }

    .nav-item a {
        display: block;
        padding: 12px 15px;
        border-radius: 4px;
        transition: background-color 0.2s;
    }

    .nav-item a:hover {
        background-color: rgba(106, 27, 154, 0.05);
    }

    .menu-open .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .menu-open .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .menu-open .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .menu-open .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .menu-open .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .menu-open .nav-item:nth-child(5) { transition-delay: 0.5s; }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    header {
        padding: 15px 0;
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    /* Contact Section Mobile Styles */
    #contact .contact-content-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 0 10px;
    }
    
    #contact .contact-info,
    #contact .contact-image {
        width: 100%;
        flex: none;
        padding: 0 5px;
    }
    
    #contact .contact-image {
        order: -1;
        margin: 0 auto 25px;
        max-width: 90%;
    }
    
    #contact .contact-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .contact-item {
        padding: 16px 18px;
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        border-left: 4px solid var(--accent-light-purple);
    }
    
    .contact-item i {
        font-size: 1.4em;
        margin: 3px 15px 0 5px;
        min-width: 24px;
        text-align: center;
    }
    
    .contact-item p {
        font-size: 0.95em;
        line-height: 1.5;
    }
    
    .contact-item a {
        word-break: break-all;
    }
    nav.container {
        padding: 0 20px;
        height: 30px; /* Slightly smaller on mobile */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 5px 12px;
    }
    #hero {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    #hero h1 {
        font-size: 2.5em;
    }
    #hero .dynamic-text-area {
        font-size: 1.3em;
    }
    #hero p.subtitle {
        font-size: 1.1em;
    }
    h2 {
        font-size: 2.2em;
    }
    .section-padding {
        padding: 60px 0;
    }
    #about .about-content {
        flex-direction: column;
        text-align: center;
    }
    #about .about-image {
        margin-top: 30px;
    }
    .pricing-card.popular {
        transform: scale(1); 
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px) scale(1.02);
    }
}
@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    #contact .section-padding {
        padding: 35px 0 40px;
    }
    
    #contact .contact-content-wrapper {
        padding: 0 8px;
    }
    
    .contact-item {
        padding: 14px 12px;
        margin-bottom: 12px;
        flex-direction: row;
        align-items: center;
    }
    
    .contact-item i {
        font-size: 1.3em;
        margin: 0 12px 0 0;
        min-width: 22px;
    }
    
    .contact-item p {
        font-size: 0.92em;
    }
    
    .contact-item p {
        font-size: 0.95em;
    }
    
    #contact h2 {
        margin-bottom: 30px;
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.9em;
    }
    #hero h1 {
        font-size: 2em;
    }
    #hero .dynamic-text-area {
        font-size: 1.1em;
    }
    #hero p.subtitle {
        font-size: 1em;
    }
    .container {
        width: 95%;
        padding: 0 10px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .popular-badge {
        font-size: 0.8em;
        padding: 4px 25px;
        right: -35px;
    }
    .step-card, .reason-card, .pricing-card, .contact-item {
        padding: 25px 20px;
    }
}