/* ==========================================================================
   LANSEM - Legal & Accounting Advisors Website Stylesheet
   Design System: Premium Corporate Navy, Sky Blue, and Metallic Gold
   ========================================================================== */

/* 1. Base Variables & Design Tokens */
:root {
    --primary-color: #0b1a30;      /* Dark Royal Navy */
    --primary-light: #162a45;      /* Slate Blue */
    --accent-color: #0284c7;       /* Electric Sky Blue */
    --accent-hover: #0ea5e9;       /* Light Sky Blue */
    --gold-color: #c5a880;         /* Warm Metallic Gold */
    --gold-dark: #b39266;          /* Darker Gold */
    --text-dark: #0f172a;          /* Charcoal Slate */
    --text-muted: #475569;         /* Muted Gray */
    --bg-light: #f8fafc;           /* Cool Gray Background */
    --bg-white: #ffffff;
    --border-color: #e2e8f0;       /* Soft Gray Border */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 32px rgba(11, 26, 48, 0.08);
    --shadow-lg: 0 24px 48px rgba(11, 26, 48, 0.12);
}

/* 2. Global Reset & Body Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

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

/* 3. Utility Classes */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-color);
    margin-bottom: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* 4. Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo Design */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--bg-white);
}

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

.main-header.scrolled .nav-link {
    color: var(--text-muted);
}

.main-header.scrolled .nav-link:hover, 
.main-header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.main-header.scrolled .menu-toggle span {
    background-color: var(--primary-color);
}

/* 5. Hero Section with Background Slideshow */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 48, 0.95) 0%, rgba(11, 26, 48, 0.75) 50%, rgba(11, 26, 48, 0.4) 100%);
    z-index: 2;
}

.hero-content,
.hero-content-overlay {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 80px;
}

