:root {
    --primary-bg: #f8f3eb;
    --card-bg: #ffffff;
    --accent: #ffd233;
    --text: #2d2d2d;
    --secondary: #a7c5c5;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100..900;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100..900;
    font-style: normal;
}

body {
    background-color: var(--primary-bg);
    color: var(--text);
    font-family: 'Lora', serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .fw-bold {
    font-family: 'Montserrat', sans-serif;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f3eb 0%, #E6E9F0 100%);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 210, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(167, 197, 197, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.floating-mockup {
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.mockup-wrapper {
    position: relative;
}

.mockup-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 210, 51, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-badge span {
    margin-left: 0.5rem;
    font-weight: 500;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.btn-learn-more {
    background: linear-gradient(135deg, rgba(255, 210, 51, 0.1) 0%, rgba(167, 197, 197, 0.1) 100%);
    border: 2px solid rgba(255, 210, 51, 0.3);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-learn-more:hover {
    background: linear-gradient(135deg, rgba(255, 210, 51, 0.2) 0%, rgba(167, 197, 197, 0.2) 100%);
    transform: translateY(-2px);
    color: var(--text);
    border-color: var(--accent);
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent) 0%, #ffb347 100%);
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 210, 51, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 210, 51, 0.4);
    color: var(--text);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button i {
    font-size: 1.2em;
}

.phone-mockup {
    max-width: 300px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    margin: auto;
}

.phone-mockup:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.features {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

footer {
    background-color: var(--card-bg);
    padding: 40px 0;
}

footer a {
    color: var(--text);
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent);
}

hr {
    border-color: var(--secondary);
    opacity: 0.2;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-text {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 0;
    height: 30%;
    background-color: #FFDB58;
    z-index: -1;
    opacity: 0.4;
    transform: rotate(-2deg) skewX(-12deg);
    transition: all 0.3s ease;
}

.highlight-text:hover::after {
    opacity: 0.6;
    transform: rotate(-1deg) skewX(-8deg);
}

/* App Screenshots Gallery Styles */
.app-gallery {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.gallery-container {
    position: relative;
    overflow: hidden;
}

.screenshot-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-img {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.gallery-nav {
    margin-top: 30px;
}

.gallery-nav .nav-dot {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav .nav-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

.content {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
}

.content h1, .content h2 {
    font-family: 'Montserrat', sans-serif;
}

.content h1 {
    margin-bottom: 1.5rem;
}

.content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p, .content ul {
    margin-bottom: 1rem;
}

.content ul {
    padding-left: 1.5rem;
}

.content a {
    color: var(--text);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content a:hover {
    color: var(--accent);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: #333;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon-wrapper {
    background: #e9ecef;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover .quote-icon {
    color: #ffd233;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd233 0%, #ffb347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.1;
    color: #ffd233;
}