/* ============================================
   Home Design Care - Custom Stylesheet
   Home Renovation & Improvement Services
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary: #1a5276;
    --primary-dark: #395c0e;
    --accent: #8dd906;
    --accent-dark: #ca6f1e;
    --accent-light: #8dd906;
    --success: #27ae60;
    --danger: #c0392b;
    --dark: #1c2833;
    --gray-dark: #2c3e50;
    --gray: #7f8c8d;
    --gray-light: #ecf0f1;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.20);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--accent); }

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

.text-accent { color: var(--accent) !important; }
.text-primary-dark { color: var(--primary-dark) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light-alt { background-color: #f5f7fa; }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-left: 6px;
    color: #fff;
}
.top-bar .social-icons a:hover { background: var(--accent); color: #fff; }

/* ============ NAVBAR ============ */
.navbar {
    background: #fff !important;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark) !important;
    display: flex;
    align-items: center;
}
.navbar-brand .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #71ad07, #71ad07);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    font-size: 1.4rem;
}
.navbar-brand span { color: var(--accent); }
.navbar .nav-link {
    color: var(--gray-dark) !important;
    font-weight: 500;
    padding: 10px 16px !important;
    position: relative;
    font-size: 0.95rem;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--accent) !important;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
    transform: scaleX(1);
}
.btn-quote {
    background: linear-gradient(135deg, #71ad07, #71ad07);
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 26px !important;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(230,126,34,0.35);
}
.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230,126,34,0.45);
    color: #fff !important;
}
.btn-quote::after { display: none; }
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 10px;
}
.dropdown-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
}
.dropdown-item:hover {
    background: var(--gray-light);
    color: var(--accent);
}

/* ============ BUTTONS ============ */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(26,82,118,0.3);
}
.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark), #082c44);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26,82,118,0.4);
}
.btn-accent {
    background: linear-gradient(135deg, #71ad07, #71ad07);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(230,126,34,0.35);
}
.btn-accent:hover {
    background: #71ad07;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230,126,34,0.45);
}
.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}
.btn-outline-light-custom {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.85), rgba(26,82,118,0.75)),
                url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 2;
}
.hero-content { position: relative; z-index: 3; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.hero-badge i { color: var(--accent-light); margin-right: 6px; }
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.15;
}
.hero h1 .highlight {
    color: var(--accent-light);
    position: relative;
}
.hero p.lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 34px;
    max-width: 620px;
}
.hero-buttons .btn { margin-right: 14px; margin-bottom: 12px; }
.hero-stats {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}
.hero-stat h3 span { color: var(--accent-light); }
.hero-stat p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

/* Hero Image/Card */
.hero-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    z-index: 3;
}
.hero-card-inner {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--dark);
    box-shadow: var(--shadow-xl);
}
.hero-card-inner h5 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 16px; }
.rating-stars { color: var(--accent); margin-bottom: 8px; }
.hero-avatars {
    display: flex;
    margin-top: 16px;
}
.hero-avatars img {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }

/* Floating shape animation */
.shape-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: #fff;
    animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 300px; height: 300px; top: 10%; right: 5%; animation-delay: 0s; }
.shape-2 { width: 180px; height: 180px; bottom: 20%; left: 10%; animation-delay: 2s; }
@keyframes float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

