/* 1. GLOBAL COLORS DEFINITION */
:root {
    --primary-color: #89986D;
    --secondary-color: #9CAB84;
    --light-green: #C5D89D;
    /* Light Sage */
    --bg-cream: #F6F0D7;
    /* Cream Background */
    --text-dark: #2d3436;

    --footer-dark: #1A1A1A; /* Dark background from image */
    --lime-green: #71A71B;
    --text-gray: #B0B0B0;
}

body {
    background-color: #fff !important;
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.navbar-brand,
h1,
h2,
h3,
h4,
h5 {
    color: var(--primary-color) !important;
}

.hero-section {
    background-color: #ffffff;
    border-bottom: 5px solid var(--secondary-color);
}

.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}



.hero-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 2px solid #eee;
}

.navbar-brand {
    font-weight: bold;
    color: #ff6b6b !important;
}


/* Why Pawpal Section Styling */
.why-pawpal-section {
    background-color: #FAF9F6; /* Light cream background from screenshot */
    padding: 80px 0;
    overflow: hidden;
}

.why-image-container {
    padding: 0 40px; /* Spacing from the blue border line in screenshot */
}

.why-image-container img {
    width: 100%;
    border-radius: 12px; /* Slightly rounded corners like the Figma box */
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 500px;
}

.why-content-wrapper {
    padding: 0 80px; /* Content ko center mein rakhne ke liye padding */
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #333;
    margin-bottom: 25px;
}

.why-title span {
    color: #8CC33A; /* Brand Green */
}

.why-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    max-width: 550px; /* Text ko boht lamba stretch hone se rokne ke liye */
}

.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #131B1A 0%, #1F2E2A 45%, #0C1214 100%);
    color: #F7F7F7;
    padding: 80px 0;
}

.contact-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
}

.contact-topbar .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-topbar .logo-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #FFFFFF;
    display: grid;
    place-items: center;
    color: #1B2422;
    font-weight: 800;
    font-size: 1.2rem;
}

.btn-get-started {
    background-color: var(--lime-green);
    border-color: var(--lime-green);
    color: white;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.9rem 1.8rem;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%),
                radial-gradient(circle at bottom right, rgba(113,167,27,0.18), transparent 30%);
    pointer-events: none;
}

.contact-copy h1 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.contact-copy p {
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 2.4rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.contact-card label {
    font-weight: 600;
    color: #2D3436;
}

.contact-card .form-control {
    border-radius: 14px;
    border: 1px solid #E2E2E2;
    padding: 1rem 1.1rem;
    box-shadow: none;
}

.contact-card textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-card .btn-primary {
    border-radius: 14px;
    padding: 0.95rem 1.2rem;
}

@media (max-width: 991px) {
    .contact-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-hero {
        padding: 1.5rem 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-pawpal-section {
        padding: 50px 0;
    }
    .why-content-wrapper {
        padding: 40px 20px 0 20px;
        text-align: center;
    }
    .why-title {
        font-size: 2rem;
    }
    .why-image-container {
        padding: 0 20px;
    }
    .why-description {
        margin: 0 auto;
    }
}


.features-section {
    background-color: #FAF9F6; /* Cream background */
}

.features-main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.features-main-title span {
    color: #8CC33A; /* Brand Green */
}

.features-top-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Feature Cards Styling */
.feature-box {
    background-color: #7CB325; /* Specific green from screenshot */
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    color: white;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.icon-wrap {
    background-color: #FFFFFF; /* White background */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Slightly rounded corners */
    margin-bottom: 20px;
    /* Screenshot ke mutabiq chota shadow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
}

/* SVG size control inside the white box */
.icon-wrap svg {
    width: 24px;
    height: 24px;
}

.feature-box {
    background-color: #7CB325; /* Green Box */
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    color: white;
}

.feature-box h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white !important;
}

.feature-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Responsive fixes */
@media (max-width: 992px) {
    .features-main-title { font-size: 2rem; margin-bottom: 15px; }
    .features-top-desc { max-width: 100%; }
}



/* How Works Section Styling */
.how-works-section {
    background-color: #FCF9F1; /* Screenshot background color */
    padding: 80px 0;
    overflow: hidden;
}

.how-works-section .container {
    max-width: 1200px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333 !important;
    margin-bottom: 15px;
}

.section-title span.brand-name {
    color: #8CC33A; /* Brand Green */
}

.section-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px auto; /* Center desc & bottom margin */
    line-height: 1.6;
}

/* Dashboard specific styles */
.dashboard-wrapper {
    min-height: 100vh;
    background: #fff;
}
.dashboard-sidebar {
    min-height: 98vh;
    background: var(--primary-color);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 5px;
    left: 5px;
    width: 20%;
    border-radius: 20px;
}
.dashboard-sidebar .brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.dashboard-sidebar .profile-card {
    background: #f7f4e6;
}
.profile-avatar {
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
}
.dashboard-nav .nav-link {
    margin-bottom: 0.65rem;
    font-weight: 600;
    color: #171717;
    border-radius: 1rem;
    padding: 0.95rem 1.1rem;
    transition: all 0.25s ease;
}
.dashboard-nav .nav-link.active,
.dashboard-nav .nav-link:hover {
    background: #ffffff;
    color: #000 !important;
}
.dashboard-main {
    color: var(--text-dark);
    padding-left: 70px !important;
}
.dashboard-header h1 {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 700;
}
.dashboard-card,
.dashboard-panel {
    border: none;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(38, 40, 42, 0.08);
}
 .dashboard-card {
    position: relative;
    overflow: hidden;
 }

 .pet-list {
    background-color: #f7f4e6 !important;
    border-radius: 8px;
    transition: background-color 0.3s ease;
 }
 
 .pet-list:hover {
    background-color: #ede8d5 !important;
 }

.dashboard-card-img {
    position: absolute;
    bottom: -20px;
    right: -22px;
    width: 120px;
    height: 120px;
    opacity: 1;
    border-radius: 100%;
    background-color: #e9f7d2;
    display: flex;
    align-items: center;
    justify-content: center;
}


.dashboard-card-img img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}




.dashboard-panel {
    height: 450px;
    overflow-y: auto;
}
.dashboard-card p,
.dashboard-card h2 {
    margin: 0;
}
.dashboard-card p {
    font-size: 0.95rem;
    color: #727272;
}
.dashboard-card h2 {
    color: var(--primary-color);
    font-size: 2.4rem;
}
.dashboard-card .badge {
    background: rgba(137, 152, 109, 0.14);
    color: var(--primary-color);
    font-size: 0.85rem;
    padding: 0.65rem 0.95rem;
}
.panel-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}
.reminder-item,
.health-item {
    border-radius: 1.2rem;
    background: var(--light-green);
    padding: 1rem;
}

