:root {
    /* Color Palette - Vibrant Logo Theme */
    --brand-blue: #0062cc;
    --brand-green: #59a721;
    --bg-main: #f8fafc;
    --bg-secondary: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --accent-glow: rgba(0, 98, 204, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: #ffffff; /* White header requested by user */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    height: 80px; /* Slim header */
}

.navbar.scrolled {
    padding: 10px 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    width: 150px;
    height: 100%;
}

.logo img {
    position: absolute;
    top: -10px; /* Let it hang down slightly */
    height: 140px; /* Big logo as requested */
    width: auto;
    transition: transform 0.3s ease;
    z-index: 1001;
    /* Original logo, no filters! */
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-primary); /* Dark text for white header */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--brand-blue) !important;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--brand-green);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(89, 167, 33, 0.4);
}

/* Make Admin Login button much smaller and simpler in the header */
.nav-links .btn-primary {
    background: transparent;
    color: var(--text-primary) !important;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    box-shadow: none;
}

.nav-links .btn-primary:hover {
    background: var(--brand-blue);
    color: #ffffff !important;
    border-color: var(--brand-blue);
    transform: none;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--brand-blue);
    box-shadow: 0 6px 20px rgba(0, 98, 204, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--brand-blue);
    padding: 10px 24px;
    border: 2px solid var(--brand-blue);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 5px 15px var(--accent-glow);
}

.btn-glow {
    display: inline-block;
    background: #fff;
    color: var(--brand-blue);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-glow:hover {
    transform: scale(1.05);
    background: var(--brand-green);
    color: #fff;
}

/* Hero Section & Slider */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-blue);
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slider-bg.active-slide {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.7) 0%, rgba(89, 167, 33, 0.7) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hover effect */
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.4) 0%, rgba(89, 167, 33, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover .hero-overlay::after {
    opacity: 1;
}

/* Add a cool sweeping arrow-like curve to the hero bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--bg-main);
    transform: skewY(-3deg);
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeUp 0.8s ease forwards;
}

.hero-content.active-content {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    transition: color 0.5s ease;
}

.hero:hover h1 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active-dot {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* About Section */
.about {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%); /* Blue theme */
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
}

.about-container.animate-on-scroll .about-content {
    animation: slideRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.about-title {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
}

.about-container.animate-on-scroll .about-title::after {
    animation: expandLineLeft 0.8s ease 0.6s forwards;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* About Image with Floating Effect */
.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
}

.about-container.animate-on-scroll .about-image-wrapper {
    animation: slideLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 98, 204, 0.2);
    top: -50px;
    left: -50px;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(89, 167, 33, 0.2);
    bottom: -30px;
    right: -30px;
    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}

@keyframes slideRight {
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
    to { transform: translateX(0); opacity: 1; }
}

@keyframes expandLineLeft {
    to { width: 80px; }
}

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

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

@keyframes slideUp {
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 70px 5% 60px;
    background: linear-gradient(135deg, #f2fbf4 0%, #e6f6eb 100%); /* Green theme */
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--brand-blue) !important;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    animation: floatCard 6s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 1.5s; }
.service-card:nth-child(3) { animation-delay: 3s; }
.service-card:nth-child(4) { animation-delay: 4.5s; }

.service-card:hover {
    animation-play-state: paused;
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 98, 204, 0.15);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
}

.service-card.active {
    border-color: rgba(100, 150, 255, 0.3);
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.1);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.badge-active {
    background: #00e676; /* Much brighter green */
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
    font-weight: 800;
}

.badge-upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.upcoming .card-content {
    opacity: 0.7;
}

