/* ============================================
   Happy Home Dream – Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1a5632;
    --primary-light: #2a7a4a;
    --primary-dark: #0f3d22;
    --accent: #e8a838;
    --accent-hover: #d4952e;
    --secondary: #2c3e50;
    --bg-light: #f8faf9;
    --bg-cream: #fdfaf5;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 48px rgba(0,0,0,0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(.25,.8,.25,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* ---------- Utility ---------- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.6rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 20px auto 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Animated Background Shapes ---------- */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

/* ---------- Navbar ---------- */
.navbar-custom {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1050;
}
.navbar-custom.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--primary-dark) !important;
}
.navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.navbar-brand span { color: var(--accent); }

.navbar-custom .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    margin: 0 2px;
    position: relative;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary) !important;
    background: rgba(26,86,50,0.06);
}
.navbar-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white) !important;
    font-weight: 700;
    padding: 10px 26px !important;
    border-radius: 50px !important;
    border: none;
    box-shadow: 0 4px 15px rgba(232,168,56,0.35);
}
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,168,56,0.5);
    color: var(--white) !important;
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0f3d22 0%, #1a5632 40%, #2a7a4a 70%, #1a5632 100%);
    overflow: hidden;
    padding: 100px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(232,168,56,0.3);
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; width: 4px; height: 4px; }
.hero-particles span:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; width: 8px; height: 8px; }
.hero-particles span:nth-child(4) { top: 80%; left: 30%; animation-delay: 1s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 10%; left: 70%; animation-delay: 3s; }
.hero-particles span:nth-child(6) { top: 70%; left: 60%; animation-delay: 5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(7) { top: 30%; left: 90%; animation-delay: 2.5s; width: 7px; height: 7px; }
.hero-particles span:nth-child(8) { top: 90%; left: 15%; animation-delay: 4.5s; width: 3px; height: 3px; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.4); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 2;}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,168,56,0.15);
    border: 1px solid rgba(232,168,56,0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h1 .highlight {
    color: var(--accent);
    position: relative;
}
.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(232,168,56,0.4);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(232,168,56,0.55);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats .stat h3 {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 2px;
}
.hero-stats .stat p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* Hero image area */
.hero-image-area {
    position: relative;
    z-index: 2;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
}
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: float-card 4s ease-in-out infinite;
}
.hero-float-card.top-right { top: -20px; right: -20px; }
.hero-float-card.bottom-left { bottom: -20px; left: -20px; animation-delay: 2s; }
.hero-float-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.hero-float-card .icon-box.green { background: rgba(26,86,50,0.1); color: var(--primary); }
.hero-float-card .icon-box.gold { background: rgba(232,168,56,0.1); color: var(--accent); }
.hero-float-card h5 { font-size: 0.85rem; font-weight: 700; margin: 0; color: var(--text-dark); }
.hero-float-card p { font-size: 0.75rem; margin: 0; color: var(--text-muted); }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- Why Choose Us ---------- */
.why-choose-section { background: var(--bg-light); }

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-icon.green { background: linear-gradient(135deg, rgba(26,86,50,0.1), rgba(42,122,74,0.05)); color: var(--primary); }
.feature-icon.gold { background: linear-gradient(135deg, rgba(232,168,56,0.1), rgba(232,168,56,0.05)); color: var(--accent); }
.feature-icon.blue { background: linear-gradient(135deg, rgba(52,152,219,0.1), rgba(52,152,219,0.05)); color: #3498db; }
.feature-icon.red { background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.05)); color: #e74c3c; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h5 { font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Services Preview ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .card-img-top { transform: scale(1.05); }
.service-card .img-wrapper { overflow: hidden; }
.service-card .card-body {
    padding: 28px;
}
.service-card .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(26,86,50,0.3);
}
.service-card h5 {
    font-weight: 700;
    margin: 14px 0 10px;
    font-size: 1.15rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 16px;
}
.service-card .btn-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0;
}
.service-card .btn-link:hover { color: var(--accent); }
.service-card .btn-link i {
    transition: var(--transition);
    margin-left: 4px;
}
.service-card:hover .btn-link i { transform: translateX(4px); }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(232,168,56,0.1);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: 2.4rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.cta-banner .btn-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(232,168,56,0.4);
    transition: var(--transition);
}
.cta-banner .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,168,56,0.55);
    color: var(--white);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}
