body.landing-page {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;

    --primary-orange: #ff6b35;
    --primary-orange-dark: #e55a2b;
    --primary-orange-light: #ffefe5;
    --secondary-orange: #ff8c42;
    --accent-orange: #ffa726;
    --accent-orange-light: #ffe0b2;
    --bg-light: #fff7ed;
    --bg-lighter: #fffdf9;
    --text-secondary: #6b7280;
    --text-muted: #99a1aa;
}

body.landing-page .hero {
    position: relative;
    background: linear-gradient(120deg, rgba(255, 107, 53, 0.65), rgba(255, 193, 7, 0.45)), url('https://source.unsplash.com/1600x900/?pets') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

body.landing-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.55), rgba(255, 107, 53, 0.4));
    backdrop-filter: blur(2px);
}

body.landing-page .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%);
    mix-blend-mode: screen;
    z-index: 1;
}

body.landing-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

body.landing-page .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

body.landing-page .hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.92);
}

body.landing-page .hero-buttons .btn {
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

body.landing-page .hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border: none;
}

body.landing-page .hero-buttons .btn-primary:hover,
body.landing-page .hero-buttons .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
    transform: translateY(-2px);
}

body.landing-page .hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}

body.landing-page .hero-buttons .btn-outline-light:hover,
body.landing-page .hero-buttons .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.9);
}

body.landing-page section {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.75), rgba(255, 255, 255, 0.95));
}

body.landing-page #testimonials {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 239, 229, 0.9));
}

body.landing-page .section-header {
    margin-bottom: 60px;
}

body.landing-page .section-header h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 15px;
    color: var(--primary-orange);
}

body.landing-page .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

body.landing-page .highlight {
    color: var(--secondary-orange);
}

body.landing-page .feature-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(255, 107, 53, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

body.landing-page .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 34px 80px rgba(255, 107, 53, 0.18);
}

body.landing-page .feature-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary-orange);
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6);
}

body.landing-page .feature-card h4 {
    margin-bottom: 16px;
    font-weight: 700;
    color: #1f2937;
}

body.landing-page .feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

body.landing-page .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

body.landing-page .testimonial-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
}

body.landing-page .testimonial-card:hover {
    transform: translateY(-8px);
}

body.landing-page .testimonial-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid rgba(255, 107, 53, 0.6);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.18);
}

body.landing-page .testimonial-content {
    text-align: center;
}

body.landing-page .testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

body.landing-page .testimonial-content h5 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2937;
}

body.landing-page .testimonial-content span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

body.landing-page .contact-wrapper {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    box-shadow: 0 32px 70px rgba(255, 107, 53, 0.15);
    padding: 60px;
    border: 1px solid rgba(255, 193, 7, 0.18);
}

body.landing-page .contact-info i {
    color: var(--primary-orange);
    font-size: 1.25rem;
}

body.landing-page .contact-info a,
body.landing-page .contact-info span {
    color: var(--text-secondary);
}

body.landing-page .contact-info a:hover {
    color: var(--primary-orange);
}

body.landing-page .social-links {
    display: flex;
    gap: 16px;
}

body.landing-page .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.3);
}

body.landing-page .social-icon:hover {
    transform: translateY(-4px) scale(1.02);
}

body.landing-page .contact-form {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 239, 229, 0.9));
    padding: 36px;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 193, 7, 0.18);
}

body.landing-page .form-control {
    padding: 12px 16px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.landing-page .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
    border-color: var(--primary-orange);
}

body.landing-page .contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(255, 107, 53, 0.18);
}

body.landing-page .contact-form .btn-primary:hover,
body.landing-page .contact-form .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
    transform: translateY(-1px);
}

body.landing-page .footer {
    background: #1f2937;
    color: rgba(255, 255, 255, 0.9);
    padding: 70px 0 32px;
    position: relative;
}

body.landing-page .footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.18), transparent 45%);
    pointer-events: none;
}

body.landing-page .footer h5 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--accent-orange);
}

body.landing-page .footer p,
body.landing-page .footer a {
    color: rgba(255, 255, 255, 0.75);
}

body.landing-page .footer a:hover {
    color: var(--accent-orange);
}

body.landing-page .footer .btn-outline-light {
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

body.landing-page .footer .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

body.landing-page .footer hr {
    border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 992px) {
    body.landing-page .contact-wrapper {
        padding: 40px;
    }

    body.landing-page .services-header-row,
    body.landing-page .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    body.landing-page section {
        padding: 64px 0;
    }

    body.landing-page .testimonial-cards {
        flex-direction: column;
    }

    body.landing-page .contact-wrapper {
        padding: 32px 24px;
    }
}

/* Profile dropdown styling has been moved to navbar.css */