/* ============================================
   R D P & Associates - Chartered Accountants
   Premium Professional Stylesheet
   ============================================ */

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

:root {
    --navy-900: #061425;
    --navy-800: #0a1f3d;
    --navy-700: #122c5c;
    --navy-600: #1c4480;
    --emerald-500: #059669;
    --emerald-400: #10b981;
    --emerald-300: #34d399;
    --emerald-100: #d1fae5;
    /* Legacy aliases (kept so existing rules render the new theme) */
    --gold-500: #059669;
    --gold-400: #10b981;
    --gold-300: #34d399;
    --gold-100: #d1fae5;
    --white: #ffffff;
    --cream: #f6f8fb;
    --gray-50: #f7f9fc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-400: #a0aec0;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.1), 0 2px 4px -1px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -2px rgba(10, 22, 40, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.1), 0 10px 10px -5px rgba(10, 22, 40, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a { color: var(--navy-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-500); }

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-alt {
    background-color: var(--gray-50);
}

.section-dark {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--gray-200);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.section-dark .section-subtitle { color: var(--gray-200); }

/* ---------- Top Bar ---------- */
.topbar {
    background-color: var(--navy-900);
    color: var(--gray-200);
    font-size: 0.875rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-200);
}

.topbar-item svg { width: 14px; height: 14px; fill: var(--gold-400); }

.topbar-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-socials a {
    color: var(--gray-200);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-socials a:hover { color: var(--gold-400); }

/* ---------- Header / Nav ---------- */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-mark {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: 0.01em;
}

.logo-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 10px 18px;
    color: var(--navy-800);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold-500);
    background-color: var(--gray-50);
}

.nav-link.active {
    color: var(--gold-500);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--gold-500);
}

.nav-cta {
    background-color: var(--navy-900);
    color: var(--white) !important;
    padding: 11px 22px !important;
    border-radius: 4px;
    margin-left: 8px;
    border: 1px solid var(--navy-900);
}

.nav-cta:hover {
    background-color: var(--emerald-500);
    border-color: var(--emerald-500);
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--navy-900);
    transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--emerald-500);
    color: var(--white);
    border-color: var(--emerald-500);
}

.btn-primary:hover {
    background-color: var(--emerald-400);
    border-color: var(--emerald-400);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy-900);
    border-color: var(--white);
}

.btn-dark {
    background-color: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}

.btn-dark:hover {
    background-color: var(--emerald-500);
    border-color: var(--emerald-500);
    color: var(--white);
}

.btn-arrow::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover.btn-arrow::after { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { max-width: 640px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--gold-300);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 .accent {
    color: var(--gold-400);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 560px;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.hero-badge .ca-seal {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
}

.hero-badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-300);
    margin-bottom: 8px;
}

.hero-badge-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background-color: var(--cream);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}

.trust-number .accent { color: var(--gold-500); }

.trust-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    letter-spacing: 0.05em;
    margin-top: 6px;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--gold-400);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-400);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy-900);
}

.service-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--navy-800);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after { transform: translateX(4px); }

/* ---------- Two-column Block ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.split-image {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 12px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.split-content .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.split-content h2 {
    margin-bottom: 22px;
}

.split-content p {
    color: var(--gray-600);
    font-size: 1.02rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 24px 0 32px;
}

.feature-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--gray-700);
    font-size: 0.98rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background-color: var(--gold-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--navy-900);
    color: var(--gray-200);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background-color: var(--gold-500);
}

.footer-list {
    list-style: none;
}

.footer-list li { margin-bottom: 10px; }

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--gold-400);
    padding-left: 6px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.75;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-400);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255, 255, 255, 0.7); }
.footer-contact-item a:hover { color: var(--gold-400); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Page Banner ---------- */
.page-banner {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    padding: 90px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--gold-400);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Service Detail Cards ---------- */
.service-detail {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold-500);
    height: 100%;
    transition: var(--transition);
}

.service-detail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-detail h3 {
    margin-bottom: 16px;
    color: var(--navy-900);
}

.service-detail-list {
    list-style: none;
    margin-top: 16px;
}

.service-detail-list li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 0.94rem;
    color: var(--gray-700);
    border-bottom: 1px dashed var(--gray-200);
}

.service-detail-list li:last-child { border-bottom: none; }

.service-detail-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold-500);
    font-size: 0.7rem;
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold-500);
}

.contact-info-card h3 {
    margin-bottom: 26px;
    color: var(--navy-900);
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--navy-900);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-400);
}

.contact-info-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-info-content p {
    color: var(--navy-900);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.contact-info-content a { color: var(--navy-900); }
.contact-info-content a:hover { color: var(--gold-500); }

.contact-form-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background-color: var(--white);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-textarea { resize: vertical; min-height: 130px; }

.map-embed {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- About Page ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 36px 26px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.value-card h4 {
    color: var(--navy-900);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.93rem;
    margin-bottom: 0;
}

/* ---------- Founder Profile ---------- */
.founder-card {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 12px;
    padding: 50px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.founder-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    max-width: 220px;
    margin: 0 auto;
}

.founder-info h3 { color: var(--white); margin-bottom: 6px; }
.founder-info .title {
    color: var(--gold-400);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    display: block;
}

.founder-info p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-inner,
    .split,
    .contact-grid,
    .footer-grid,
    .founder-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid { gap: 40px; }
    .founder-avatar { max-width: 160px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .topbar-info { gap: 14px; font-size: 0.78rem; }
    .topbar-socials { display: none; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: stretch;
    }

    .nav-menu.open { max-height: 500px; }

    .nav-menu li { width: 100%; }
    .nav-link { display: block; text-align: center; }
    .nav-cta { margin: 8px 0 0; }

    .mobile-toggle { display: flex; }

    .hero { padding: 70px 0 80px; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    .trust-bar-inner { gap: 20px; }
    .trust-number { font-size: 1.8rem; }
    .trust-label { font-size: 0.78rem; }

    .form-row { grid-template-columns: 1fr; }

    .page-banner { padding: 60px 0 50px; }
    .footer { padding: 50px 0 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .logo-name { font-size: 1.1rem; }
    .logo-tag { font-size: 0.65rem; letter-spacing: 0.15em; }
    .logo-mark { width: 44px; height: 44px; }
    .service-card { padding: 28px 22px; }
    .contact-info-card,
    .contact-form-card { padding: 28px 22px; }
    .founder-card { padding: 30px 22px; }
}
