/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }
  
:root {
    --primary-purple: #1E0E3E;
    --bright-cyan: #00D1FF;
    --warm-yellow: #FFD700;
    --soft-purple: #8A4FFF;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-purple);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, .display-font {
    font-family: 'Clash Display', serif;
}

/* Floating Paws */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0;
    will-change: transform, opacity;
    font-size: 1.5rem;
}

.shape::before {
    content: '\f1b0';  /* Font Awesome paw icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Colored paw styles */
.paw-purple {
    color: var(--soft-purple);
}

.paw-cyan {
    color: var(--bright-cyan);
}

.paw-yellow {
    color: var(--warm-yellow);
}

/* Position and animate paws with different paths */
.shape:nth-child(3n+1) { 
    left: 10%; 
    top: 20%; 
    animation: floatPaw1 15s linear infinite; 
    font-size: 2rem;
}
.shape:nth-child(3n+2) { 
    left: 20%; 
    top: 40%; 
    animation: floatPaw2 18s linear infinite; 
    animation-delay: 2s; 
    font-size: 1.8rem;
}
.shape:nth-child(3n+3) { 
    left: 30%; 
    top: 60%; 
    animation: floatPaw3 20s linear infinite; 
    animation-delay: 4s; 
    font-size: 2.2rem;
}
.shape:nth-child(3n+4) { 
    left: 40%; 
    top: 80%; 
    animation: floatPaw1 17s linear infinite; 
    animation-delay: 6s; 
    font-size: 1.6rem;
}
.shape:nth-child(3n+5) { 
    left: 50%; 
    top: 20%; 
    animation: floatPaw2 19s linear infinite; 
    animation-delay: 8s; 
    font-size: 2rem;
}
.shape:nth-child(3n+6) { 
    left: 60%; 
    top: 40%; 
    animation: floatPaw3 16s linear infinite; 
    animation-delay: 10s; 
    font-size: 1.8rem;
}
.shape:nth-child(3n+7) { 
    left: 70%; 
    top: 60%; 
    animation: floatPaw1 21s linear infinite; 
    animation-delay: 12s; 
    font-size: 2.2rem;
}
.shape:nth-child(3n+8) { 
    left: 80%; 
    top: 80%; 
    animation: floatPaw2 22s linear infinite; 
    animation-delay: 14s; 
    font-size: 1.6rem;
}
.shape:nth-child(3n+9) { 
    left: 90%; 
    top: 30%; 
    animation: floatPaw3 18s linear infinite; 
    animation-delay: 16s; 
    font-size: 2rem;
}
.shape:nth-child(3n+10) { 
    left: 15%; 
    top: 70%; 
    animation: floatPaw1 19s linear infinite; 
    animation-delay: 18s; 
    font-size: 1.8rem;
}
.shape:nth-child(3n+11) { 
    left: 25%; 
    top: 90%; 
    animation: floatPaw2 17s linear infinite; 
    animation-delay: 20s; 
    font-size: 2.2rem;
}
.shape:nth-child(3n+12) { 
    left: 35%; 
    top: 10%; 
    animation: floatPaw3 20s linear infinite; 
    animation-delay: 22s; 
    font-size: 1.6rem;
}

/* Different floating animations for variety */
@keyframes floatPaw1 {
    0% {
        transform: translateY(100vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

@keyframes floatPaw2 {
    0% {
        transform: translateY(100vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(-360deg) translateX(-50px);
        opacity: 0;
    }
}

@keyframes floatPaw3 {
    0% {
        transform: translateY(100vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(180deg) translateX(25px);
        opacity: 0;
    }
}

/* Add subtle paw trail effect */
.shape::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: currentColor;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.1;
    transform: scale(1.5);
    animation: pawTrail 2s ease-out infinite;
}

@keyframes pawTrail {
    0% {
        transform: scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Enhanced Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Add floating paws to sections */
.hero, .features, .benefits, .contact {
    position: relative;
    overflow: hidden;
}

.hero::before, .features::before, .benefits::before, .contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-purple);
    margin: 0;
    padding: 0;
}

.logo-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--soft-purple);
}

.nav-cta {
    background: var(--soft-purple);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--bright-cyan);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.1;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--warm-yellow);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-btn {
    background: var(--soft-purple);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.secondary-btn {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--soft-purple);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--soft-purple);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bright-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

/* Smart Features Section with Light Lemon Background */
.features {
    padding: 6rem 0;
    background: #FFF9C4;  /* Light lemon color */
    position: flex;
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 85%,
        95% 90%,
        90% 85%,
        85% 90%,
        80% 85%,
        75% 90%,
        70% 85%,
        65% 90%,
        60% 85%,
        55% 90%,
        50% 85%,
        45% 90%,
        40% 85%,
        35% 90%,
        30% 85%,
        25% 90%,
        20% 85%,
        15% 90%,
        10% 85%,
        5% 90%,
        0% 85%
    );
    margin-bottom: -2rem;  /* Fix card cutting issue */
}

.features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    border-radius: 50%;
    top: 50%;
    right: -150px;
    opacity: 0.1;
}