/* How It Works Section */
.how-it-works {
    padding: 70px 5%;
    background: linear-gradient(135deg, #f2fbf4 0%, #e6f6eb 100%); /* Green theme */
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.step.animate-on-scroll {
    animation: slideUp 0.8s ease forwards;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    color: var(--brand-blue);
    background: transparent;
    transition: transform 0.3s ease, color 0.3s ease;
}

.step:hover .step-icon {
    transform: translateY(-10px) scale(1.05);
    color: var(--brand-green);
}

.step h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Connecting Arrows (Desktop) */
@media (min-width: 900px) {
    .step:not(:last-child)::after {
        content: '→';
        position: absolute;
        top: 50px;
        right: -30px;
        font-size: 2.5rem;
        color: var(--brand-blue);
        opacity: 0.4;
        font-weight: 300;
        z-index: 1;
    }
}

/* Connecting Arrows (Mobile) */
@media (max-width: 899px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.5rem;
        color: var(--brand-blue);
        opacity: 0.4;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 5%;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.choose-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.choose-image-wrapper {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.choose-image-wrapper.animate-on-scroll {
    animation: slideLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.choose-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    animation: floatImage 7s ease-in-out infinite alternate;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(89, 167, 33, 0.15); /* Greenish */
    bottom: -30px;
    right: -30px;
    animation: floatShape 9s ease-in-out infinite alternate-reverse;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: rgba(0, 98, 204, 0.15); /* Blueish */
    top: -20px;
    right: 50px;
    animation: floatShape 6s ease-in-out infinite alternate;
}

.choose-content {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
}

.choose-content.animate-on-scroll {
    animation: slideRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    animation: floatFeature 5s ease-in-out infinite;
}

/* Stagger animations for floating grid items */
.feature-card:nth-child(even) { animation-delay: 1s; }
.feature-card:nth-child(3n) { animation-delay: 2s; }
.feature-card:nth-child(5n) { animation-delay: 1.5s; }

.feature-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    animation-play-state: paused;
    box-shadow: 0 15px 30px rgba(0, 98, 204, 0.1);
    border-color: rgba(0, 98, 204, 0.1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(89, 167, 33, 0.1);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

@keyframes floatFeature {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
    .choose-container {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 5% 30px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col .footer-logo {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--brand-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 30px;
        margin: 20px;
    }
}

/* Secondary Buttons */
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(90deg, var(--brand-blue), #00d2ff); /* Attractive gradient */
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 98, 204, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: auto;
    text-align: center;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 98, 204, 0.6);
    background: linear-gradient(90deg, #00d2ff, var(--brand-blue));
}

/* App Section */
.app-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%); /* Blue theme matching About */
    position: relative;
    overflow: hidden;
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.app-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
}

.app-content.animate-on-scroll {
    animation: slideRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: not-allowed;
    opacity: 0.8;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.app-btn-icon {
    display: flex;
    align-items: center;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text .small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-green);
    font-weight: 700;
}

.app-btn-text .big {
    font-size: 1.2rem;
    font-weight: 600;
}

.app-image-wrapper {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    display: flex;
    justify-content: center;
}

.app-image-wrapper.animate-on-scroll {
    animation: slideLeft 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Custom CSS Phone Mockup */
.css-phone {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #222;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 0 2px #333;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: floatImage 8s ease-in-out infinite;
}

.css-phone-notch {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: #222;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.css-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6f0fa 0%, #e6f6eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    position: relative;
}

.phone-loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid var(--brand-blue);
    border-radius: 50%;
    margin-top: 30px;
    margin-bottom: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .app-container {
        flex-direction: column;
        text-align: center;
    }
    .app-content .section-header {
        text-align: center !important;
    }
    .app-buttons {
        justify-content: center;
    }
    .css-phone {
        margin-top: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: #fdfdfd;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.faq-container.animate-on-scroll {
    animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: floatFeature 5s ease-in-out infinite;
}

.faq-item:nth-child(even) { animation-delay: 1s; }
.faq-item:nth-child(3n) { animation-delay: 2s; }
.faq-item:nth-child(5n) { animation-delay: 1.5s; }

.faq-item:hover {
    animation-play-state: paused;
}

.faq-item[open] {
    border-color: rgba(0, 98, 204, 0.2);
    box-shadow: 0 10px 25px rgba(0, 98, 204, 0.05);
    animation: none; /* Stop floating when open so reading is easier */
    transform: translateY(0) !important;
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    color: var(--brand-blue);
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.animate-on-scroll {
    animation: slideUp 0.8s ease forwards;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 98, 204, 0.08);
    border-color: rgba(0, 98, 204, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.phone-icon { background: rgba(0, 98, 204, 0.1); color: var(--brand-blue); }
.whatsapp-icon { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.email-icon { background: rgba(234, 67, 53, 0.1); color: #EA4335; }
.location-icon { background: rgba(89, 167, 33, 0.1); color: var(--brand-green); }

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

.contact-card:hover .phone-icon { background: var(--brand-blue); color: #fff; box-shadow: 0 10px 20px rgba(0, 98, 204, 0.3); }
.contact-card:hover .whatsapp-icon { background: #25D366; color: #fff; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.contact-card:hover .email-icon { background: #EA4335; color: #fff; box-shadow: 0 10px 20px rgba(234, 67, 53, 0.3); }
.contact-card:hover .location-icon { background: var(--brand-green); color: #fff; box-shadow: 0 10px 20px rgba(89, 167, 33, 0.3); }

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}