/* JPN FINSERV - PROFESSIONAL FINANCE WEBSITE
   Color Scheme: Deep Green (#1B4D3E), Charcoal (#2D3436), White, Soft Gold (#C9A962)
   Logo: Money tree with green JPN and grey Finserv text
*/

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - matching the logo */
    --primary-green: #1B4D3E;
    --primary-green-light: #2D6A56;
    --primary-green-dark: #123A2F;
    
    /* Secondary Colors */
    --charcoal: #2D3436;
    --charcoal-light: #4A5568;
    --charcoal-dark: #1A1D1F;
    
    /* Accent Colors */
    --soft-gold: #C9A962;
    --sage: #87A878;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-cream: #FAFAF8;
    
    /* Text */
    --text-primary: #1A1D1F;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    
    /* Borders */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E0;
    
    /* Shadows - Subtle only */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.08);
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

.btn-gold {
    background: var(--soft-gold);
    color: var(--charcoal-dark);
}

.btn-gold:hover {
    background: #B89852;
    transform: translateY(-1px);
}

.btn-white {
    background: white;
    color: var(--primary-green);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 70px;
    padding: 5px 0;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-green);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-green-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 140px 0 100px;
    background: var(--bg-cream);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.hero-label-dot {
    width: 8px;
    height: 8px;
    background: var(--soft-gold);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.hero-contact a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.hero-contact a:hover {
    text-decoration: underline;
}

.hero-image {
    position: relative;
}

.hero-photo-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 240px;
}

.hero-badge-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-badge-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hero-badge-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== WEBINAR HIGHLIGHT ==================== */
.webinar-highlight {
    padding: 80px 0;
    background: var(--primary-green);
    color: white;
}

.webinar-highlight-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.webinar-highlight-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.webinar-highlight-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.webinar-speaker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.webinar-speaker-avatar {
    width: 50px;
    height: 50px;
    background: var(--soft-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--charcoal-dark);
}

.webinar-speaker-info h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.webinar-speaker-info p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9375rem;
}

.countdown-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    min-width: 70px;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-unit {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ==================== WHY CHOOSE ==================== */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==================== SERVICES PREVIEW ==================== */
.services-preview {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.services-preview .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-preview .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==================== CONTACT CTA ==================== */
.contact-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.contact-cta-container {
    background: var(--primary-green);
    border-radius: 16px;
    padding: 4rem;
    color: white;
    text-align: center;
}

.contact-cta-container h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-cta-container p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
    height: 55px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.footer-column h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--soft-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-cream);
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== PROFILE PAGE ==================== */
.profile-section {
    padding: 80px 0 var(--section-padding);
    background: var(--bg-white);
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.profile-image-container {
    position: sticky;
    top: 100px;
}

.profile-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.profile-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.profile-role {
    color: var(--primary-green);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.profile-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.profile-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.profile-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.highlight-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.highlight-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==================== ABOUT COMPANY ==================== */
.about-company {
    padding: 80px 0 var(--section-padding);
    background: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text-block {
    margin-bottom: 3rem;
}

.about-text-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.about-text-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.partner-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.partner-card h4 {
    font-size: 0.9375rem;
    color: var(--charcoal);
}

/* ==================== SERVICES PAGE ==================== */
.services-list {
    padding: 80px 0 var(--section-padding);
    background: var(--bg-light);
}

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

.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-tags {
    margin-top: auto;
}

.service-detail-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.service-detail-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-detail-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-tag {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* ==================== SERVICE DETAIL PAGE ==================== */
.service-detail {
    padding: 80px 0 var(--section-padding);
    background: var(--bg-white);
}

.service-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro {
    margin-bottom: 3rem;
}

.service-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-section {
    margin-bottom: 2.5rem;
}

.service-section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.service-section ul {
    list-style: none;
    padding: 0;
}

.service-section li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.service-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* ==================== WEBINAR PAGE ==================== */
.webinar-page {
    padding: 140px 0 var(--section-padding);
    background: var(--bg-white);
}

.webinar-hero-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.webinar-hero-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.webinar-hero-section .webinar-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.webinar-meta-box {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.webinar-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.webinar-countdown-section {
    background: var(--primary-green);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.webinar-countdown-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.webinar-agenda {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.webinar-agenda h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 3px solid var(--primary-green);
}

.agenda-time {
    font-weight: 600;
    color: var(--primary-green);
    min-width: 80px;
}

.agenda-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.agenda-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.webinar-registration {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.webinar-registration h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-page {
    padding: 140px 0 var(--section-padding);
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-person-avatar {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-person-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-person-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-detail-text p {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    margin: 0;
}

.contact-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form-box h3 {
    margin-bottom: 1.5rem;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.08);
}

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-green);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ==================== FAQ ==================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-container,
    .webinar-highlight-container,
    .profile-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-image-container {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-list-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .webinar-meta-box {
        flex-direction: column;
        gap: 1rem;
        border-radius: 12px;
    }
    
    .contact-cta-container {
        padding: 2rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .webinar-countdown-section {
        padding: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 20px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
}