/* Add decorative top border */
.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, transparent 49%, var(--soft-purple) 49%, var(--soft-purple) 51%, transparent 51%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 49%, var(--soft-purple) 49%, var(--soft-purple) 51%, transparent 51%, transparent 100%);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

/* Features Section */
.features-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 6.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.features-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.feature-card {
    flex: 0 0 300px; /* Fixed width for each card */
    scroll-snap-align: start;
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--bright-cyan);
    border-radius: 50%;
    top: -75px;
    right: -75px;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-purple);
    font-family: 'Clash Display', serif;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.feature-list li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--soft-purple);
    position: absolute;
    left: 0;
}

/* Add subtle pattern overlay */
.features .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 20px 20px, 10px 10px, 10px 10px;
    opacity: 0.5;
    z-index: 0;
}

/* Ensure content stays above the pattern */
.features-grid {
    position: relative;
    z-index: 2;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--soft-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-image {
    width: 100%;
    height: 200px;
    margin: 1rem 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Add connecting lines between steps */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-purple), var(--bright-cyan));
    z-index: 2;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .step-image {
        height: 180px;
    }
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--soft-purple);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    opacity: 0.1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--warm-yellow);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-family: 'Clash Display', serif;
}

.benefit-card p {
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--bright-cyan);
    border-radius: 50%;
    bottom: -300px;
    right: -300px;
    opacity: 0.1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.contact-info h3 {
    color: var(--primary-purple);
    margin-bottom: 2rem;
    font-family: 'Clash Display', serif;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
    background: var(--soft-purple);
    color: var(--white);
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--soft-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item span {
    color: var(--text-gray);
    font-weight: 500;
}

.info-item:hover span {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    color: var(--soft-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--soft-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    background: var(--white);
    color: var(--primary-purple);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-purple);
    box-shadow: 0 0 0 3px rgba(138, 79, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .primary-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    top: 0;
    left: 0;
    z-index: 0;
}

/* Add large paw decoration */
.footer::after {
    content: '\f1b0';  /* Font Awesome paw icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.05);
    right: -100px;
    bottom: -100px;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
    width: 90px;
    height: 90px;
}

.footer-brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand .logo h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    gap: 1rem;
}

.app-downloads a {
    transition: var(--transition);
    opacity: 0.8;
}

.app-downloads a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.app-downloads img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #E8F5E9;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-section a:hover {
    color: #E8F5E9;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section a:hover {
        transform: translateY(-3px);
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-purple);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card, .benefit-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Enhanced Glass Effect */
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile menu active state */
.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    z-index: 999;
}

/* Animation for cards on scroll */
.feature-card, .benefit-card, .step-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.animate, .benefit-card.animate, .step-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Add a subtle gradient overlay to enhance glass effect */
.hero::after, .features::after, .benefits::after, .contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above the gradient */
.hero-container, .section-container {
    position: relative;
    z-index: 2;
}

/* Section Headings Spacing */
.section-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-purple), var(--bright-cyan));
    border-radius: 3px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Add animation delays for staggered effects */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Enhanced section transitions */
.hero, .features, .how-it-works, .benefits, .contact {
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Parallax scroll effect for backgrounds */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 0.3s ease-out;
}

/* Smooth section transitions */
.section-container {
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Enhanced card hover effects */
.feature-card, .step-card, .benefit-card {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, opacity 0.4s ease-out;
}

.feature-card:hover, .step-card:hover, .benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Smooth image transitions */
img {
    transition: transform 0.5s ease-out;
}

/* Enhanced button transitions */
.primary-btn, .secondary-btn {
    transition: all 0.3s ease-out;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bright-cyan) 0%, var(--primary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--soft-purple);
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    padding: 1.5rem;
    margin: 0;
    color: var(--primary-purple);
}

