:root {
    --primary-color: #FF985E;
    --primary-dark: #C63000;
    --gradient-primary: linear-gradient(135deg, #FF985E, #C63000);
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(198, 48, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(198, 48, 0, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background-color: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: calc(100vh - 70px);
    overflow: hidden;
}

.hero-content {
    padding: 80px;
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-height: 90vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transform: rotate(5deg);
}

/* Features Section */
.features {
    background-color: var(--light-bg);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.feature-card .icon i {
    font-size: 32px;
}

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

.feature-card p {
    color: var(--text-light);
}

/* App Showcase Section */
.app-showcase {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.device-mockup {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-frame {
    position: relative;
    background-color: #111;
    border-radius: 36px;
    padding: 6px;
    width: 320px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    background-color: #fff;
}

.carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
    overflow: hidden;
    border-radius: 30px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.prev-btn, .next-btn {
    background-color: var(--primary-dark);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: var(--primary-dark);
}

.app-description {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.app-description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-description p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.app-features {
    margin-bottom: 40px;
}

.app-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-features li i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.web-app-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.web-app-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
}

.web-app-button i {
    font-size: 1.5rem;
}

.web-access {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.web-access strong {
    color: var(--primary-dark);
}

/* Value Proposition Sections */
.value-proposition {
    max-width: 1400px;
    margin: 0 auto;
}

.pet-owners {
    background-color: var(--white);
}

.vets {
    background-color: var(--light-bg);
}

.value-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.value-container.reversed {
    flex-direction: row-reverse;
}

.value-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s;
}

.vets .value-card {
    background-color: #fff;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.value-icon i {
    font-size: 24px;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.value-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.value-content ul {
    margin-left: 10px;
}

.value-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.value-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.value-screenshots {
    flex: 1;
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.primary-screenshot {
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    background-color: #fff;
    object-fit: contain;
    padding: 5px;
}

.floating-screenshot {
    position: absolute;
    width: 180px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
    background-color: #fff;
    object-fit: contain;
    padding: 3px;
}

.top-right {
    top: 0;
    right: 0;
    transform: rotate(8deg);
}

.bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-8deg);
}

.top-left {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}

.bottom-right {
    bottom: 0;
    right: 0;
    transform: rotate(8deg);
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-primary);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 0 20px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.avatar {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.dot.active {
    background-color: var(--white);
}

/* CTA Section */
.cta {
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cta-content {
    flex: 1;
    padding: 60px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-image {
    flex: 1;
    max-width: 50%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Footer */
footer {
    background-color: #222;
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.link-group {
    flex: 1;
    min-width: 150px;
}

.link-group h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.link-group a {
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.link-group a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu .nav-links {
    flex-direction: column;
    text-align: center;
}

.mobile-menu .nav-links a {
    font-size: 1.5rem;
    padding: 15px 0;
}

.mobile-menu .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
}

.mobile-menu .cta-buttons a {
    text-align: center;
    margin-bottom: 15px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.no-scroll {
    overflow: hidden;
}

/* Animation for Reveal Elements */
.feature-card, .value-card, .testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.revealed, .value-card.revealed, .testimonial.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animation for feature cards */
.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 60px 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .value-container {
        flex-direction: column-reverse;
    }
    
    .value-container.reversed {
        flex-direction: column-reverse;
    }
    
    .cta {
        flex-direction: column;
    }
    
    .cta-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 60px 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .app-showcase {
        flex-direction: column;
    }
    
    .footer-logo, .link-group {
        min-width: 100%;
    }
    
    .value-cards {
        order: 2;
    }
    
    .value-screenshots {
        order: 1;
        margin-bottom: 30px;
    }
    
    .floating-screenshot {
        width: 140px;
    }
    
    .primary-screenshot {
        width: 200px;
    }
} 