.health-item h3 {
    color: #000 !important;
}
.reminder-item p,
.health-item p {
    margin: 0;
}
.table-dashboard thead tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
/* .table-dashboard tbody tr:hover {
    background: #fbfaf5;
} */
.notification-button {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.2rem;
}
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background: #dc3545;
    color: #fff;
    border: 2px solid #fff;
}
.user-profile-badge {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.profile-badge-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    min-width: 44px;
}
.pet-info-card {
    background: linear-gradient(135deg, #89986D 0%, #76835a 100%);
    color: white;
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(38, 40, 42, 0.12);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pet-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(38, 40, 42, 0.15);
}
.pet-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}
.pet-info-card .info-row {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.pet-info-card .info-row:last-child {
    border-bottom: none;
}
.pet-info-card .label {
    font-weight: 600;
    opacity: 0.95;
    font-size: 0.95rem;
}
.pet-info-card .value {
    font-size: 1.05rem;
    font-weight: 500;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}
@media (max-width: 991px) {
    .dashboard-sidebar {
        min-height: auto;
    }
    .dashboard-header h1 {
        font-size: 2rem;
    }
}

/* Works Content Wrapper (Grid Layout) */
.works-content-wrapper {
    display: grid;
    grid-template-columns: 610px 1fr; /* Image size as a column width */
    gap: 120px; /* Big spacing from blue box in screenshot */
    align-items: start;
}

.works-image-container img.img-works-main {
    width: 100%;
    height: 469px; /* Aspect ratio from screenshot */
    border-radius: 20px; /* Highly rounded corners from blue box */
    object-fit: cover;
    object-position: top;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* Timeline/Steps Styling (Center Dashed Line) */
.works-timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 43px; /* Left indent from the dashed line */
    text-align: left;
    height: 100%;
    justify-content: flex-start;
    padding-top: 10px; /* To align first checkmark better */
}

/* Center Dashed Line through icons */
.works-timeline-container::after {
    content: "";
    position: absolute;
    left: 10px; /* Center of the check icon (35px width / 2) */
    top: 10px; /* Offset from first step start */
    bottom: 25px; /* Offset from last step end */
    border-left: 2px dashed rgba(140, 195, 58, 0.6); /* Semi-transparent dashed brand green */
    z-index: 1;
    max-height: 340px; /* Limit the dashed line height */
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: start;
    margin-bottom: 50px; /* Spacing between steps */
    z-index: 2; /* To put checkmark & content on top of dashed line */
}

.step-icon {
    font-size: 18px; /* Big icon size from blue box */
    color: #8CC33A; /* Brand Green */
    margin-right: 20px; /* Content space */
    background: #FCF9F1; /* Background color on icon to 'break' the line where needed */
    width: 23px; /* Size for line center calculation */
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #333 !important;
    margin-bottom: 5px;
}

.step-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Specific class to break the timeline dashed line after the last step */
.no-dashed-line {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .works-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .works-image-container img.img-works-main {
        height: auto;
    }
    .works-timeline-container {
        padding-left: 40px;
    }
}


:root {
    
}

.footer-section {
    background-color: var(--footer-dark);
    padding: 80px 0 30px 0;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    border-radius: 25px 25px 0 0; /* Optional: matches the card-like style in your project */
}

.text-lime { color: var(--lime-green); }

.footer-main-heading {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFFFFF  !important;
}

.footer-sub-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Newsletter Form */
.subscribe-form {
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-input {
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    padding: 12px 20px;
}

.newsletter-input::placeholder { color: #888; }
.newsletter-input:focus {
    background: rgba(255,255,255,0.05);
    border-color: var(--lime-green);
    color: #fff;
    box-shadow: none;
}

.btn-subscribe {
    background-color: var(--lime-green);
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Divider */
.footer-divider {
    border-top: 1px solid #333;
    opacity: 1;
}

.social-links {
    gap: 15px;
}

/* Social & Links */
.social-links a {
    background-color: #FFFFFF;
    color: var(--footer-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: var(--lime-green);
    color: white;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-nav a:hover { color: var(--lime-green); }

.copyright-wrap {
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: var(--text-gray);
}