/* 
   Kaya Walks - Dog Walking Service
   Theme: Elegant, Vibrant, and Trustworthy
*/

:root {
    /* Color Palette */
    --primary: #F97316;       /* Vibrant Orange for energy/dogs */
    --primary-hover: #EA580C;
    --secondary: #0F172A;     /* Deep Navy for trust/elegance */
    --accent: #38BDF8;        /* Sky blue for freshness */
    --accent-light: #E0F2FE;
    
    --bg-color: #F8FAFC;
    --surface: #FFFFFF;
    
    --text-main: #334155;
    --text-light: #64748B;
    
    --border: #E2E8F0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-width: 1100px;
    --border-radius: 16px;
}

/* ==================================
   Base Reset
   ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ==================================
   Buttons
   ================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

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

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

/* ==================================
   Header
   ================================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
    font-style: italic;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
}

.nav-link:hover {
    color: var(--primary);
}

/* ==================================
   Hero Section
   ================================== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-light) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 500px;
    animation: slideUp 0.8s ease-out forwards;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-light);
    color: #0369A1;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(249, 115, 22, 0.2);
    z-index: -1;
    transform: rotate(-1deg);
}

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

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    background: #F1F5F9;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed #CBD5E1;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 650px;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    /* Removed fixed aspect ratio and object-fit cover to show the full image */
    height: auto;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius);
    z-index: 1;
}

/* ==================================
   Services Section (Pricing & Availability)
   ================================== */
.services {
    padding: 80px 0;
    background-color: var(--surface);
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feat-icon {
    display: inline-block;
    background-color: var(--accent-light);
    color: #0369A1;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

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

.highlight-card {
    background-color: var(--secondary);
    color: white;
    border: none;
}

.highlight-card h3 {
    color: white;
}

.highlight-card p {
    color: #CBD5E1;
}

.highlight-card .feat-icon {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.card-price {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

/* ==================================
   Booking Form
   ================================== */
.booking {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.contact-promise {
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    color: #0369A1;
}

.booking-form-wrapper {
    background-color: var(--surface);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-color);
    font-family: var(--font-body);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-color);
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background-color: var(--surface);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

/* ==================================
   Footer
   ================================== */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

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

.footer p {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-location {
    margin-top: 10px;
    font-weight: 600;
    color: var(--accent);
}

/* ==================================
   Animations
   ================================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ==================================
   Responsive Design
   ================================== */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .highlight::after {
        left: 20%;
        width: 60%;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .header-content nav {
        display: none; /* Simplification for mobile */
    }
    
    .booking-form-wrapper {
        padding: 20px;
    }
}