/* ============ PAGE HEADER (Breadcrumb banner) ============ */
.page-header {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(14,61,92,0.9), rgba(26,82,118,0.8)),
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 14px;
}
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.breadcrumb-custom {
    display: inline-flex;
    list-style: none;
    padding: 10px 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-top: 22px;
}
.breadcrumb-custom li { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.breadcrumb-custom li a { color: #fff; }
.breadcrumb-custom li + li::before { content: '/'; margin: 0 12px; color: rgba(255,255,255,0.5); }
.breadcrumb-custom li.active { color: var(--accent-light); }

/* ============ SECTION UTILITIES ============ */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-title { margin-bottom: 50px; text-align: center; }
.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 50px;
}
.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 40px; height: 2px;
    background: var(--accent);
}
.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}
.section-title p {
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============ SERVICE CARDS ============ */
.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230,126,34,0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 76px; height: 76px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(230,126,34,0.12), rgba(243,156,18,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, #71ad07, #71ad07);
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}
.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.service-card .read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card .read-more i { transition: var(--transition); margin-left: 4px; }
.service-card:hover .read-more i { transform: translateX(6px); }

/* ============ ABOUT SECTION ============ */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-experience {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: linear-gradient(135deg, #71ad07, #71ad07);
    color: #fff;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.about-experience h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}
.about-experience p { margin: 0; font-size: 0.9rem; opacity: 0.95; }
.about-check-list { list-style: none; padding: 0; margin: 20px 0; }
.about-check-list li {
    padding: 8px 0 8px 36px;
    position: relative;
    font-weight: 500;
}
.about-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 8px;
    width: 26px; height: 26px;
    background: rgba(39,174,96,0.12);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ============ WHY CHOOSE US / FEATURES ============ */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    border-radius: var(--radius-md);
}
.feature-box:hover { transform: translateY(-6px); }
.feature-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(26,82,118,0.25);
    transition: var(--transition);
}
.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, #71ad07, #71ad07);
    box-shadow: 0 10px 25px rgba(230,126,34,0.35);
    transform: rotate(-5deg);
}
.feature-box h5 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-box p { color: var(--gray); font-size: 0.93rem; margin: 0; }

/* ============ PROCESS STEPS ============ */
.process-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 30m-2 0a2 2 0 104 0 2 2 0 10-4 0' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.process-section .section-title h2 { color: #fff; }
.process-section .section-title p { color: rgba(255,255,255,0.8); }
.process-section .section-subtitle { color: var(--accent-light); }
.process-section .section-subtitle::before { background: var(--accent-light); }
.step-box {
    text-align: center;
    position: relative;
    padding: 30px 15px;
}
.step-number {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #71ad07, #71ad07);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 22px;
    box-shadow: 0 10px 30px rgba(230,126,34,0.4);
    position: relative;
    z-index: 2;
}
.step-box h5 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.step-box p { color: rgba(255,255,255,0.75); font-size: 0.93rem; margin: 0; }
.step-connector {
    position: absolute;
    top: 65px;
    left: 55%;
    width: 90%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 8px, transparent 8px 14px);
    z-index: 1;
}
@media (max-width: 991px) { .step-connector { display: none; } }

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, rgba(230,126,34,0.95), rgba(202,111,30,0.95)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
    color: #fff;
    padding: 70px 0;
    border-radius: var(--radius-lg);
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: 2.2rem; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 0; font-size: 1.05rem; }
.cta-banner .cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-circle-1 { width: 200px; height: 200px; top: -60px; right: 80px; }
.cta-circle-2 { width: 120px; height: 120px; bottom: -40px; right: 200px; }

/* ============ BLOG CARDS ============ */
.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-category {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-body { padding: 26px; }
.blog-date { color: var(--gray); font-size: 0.85rem; margin-bottom: 10px; }
.blog-date i { color: var(--accent); margin-right: 6px; }
.blog-body h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-body h4 a { color: var(--primary-dark); }
.blog-body h4 a:hover { color: var(--accent); }
.blog-body p { color: var(--gray); font-size: 0.93rem; margin-bottom: 18px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--light); }
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 20px; right: 28px;
    line-height: 1;
}
.testimonial-card .rating-stars { margin-bottom: 16px; }
.testimonial-card p {
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 22px;
    font-size: 0.97rem;
}
.testimonial-author { display: flex; align-items: center; }
.testimonial-author img {
    width: 54px; height: 54px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
    border: 3px solid var(--gray-light);
}
.testimonial-author h6 {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.testimonial-author span { font-size: 0.85rem; color: var(--gray); }

/* ============ CONTACT PAGE ============ */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border-bottom: 3px solid var(--accent);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-info-card .icon-wrap {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(230,126,34,0.1), rgba(243,156,18,0.1));
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.contact-info-card h5 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-info-card p { color: var(--gray); font-size: 0.92rem; margin: 0; }

.contact-form-wrap {
    background: #fff;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 8px; }
.form-control, .form-select {
    padding: 12px 18px;
    border: 1.5px solid #e1e8ed;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(230,126,34,0.15);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ NEWSLETTER FORMS ============ */
.newsletter-hero {
    padding: 120px 0 90px;
    background: linear-gradient(135deg, rgba(14,61,92,0.92), rgba(26,82,118,0.8)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat;
    color: #fff;
}
.newsletter-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.3rem); }
.newsletter-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

.newsletter-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    border-top: 5px solid var(--accent);
}
.newsletter-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.newsletter-card p.lead { color: var(--gray); font-size: 1rem; margin-bottom: 28px; }
.newsletter-benefits { list-style: none; padding: 0; margin: 22px 0; }
.newsletter-benefits li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--gray-dark);
    font-size: 0.95rem;
}
.newsletter-benefits li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 8px;
    color: var(--success);
    font-size: 1.2rem;
}
.newsletter-card.unsubscribe-card { border-top-color: var(--danger); }
.newsletter-card.unsubscribe-card .newsletter-benefits li::before {
    content: '\f057'; color: var(--danger);
}

