:root {
    --primary: #66754C;
    --primary-light: rgba(102, 117, 76, 0.1);
    --primary-dark: #556040;
    --secondary: #D5C7AA;
    --secondary-light: #F6EDDA;
    --secondary-dark: #C5B79A;
    --secondary-darker: #B5A78A;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --white-75: rgba(255, 255, 255, 0.75);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-25: rgba(255, 255, 255, 0.25);
}

/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

.text-white-75 {
    color: var(--white-75);
}

.border-white-25 {
    border-color: var(--white-25) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

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

/* Divider */
.divider {
    height: 4px;
    width: 80px;
    background-color: var(--primary);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-fade-in {
    opacity: 0;
}

.animate-slide-in-right {
    opacity: 0;
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-500 {
    animation-delay: 0.5s;
}

.animation-delay-700 {
    animation-delay: 0.7s;
}

.animation-delay-900 {
    animation-delay: 0.9s;
}

.animation-delay-1000 {
    animation-delay: 1s;
}

.animation-delay-1100 {
    animation-delay: 1.1s;
}

.animation-delay-1300 {
    animation-delay: 1.3s;
}

.animation-delay-1500 {
    animation-delay: 1.5s;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-3000 {
    animation-delay: 3s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Button Animations */
.btn-icon-animate {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon-animate {
    transform: translateX(5px);
}

.btn-icon-animate-down {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon-animate-down {
    transform: translateY(5px);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 8px solid white;
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background-color: black;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.phone-screen {
    margin-top: 24px;
    height: calc(100% - 24px);
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

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

.app-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.app-search {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app-card {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.store-thumb {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.app-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}

.app-nav-item {
    width: 40px;
    height: 40px;
    background-color: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.app-nav-item.active {
    color: var(--primary);
}

.app-nav-profile {
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
}

/* Feature Cards */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.hover-card {
    transition: all 0.3s ease;
}

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

/* App Store Badges */
.app-store-badge,
.play-store-badge {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-badge:hover,
.play-store-badge:hover {
    transform: scale(1.05);
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--primary);
    color: white;
}

.contact-item:hover {
    color: var(--primary);
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

/* Form Controls */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(102, 117, 76, 0.25);
}

/* Footer */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white-75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--white-75);
}

.hover-white {
    transition: color 0.3s ease;
}

.hover-white:hover {
    color: white;
}

/* User Circles */
.user-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid white;
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-secondary-darker {
    background-color: var(--secondary-darker);
}