/* Card Expert Services - Vision Board Styling & Layouts */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Variables mapping the Vision Board color palette */
:root {
    --primary: #0a2540;        /* Exact Corporate Navy from Vision Board */
    --primary-light: #183b56;
    --primary-dark: #051424;
    
    --accent: #104c82;         /* Vibrant Blue Accent */
    --accent-light: #e6f0fa;
    --accent-dark: #0a335c;
    
    --bg-light: #f8fafd;       /* Pristine warm off-white/light blue */
    --bg-card-light: #ffffff;
    --text-main: #0a2540;      /* Dark corporate headings and body */
    --text-muted: #627d98;     /* Slate grey descriptions */
    --border-color: rgba(10, 37, 64, 0.08);
    --shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    --shadow-hover: 0 20px 40px rgba(10, 37, 64, 0.08);
    
    /* Layout Tokens */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease-in-out;
    --max-width: 1280px;
}

/* CSS Resets & Base Elements */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

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

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

/* Common Layout Containers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

.section {
    padding: 6.5rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .section {
        padding: 4.5rem 0;
    }
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem; /* Maximizes screen space on tiny mobile screens */
    }
    .section {
        padding: 3.5rem 0;
    }
}

/* Premium Buttons matching the board */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(10, 37, 64, 0.15);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: #f0f4f8;
    transform: translateY(-1px);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.logo-sub {
    font-size: 0.75rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: -2px;
}

.logo-icon-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    position: relative;
    border: 1px solid rgba(16, 76, 130, 0.1);
}

.logo-icon-card {
    width: 18px;
    height: 6px;
    background: var(--primary);
    border-radius: 1px;
}
.logo-icon-card:last-child {
    background: var(--accent);
    width: 14px;
}

/* Nav Links & Actions */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
    opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.mobile-only-nav-apply {
    display: none;
    width: 100%;
    padding: 0 2.5rem;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: right 0.35s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        z-index: 999;
        overflow-y: auto; /* Scrollable menu drawer for smaller heights */
    }
    .nav-links.active {
        right: 0;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .mobile-only-nav-apply {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo-brand-link img {
        height: 38px; /* Elegantly smaller logo on tablet and phones */
    }
}

@media (max-width: 576px) {
    .nav-actions .btn {
        display: none; /* Hide header CTA on phones to prevent wrapping */
    }
    .logo-brand-link img {
        height: 34px; /* Scaled down logo on narrow phone viewports */
    }
}

/* Vision Board Hero Layout */
.hero {
    min-height: 95vh;
    padding-top: 150px;
    padding-bottom: 6rem;
    background: linear-gradient(to right, #ffffff 35%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 80%), 
                url('assets/images/hero_family.jpg') right center / cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(10, 37, 64, 0.04);
}

.hero-text-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* 3 Horizontal Badges in Hero */
.hero-features-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    border: 1px solid rgba(16, 76, 130, 0.1);
}

.hero-feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Right: Image & Floating Card */
.hero-right-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 90%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.05);
}

/* Floating Card on Right */
.floating-rupee-card {
    position: absolute;
    bottom: 10%;
    right: -5%;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 280px;
    border: 1px solid rgba(10, 37, 64, 0.05);
    z-index: 10;
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.floating-card-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.floating-card-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .floating-rupee-card {
        right: 0;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 4rem;
        background: url('assets/images/hero_family.jpg') center center / cover no-repeat;
        display: block;
    }
    .hero-text-content {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 2.5rem 2rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 15px 35px rgba(10, 37, 64, 0.1);
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.05rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-features-row {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .hero-feature-item {
        width: 100%; /* Stack badges on mobile for layout ease */
        background: rgba(10, 37, 64, 0.03);
        padding: 0.5rem 0.8rem;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(10, 37, 64, 0.04);
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
    .floating-rupee-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1.5rem;
        width: 100%;
        box-shadow: 0 10px 25px rgba(10, 37, 64, 0.05);
    }
}

@media (max-width: 480px) {
    .hero-text-content {
        padding: 1.75rem 1.25rem;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

/* Section Common Header styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* About Us Layout (matching left side of vision board) */
.about-blue-panel {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    padding: 4rem;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.08);
    margin-bottom: 4rem;
}

.about-panel-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.about-blue-panel h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-blue-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-family-img {
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
}

@media (max-width: 900px) {
    .about-panel-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-blue-panel {
        padding: 2.5rem;
    }
}

/* Horizontal value blocks (bottom of About section) */
.values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.value-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-icon-box {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

.value-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.value-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .values-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Our Team page styles (matching middle column of vision board) */
.team-container {
    max-width: 900px;
    margin: 0 auto;
}

.team-grid-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 3.5rem;
}

.team-member-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 37, 64, 0.04);
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(16, 76, 130, 0.15);
}

.team-member-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), #e2e8f0);
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.06);
}

.team-member-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-member-card .role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .team-grid-vision {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .team-grid-vision {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Layout (matching right column of vision board) */
.privacy-wrapper {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 3.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 37, 64, 0.04);
    max-width: 850px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    padding-bottom: 1.25rem;
}

.privacy-section-block {
    margin-bottom: 2.5rem;
}

.privacy-section-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.privacy-section-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.privacy-section-block ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.privacy-section-block li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.privacy-section-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Product Options (Contact us page structure) */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    margin-top: 3rem;
}

.contact-info-card {
    background-color: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 3rem;
}

.contact-info-card h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
}

.contact-detail-icon {
    font-size: 1.25rem;
}

.contact-detail-text h4 {
    color: white;
    font-size: 0.95rem;
}

.contact-detail-text p {
    color: rgba(255,255,255,0.7);
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

.contact-form-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 37, 64, 0.04);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-info-card, .contact-form-card {
        padding: 2rem 1.25rem;
    }
    .about-blue-panel {
        padding: 1.5rem;
    }
    .about-blue-panel h2 {
        font-size: 1.75rem;
    }
    .about-blue-panel p {
        font-size: 0.95rem;
    }
}

/* Stats Section Responsive Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.form-control {
    background-color: #f8fafd;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    background: #ffffff;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Interactive Success Notification Modal */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.notification-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    width: 90%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.notification-modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 76, 130, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}

.modal-content h3 {
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Footer Section */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.65);
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 0.8rem;
}

.footer-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-social-btn:hover {
    background-color: var(--accent);
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Brand Logo Image Styling */
.logo-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.logo-brand-link img {
    height: 52px;
    width: auto;
    max-height: 52px;
    transition: var(--transition);
}
.logo-brand-link:hover img {
    transform: scale(1.02);
}

.logo-text-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    margin-left: 0.6rem;
    letter-spacing: -0.3px;
    white-space: nowrap;
    display: inline-block;
}

@media (max-width: 1024px) {
    .logo-text-label {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .logo-text-label {
        font-size: 1.05rem;
    }
}

@media (max-width: 400px) {
    .logo-text-label {
        font-size: 0.95rem;
    }
}

/* Services Product Grid */
.services-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-product-card {
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(16, 76, 130, 0.15);
}

.service-product-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.service-product-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-product-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.service-product-card h4 {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
}

.service-product-desc {
    color: var(--text-muted);
    font-size: 0.975rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-product-benefits-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-product-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.2rem;
    margin-bottom: 2.5rem;
}

.service-product-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.service-product-benefit-icon {
    color: #059669; /* Green checkmark */
    font-weight: 700;
}

@media (max-width: 900px) {
    .services-product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .service-product-card {
        padding: 2rem;
    }
    .service-product-benefits-grid {
        grid-template-columns: 1fr;
    }
}