.form-status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    display: none;
}
.form-status.success { background: rgba(39,174,96,0.12); color: var(--success); display: block; border-left: 4px solid var(--success); }
.form-status.error { background: rgba(192,57,43,0.1); color: var(--danger); display: block; border-left: 4px solid var(--danger); }

/* ============ PRIVACY / TERMS ============ */
.legal-content { background: #fff; padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-content h2 { font-size: 1.6rem; margin-top: 32px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.25rem; margin-top: 22px; margin-bottom: 10px; color: var(--primary-dark); }
.legal-content p, .legal-content li { color: var(--gray-dark); font-size: 0.97rem; line-height: 1.8; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content a { color: var(--accent); font-weight: 500; }
.legal-date {
    display: inline-block;
    background: var(--gray-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 24px;
}

/* ============ FOOTER ============ */
.footer {
    background: #0c1c2c;
    color: rgba(255,255,255,0.7);
    padding-top: 70px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}
.footer h5 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--accent);
}
.footer p { font-size: 0.92rem; line-height: 1.8; }
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.footer-logo .logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #71ad07, #71ad07);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    font-size: 1.2rem;
}
.footer-logo span { color: var(--accent); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: 5px 0; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-links a i { margin-right: 8px; font-size: 0.7rem; color: var(--accent); }
.footer-contact p { margin-bottom: 10px; font-size: 0.92rem; }
.footer-contact i { color: var(--accent); margin-right: 10px; width: 18px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-4px);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.88rem;
}
.footer-bottom a { color: var(--accent-light); }

/* Footer Newsletter */
.footer-newsletter-form {
    position: relative;
    margin-top: 14px;
}
.footer-newsletter-form input {
    width: 100%;
    padding: 12px 60px 12px 18px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter-form button {
    position: absolute;
    right: 4px; top: 4px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.footer-newsletter-form button:hover { background: var(--accent-dark); }

/* ============ MISC ============ */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-4px); }

/* Team member */
.team-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-social {
    position: absolute;
    bottom: -60px; left: 0; right: 0;
    background: linear-gradient(to top, rgba(14,61,92,0.95), transparent);
    padding: 20px 10px 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}
.team-social a:hover { background: var(--accent); color: #fff; }
.team-body { padding: 22px 16px; }
.team-body h5 { font-size: 1.2rem; margin-bottom: 4px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.team-body span { color: var(--accent); font-size: 0.9rem; font-weight: 500; }

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    background: #fff;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { padding: 18px 24px; color: var(--gray); font-size: 0.95rem; }

/* Service detail */
.service-detail-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}
.service-detail-img img { width: 100%; }

/* Responsive */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 140px 0 60px; }
    .hero-card { margin-top: 40px; }
    .about-experience { right: 20px; bottom: 20px; padding: 16px 20px; }
    .about-experience h3 { font-size: 1.8rem; }
    .section { padding: 70px 0; }
    .contact-form-wrap { padding: 28px; }
    .legal-content { padding: 28px; }
    .cta-banner { text-align: center; padding: 50px 30px; }
    .newsletter-card { padding: 28px; }
}
@media (max-width: 575px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat h3 { font-size: 1.6rem; }
    .top-bar { display: none; }
    .navbar-brand { font-size: 1.3rem; }
    .section-title h2 { font-size: 1.7rem; }
}


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

.navbar-brand img{
    width: 250px;
}