.hero-overlay-container {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.hero-content-overlay {
    pointer-events: auto;
}

.hero-tag {
    display: inline-block;
    color: var(--gold-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    color: var(--bg-white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 36px;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

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

/* Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.hero-slider-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-slider-btn.prev {
    left: 30px;
}

.hero-slider-btn.next {
    right: 30px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active {
    background-color: var(--accent-color);
    width: 24px;
    border-radius: 6px;
}

/* 5b. Hero Value Proposition Intro Section */
.hero-value-prop-intro {
    background-color: var(--bg-white);
    text-align: center;
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.val-prop-intro-header {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.val-prop-intro-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 20px;
}

.val-prop-intro-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.val-prop-intro-body {
    max-width: 800px;
    margin: 0 auto;
}

.val-prop-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.val-prop-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.val-prop-tagline {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.val-prop-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* 5c. About Us Page Styles */
.about-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url('../assets/images/featured_meeting_discussion.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 26, 48, 0.9) 0%, rgba(11, 26, 48, 0.8) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.about-hero-title {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-hero-subtitle {
    color: var(--gold-color);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.specialist-focus-section {
    background-color: var(--bg-light);
}

.specialist-box {
    background-color: var(--bg-white);
    border-left: 6px solid var(--gold-color);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 36px;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}

.specialist-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.specialist-box-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.specialist-box-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Vision & Mission Cards */
.vision-mission-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-mission-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 48px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-mission-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-color);
    transform: translateY(-4px);
}

.card-badge {
    align-self: flex-start;
    display: inline-block;
    background-color: var(--gold-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
}

.vision-mission-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bg-white);
}

.vision-mission-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Core Values Section */
.values-section {
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    border-radius: var(--border-radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 1.5rem;
    font-weight: 800;
}

.value-card:hover .value-icon-box {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 100px 0;
}

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

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.about-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}


/* 5d. Legal Services Page Styles */
.legal-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url('../assets/images/hero_legal.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.legal-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 26, 48, 0.9) 0%, rgba(11, 26, 48, 0.8) 100%);
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.legal-hero-title {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.legal-hero-subtitle {
    color: var(--gold-color);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.legal-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.solution-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.solution-card:hover .solution-icon-box {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.commercial-advantage-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.commercial-advantage-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.commercial-advantage-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 24px;
    line-height: 1.6;
}


/* 5e. Accounting, Security, and Founder Styles */
.accounting-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url('../assets/images/hero_accounting.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.accounting-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 26, 48, 0.9) 0%, rgba(11, 26, 48, 0.8) 100%);
    z-index: 1;
}

.accounting-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.accounting-hero-title {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.accounting-hero-subtitle {
    color: var(--gold-color);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.security-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url('../assets/images/faq_meeting_notes.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.security-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 26, 48, 0.95) 0%, rgba(11, 26, 48, 0.85) 100%);
    z-index: 1;
}

.security-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.security-hero-title {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.security-hero-subtitle {
    color: var(--gold-color);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#security-badges {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#security-badges .section-title {
    color: var(--bg-white);
}

#security-badges .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

#security-badges .section-tag {
    color: var(--gold-color);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.security-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.security-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.security-card:hover .security-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.security-card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.security-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.founder-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.founder-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.founder-message-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    position: relative;
}

.founder-message-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold-color);
    margin-top: 12px;
}

.founder-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-light);
    line-height: 1.7;
    margin-bottom: 24px;
    border-left: 4px solid var(--gold-color);
    padding-left: 20px;
}

.founder-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-sign-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 30px;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-portrait {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-portrait img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-light);
}


/* 6. Trust Bar Section */
.trust-bar {
    background-color: var(--primary-color);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar-header {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    background-color: rgba(12, 27, 51, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Dark theme overrides for .trust-item (used in .trust-bar and #security-badges) */
.trust-bar .trust-item,
#security-badges .trust-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.trust-bar .trust-item:hover,
#security-badges .trust-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(2, 132, 199, 0.3);
}

.trust-item .checkmark {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}


/* 7. Introduction Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.intro-content-left {
    text-align: left;
}

.intro-content-left .section-tag {
    margin-bottom: 12px;
}

.intro-content-left .section-title {
    margin-bottom: 24px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.intro-checklist {
    margin-top: 32px;
}

.intro-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.intro-check-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Rounded circular portrait frame with organic blue blob and experience badge */
.intro-image-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-background {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 440px;
    max-height: 440px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(2, 132, 199, 0.02) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: blob-bounce 12s infinite ease-in-out;
}

.portrait-frame {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    border-left: 5px solid var(--gold-color);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    text-align: center;
}

.badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-color);
    line-height: 1.1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes blob-bounce {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.08) translate(10px, -10px); }
}

/* 8. Value Proposition Section */
.value-prop-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.model-card {
    border-radius: var(--border-radius-md);
    padding: 44px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.traditional-model {
    border-top: 4px solid #ef4444;
}

.traditional-model:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.lansem-model {
    background-color: var(--primary-color);
    border: 2px solid var(--gold-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.lansem-model:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 20px 40px rgba(11, 26, 48, 0.2);
}

.model-header {
    margin-bottom: 24px;
}

.model-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
}

.badge-warning {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.badge-success {
    background-color: var(--gold-color);
    color: var(--primary-color);
}

.model-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 28px;
    gap: 8px;
}

.lansem-model .model-flow {
    background-color: rgba(255, 255, 255, 0.05);
}

.flow-step {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

.traditional-model .flow-step.step-negative {
    color: #ef4444;
    font-size: 0.9rem;
}

.lansem-model .flow-step {
    color: rgba(255, 255, 255, 0.9);
}

.lansem-model .flow-step.step-positive {
    color: var(--gold-color);
    font-size: 0.95rem;
}

.flow-arrow {
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
}

.lansem-model .flow-arrow {
    color: rgba(255, 255, 255, 0.4);
}

.model-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.lansem-model .model-description {
    color: rgba(255, 255, 255, 0.75);
}

.value-prop-summary {
    text-align: center;
    max-width: 850px;
    margin: 48px auto 0 auto;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--primary-light);
    border-top: 1px solid var(--border-color);
    padding-top: 36px;
}

/* 9. Services & Divisions Section */
.services-section {
    background-color: var(--bg-light);
}

.services-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.division-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.division-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.division-title {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.division-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 28px;
}

.division-list-header {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.division-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.division-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.division-list li .bullet {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Highlight Active Division Card */
.division-card.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.division-card.active:hover {
    transform: translateY(-4px);
}

.division-card.active .division-icon {
    background-color: var(--gold-color);
    color: var(--primary-color);
}

.division-card.active .division-title {
    color: var(--bg-white);
}

.division-card.active .division-desc {
    color: rgba(255, 255, 255, 0.75);
}

.division-card.active .division-list-header {
    color: var(--gold-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.division-card.active .division-list li {
    color: var(--bg-white);
}

.division-card.active .division-list li .bullet {
    color: var(--gold-color);
}

/* Non-active Card Hover Effect */
.division-card:not(.active):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 132, 199, 0.3);
}

.division-card:not(.active):hover .division-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
}


/* 10. Why Choose LANSEM Section */
.why-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.why-card-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.2);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-item:hover .why-icon-box {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* 10. Partner Logos Strip */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.partners-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.partners-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    opacity: 0.4;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo svg {
    height: 32px;
    max-width: 140px;
}

.partner-logo:hover {
    opacity: 0.9;
}

/* 11. Business Impact Section */
.business-impact-section {
    background-color: var(--bg-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.impact-content-left {
    text-align: left;
}

.impact-badge-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.impact-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.impact-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(2, 132, 199, 0.2);
}

.impact-badge-item .badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.impact-badge-item .badge-text-bold {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.impact-list-right {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-list-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 8px;
}

.impact-bullets {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.impact-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.impact-bullets li .bullet-check {
    color: var(--gold-color);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.impact-tagline {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-weight: 700;
    color: var(--gold-color);
    font-size: 1.1rem;
    text-align: center;
}

/* 12. Who We Work With Section */
.who-we-work-with-section {
    background-color: var(--bg-light);
}

.who-grid {
    max-width: 960px;
    margin: 0 auto;
}

.who-content {
    text-align: center;
}

.who-content .section-title {
    margin-bottom: 24px;
}

.trigger-box {
    margin-top: 50px;
    text-align: left;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.trigger-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 28px;
    text-align: center;
}

.trigger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.trigger-item {
    font-weight: 600;
    color: var(--primary-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trigger-item .bullet-dot {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

/* 13. Differentiator Section */
.differentiator-section {
    background-color: var(--bg-white);
}

.diff-card {
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gold-color);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.diff-card .section-tag {
    margin-bottom: 16px;
}

.diff-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.3;
    margin-bottom: 18px;
}

.diff-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.diff-objective {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--gold-color);
    padding: 24px 30px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-size: 1.15rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 30px;
    max-width: 780px;
}

.diff-objective strong {
    color: var(--gold-color);
}

.diff-footer-text {
    font-size: 1.05rem;
    color: var(--gold-color);
    font-weight: 700;
}


/* 13. FAQ Accordion & Illustrative Card Section */
.faq-section {
    background-color: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

/* FAQ Illustration Layout with gauge overlay */
.faq-illustration-left {
    position: relative;
    display: flex;
    justify-content: center;
}

.faq-main-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
}

.gauge-overlay {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    border: 1px solid var(--border-color);
}

.gauge-circle {
    position: relative;
    width: 70px;
    height: 70px;
}

.gauge-svg {
    transform: rotate(-90deg);
}

.gauge-track {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 6;
}

.gauge-fill {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 6;
    stroke-dasharray: 188.4;
    stroke-dashoffset: 18.84; /* 90% completed gauge */
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
}

.gauge-info h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.gauge-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* FAQ Accordion panels */
.faq-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background-color: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(11, 26, 48, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-icon-toggle svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Active FAQ state */
.faq-item.active {
    background-color: var(--bg-white);
    border-color: rgba(2, 132, 199, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-item.active .faq-icon-toggle {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.faq-item.active .faq-icon-toggle svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

/* 14. Testimonial Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    color: rgba(197, 168, 128, 0.3); /* Soft Gold */
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.client-avatar svg {
    width: 100%;
    height: 100%;
    color: var(--text-muted);
}

.client-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.client-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* 15. News & Insights Section */
.blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Featured Large Card */
.featured-post-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.post-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .post-img-wrapper img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
}

.post-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.post-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 16px;
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-color);
}

.featured-post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Sidebar Stacked Cards */
.blog-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-post-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    transition: var(--transition-smooth);
}

.sidebar-post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(2, 132, 199, 0.2);
}

.sidebar-post-card .post-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

.sidebar-post-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 12px;
}

/* 16. Contact Section & Form */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.25;
}

.contact-info-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--primary-color);
    color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-detail h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.contact-method-detail p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-method-detail a:hover {
    color: var(--accent-color);
}

.contact-hours-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius-md);
    color: var(--bg-white);
    border-left: 5px solid var(--gold-color);
    box-shadow: var(--shadow-md);
}

.contact-hours-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 12px;
}

.contact-hours-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-hours-card p:last-child {
    margin-bottom: 0;
}

/* Contact Form Right Side */
.contact-form-right {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border-color);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.contact-form-right button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
}

/* 17. Footer Layout */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 5px solid var(--gold-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-area img {
    height: 48px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-compliance-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 0.95rem;
}

.footer-link-item:hover {
    color: var(--gold-color);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--gold-color);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Footer Bottom Disclaimer & Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-legal-links a:hover {
    color: var(--gold-color);
}

.footer-disclaimer {
    border-left: 3px solid var(--gold-color);
    padding-left: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* 18. Responsive Design & Media Queries */

/* Tablet Layout (max-width: 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .intro-grid, .why-grid-six, .faq-grid, .blog-grid, .contact-grid, .services-two-columns, .value-prop-grid, .impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image-right {
        order: -1;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .footer-contact-col {
        grid-column: span 2;
    }

    .hero-value-prop-intro {
        padding: 80px 0;
    }
    
    .val-prop-intro-title {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
}

/* Mobile Layout (max-width: 768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .main-header {
        padding: 16px 0;
        background-color: var(--primary-color);
    }
    
    .main-header.scrolled {
        padding: 12px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px; /* Height of mobile header */
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--primary-color);
        padding: 40px 24px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.85);
        display: block;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--accent-color);
        padding-left: 8px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-cta {
        display: none; /* Hide top CTA on mobile */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonials-grid, .services-two-columns, .value-prop-grid, .impact-grid, .trigger-grid {
        grid-template-columns: 1fr;
    }
    
    .portrait-frame {
        width: 300px;
        height: 300px;
    }
    
    .blob-background {
        max-width: 340px;
        max-height: 340px;
    }
    
    .experience-badge {
        padding: 12px 18px;
    }
    
    .badge-num {
        font-size: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-contact-col {
        grid-column: span 1;
    }
    
    .contact-form-right {
        padding: 30px 20px;
    }
    
    .gauge-overlay {
        bottom: -20px;
        left: 10px;
        padding: 16px;
    }
    
    .gauge-circle {
        width: 56px;
        height: 56px;
    }
    
    .trigger-box {
        padding: 24px;
    }
    
    .diff-card {
        padding: 36px 20px;
    }
    
    .diff-title {
        font-size: 1.7rem;
    }
    
    .diff-objective {
        padding: 16px;
        font-size: 1rem;
    }

    /* New Value Proposition Intro Section Mobile Overrides */
    .hero-value-prop-intro {
        padding: 60px 0;
    }
    
    .val-prop-intro-title {
        font-size: 1.85rem;
    }
    
    .val-prop-intro-tag {
        font-size: 1.1rem;
    }
    
    .val-prop-lead {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .val-prop-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .val-prop-tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .val-prop-btns {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .val-prop-btns .btn {
        width: 100%;
    }

    /* About Us Page Mobile Overrides */
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-card {
        padding: 30px;
    }
    
    .about-cta-title {
        font-size: 1.85rem;
    }

    /* Legal Support Services Mobile Overrides */
    .legal-hero-title {
        font-size: 2.2rem;
    }
    
    .legal-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 28px;
    }
    
    .commercial-advantage-highlight {
        font-size: 1.1rem;
    }

    /* Accounting Support Services Mobile Overrides */
    .accounting-hero-title, .security-hero-title {
        font-size: 2.2rem;
    }
    
    .accounting-hero-subtitle, .security-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .security-card {
        padding: 24px;
        gap: 16px;
    }
    
    .founder-card {
        padding: 30px 20px;
    }
}

/* 11. How It Works Section */
.how-it-works-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

/* Connector Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 132, 199, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--gold-color);
    font-size: 1.4rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 12. Who We Serve Section Grid & Cards */
.serve-industries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 24px;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 132, 199, 0.2);
}

.industry-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.industry-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.industry-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Overrides for new sections */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .serve-industries {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .industry-card {
        flex-direction: column;
        gap: 16px;
    }
}

/* FOUC (Flash of Unstyled Content) Prevention Helper for GSAP */
.js-active .hero-content,
.js-active .hero-content-overlay,
.js-active .about-hero-content,
.js-active .legal-hero-content,
.js-active .accounting-hero-content,
.js-active .security-hero-content {
    opacity: 0;
}