.testimonial-card p {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-author .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-light);
}
.testimonial-author h6 { font-weight: 700; margin-bottom: 0; font-size: 1rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Blog ---------- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.blog-card .img-wrapper { overflow: hidden; position: relative; }
.blog-card .card-img-top {
    height: 230px;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .card-img-top { transform: scale(1.06); }
.blog-card .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-card .blog-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 1.3;
}
.blog-card .blog-date span { display: block; font-size: 1.1rem; }
.blog-card .card-body { padding: 24px; }
.blog-card .card-body h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card .card-body h5 a:hover { color: var(--primary); }
.blog-card .card-body p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 16px;
}
.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-card .blog-meta i { margin-right: 4px; }

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,86,50,0.1);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,86,50,0.35);
    color: var(--white);
}

/* ---------- Contact Info ---------- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.contact-info-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Newsletter ---------- */
.newsletter-section {
    background: linear-gradient(135deg, #fdfaf5, #f0f7f2);
    position: relative;
    overflow: hidden;
}
.newsletter-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}
.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.newsletter-form .form-control {
    border: none;
    padding: 16px 24px;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}
.newsletter-form .btn-newsletter {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
    transition: var(--transition);
}
.newsletter-form .btn-newsletter:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* ---------- Footer ---------- */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}
.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.footer p { font-size: 0.95rem; line-height: 1.8; }
.footer .footer-links { list-style: none; padding: 0; }
.footer .footer-links li { margin-bottom: 10px; }
.footer .footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer .footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--accent);
}
.footer .footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-contact-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9rem;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    background: linear-gradient(160deg, var(--primary-dark), var(--primary));
    padding: 50px;
    padding-top: 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(232,168,56,0.08);
    border-radius: 50%;
}
.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 14px;
}
.page-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---------- About Page ---------- */
.about-image-area { position: relative; }
.about-image-area img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-counter {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.about-counter .counter-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-counter .counter-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ---------- Team ---------- */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.team-card .team-info {
    padding: 24px;
}
.team-card h5 { font-weight: 700; margin-bottom: 4px; }
.team-card span { color: var(--text-muted); font-size: 0.9rem; }
.team-social { margin-top: 14px; }
.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 3px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ---------- Services Full ---------- */
.service-full-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}
.service-full-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-full-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}
.service-full-card:hover .card-img-top { transform: scale(1.05); }
.service-full-card .img-wrapper { overflow: hidden; }
.service-full-card .card-body { padding: 28px; }
.service-full-card h5 { font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
.service-full-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 16px; }
.service-full-card ul { list-style: none; padding: 0; margin-bottom: 20px; }
.service-full-card ul li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-full-card ul li i { color: var(--primary); font-size: 0.8rem; }

/* ---------- Privacy / Terms ---------- */
.policy-content h3 {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 30px 0 14px;
}
.policy-content p { color: var(--text-muted); line-height: 1.9; }
.policy-content ul { padding-left: 20px; }
.policy-content ul li { padding: 5px 0; color: var(--text-muted); }

/* ---------- Subscribe / Unsubscribe ---------- */
.subscribe-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Page transition ---------- */
.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Scroll to Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(26,86,50,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-stats { gap: 24px; }
    .hero-image-area { margin-top: 40px; }
    .hero-image-wrapper img { height: 360px; }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-image-wrapper img { height: 280px; }
    .cta-banner h2 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 2rem; }
    .newsletter-form-wrapper { padding: 30px 20px; }
    .contact-form-wrapper { padding: 24px; }
    .subscribe-form-card { padding: 30px 20px; }
    .about-counter { flex-direction: column; gap: 16px; }
    .footer h5 { margin-top: 30px; }
    .hero-float-card { display: none; }
}

@media (max-width: 575px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn-hero-primary, .btn-hero-outline { padding: 12px 24px; font-size: 0.95rem; }
}


.unsubscribe-container h2{
    color:#222;
    margin-bottom:10px;
    text-align:center;
}

.unsubscribe-container p{
    color:#666;
    text-align:center;
    margin-bottom:25px;
    line-height:1.6;
}

.form-group{
    margin-bottom:18px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

input[type="text"],
input[type="email"],
input[type="date"]{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

input:focus{
    border-color:#0d6efd;
}

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:20px;
}

.checkbox input{
    margin-top:3px;
}

.checkbox label{
    font-size:14px;
    font-weight:400;
    line-height:1.5;
    color:#555;
}


.success-message{
    display:none;
    margin-top:20px;
    background:#d1e7dd;
    color:#0f5132;
    border:1px solid #badbcc;
    padding:15px;
    border-radius:8px;
    text-align:center;
}

.success-message h3{
    margin-bottom:8px;
}

.blog-content{
    text-align: justify;
}