.team-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    margin: 0;
}

/* Enhanced Contact Links */
.contact-info .info-item {
    cursor: pointer;
    transition: var(--transition);
}

.contact-info .info-item:hover {
    transform: translateX(10px);
    background: var(--soft-purple);
    color: var(--white);
}

.contact-info .info-item:hover span {
    color: var(--white);
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--soft-purple);
    color: var(--white);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h1 {
        font-size: 2.8rem;
    }

    .story-grid, .values-grid, .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }

    .about-content h1 {
        font-size: 2.2rem;
    }

    .story-card, .value-card, .team-card {
        padding: 2rem;
    }
}

/* Get Started Page */
.get-started {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    min-height: 100vh;
}

.onboarding-steps {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
    transform: translateY(-50%);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--soft-purple);
    color: var(--white);
}

.step.completed .step-number {
    background: var(--bright-cyan);
    color: var(--white);
}

.step-title {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.step.active .step-title {
    color: var(--primary-purple);
}

.step-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.step-panel h3 {
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

/* Pet Info Form */
.pet-info-form {
    max-width: 500px;
    margin: 0 auto;
}

.pet-info-form .form-group {
    margin-bottom: 1.5rem;
}

.pet-info-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pet-info-form input,
.pet-info-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    color: var(--primary-purple);
    transition: var(--transition);
}

.pet-info-form input:focus,
.pet-info-form select:focus {
    border-color: var(--soft-purple);
    outline: none;
}

/* Device Setup */
.device-setup {
    max-width: 600px;
    margin: 0 auto;
}

.setup-image {
    margin-bottom: 2rem;
    text-align: center;
}

.setup-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.setup-steps {
    margin-bottom: 2rem;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.setup-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--soft-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.step-text h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.setup-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* App Setup */
.app-setup {
    max-width: 600px;
    margin: 0 auto;
}

.setup-options {
    margin-bottom: 2rem;
}

.setup-option {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.setup-option h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    cursor: pointer;
}

.time-range {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.time-range label {
    color: var(--text-gray);
}

.time-range input {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
}

.contact-input {
    display: flex;
    gap: 1rem;
}

.contact-input input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
}

/* Completion Step */
.completion-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--bright-cyan);
    margin-bottom: 1.5rem;
}

.completion-message p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.next-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.next-steps h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: "•";
    color: var(--soft-purple);
    position: absolute;
    left: 0;
}

.completion-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }

    .step-indicator::before {
        display: none;
    }

    .step {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        padding: 1rem;
        background: var(--white);
        border-radius: 10px;
    }

    .step-number {
        margin-bottom: 0;
    }

    .time-range {
        grid-template-columns: 1fr;
    }

    .contact-input {
        flex-direction: column;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-quote {
    font-size: 1.3rem;
    color: var(--primary-purple);
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem 3rem;
    transition: var(--transition);
    min-width: 250px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-info h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--soft-purple);
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 1rem;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }

    .about-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}

/* Global Responsive Styles */
@media (max-width: 1200px) {
    .container, .hero-container, .features-grid, .benefits-grid, .contact-grid, .footer-container {
        max-width: 95%;
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    /* Features Section */
    .features-grid {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .feature-card {
        flex: 0 0 280px;
    }
    
    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    /* Navigation */
    .nav-container {
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Features Section */
    .features-grid {
        gap: 1rem;
    }
    
    .feature-card {
        flex: 0 0 260px;
        padding: 2rem;
    }
    
    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Contact Section */
    .contact-info, .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    /* Navigation */
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Features & Benefits Cards */
    .feature-card, .benefit-card {
        padding: 1.5rem;
    }
    
    .feature-icon, .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Contact Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .footer-brand .logo h2 {
        font-size: 1.5rem;
    }
    
    .app-downloads {
        justify-content: center;
    }
    
    .app-downloads img {
        height: 35px;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid, .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* High-DPI Screen Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon img,
    .hero-image img,
    .feature-card img,
    .benefit-card img {
        image-rendering: -webkit-optimize-contrast;
    }
}
