/* ClientPulse Beige Light Theme Design System */

:root {
    /* Colors matching the reference image style */
    --bg-deep: #f6f3eb;       /* Beige/off-white background */
    --bg-card: #fdfcf7;       /* Warm light card background */
    --bg-secondary: #eeece3;  /* Slightly darker warm tone for segments */
    --border-main: rgba(23, 20, 18, 0.15); /* Sleek thin border */
    
    --text-primary: #171412;  /* Deep dark charcoal/brown */
    --text-muted: #55514f;    /* Medium neutral brown-grey */
    --text-muted-dark: #827e7b;
    
    --color-green: #51f281;   /* Soft bright green accent */
    --color-green-hover: #40df70;
    
    /* Typography */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(23, 20, 18, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted-dark);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    border-left: 1px solid var(--border-main);
    border-right: 1px solid var(--border-main);
}

section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--border-main);
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

p {
    color: var(--text-muted);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-main);
    transition: var(--transition-smooth);
}

.header-grid {
    display: grid;
    grid-template-columns: 260px 1fr 120px 140px;
    width: 100%;
    margin: 0;
}

.header-box {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-main);
    height: 72px;
}

.logo-box {
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo-bold {
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-light {
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-muted);
}

.nav-box {
    padding: 0;
}

.nav-menu {
    display: flex;
    width: 100%;
    height: 100%;
}

.nav-link-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 1.05rem;
    border-right: 1px solid var(--border-main);
    height: 100%;
    transition: var(--transition-smooth);
}

.nav-link-box:last-child {
    border-right: none;
}

.nav-link-box:hover {
    background: var(--bg-secondary);
}

.hire-box {
    padding: 0;
    justify-content: center;
}

.hire-box .nav-link-box {
    width: 100%;
    height: 100%;
    border-right: none;
}

.contact-box {
    padding: 0;
    justify-content: center;
    background: var(--color-green);
    border-right: none;
    transition: var(--transition-smooth);
}

.contact-box:hover {
    background: var(--color-green-hover);
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Buttons style matching the image reference */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: var(--text-primary);
    color: #ffffff;
}

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

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

.btn-outline:hover {
    background: rgba(23, 20, 18, 0.05);
}

.btn-text {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 16px;
}

.btn-text:hover {
    color: var(--text-muted);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.15rem;
}

.w-full {
    width: 100%;
}

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

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-deep);
    z-index: 999;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-primary);
}

.mobile-nav-ctas {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Reading progress bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--color-green);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Hero Section */
.hero-section {
    padding-top: 152px; /* 72px header + 80px section spacing */
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.hero-visual {
    position: relative;
    padding: 60px 40px 60px 40px;
    border-right: 1px solid var(--border-main);
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Polygonal clip-path mask matching the first image reference */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    clip-path: polygon(18% 30%, 38% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px 60px 40px;
}

.news-ticker-badge {
    background: #171412;
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 0.98;
    margin-bottom: 40px;
}

/* Trust Stars & User Review Styles */
.trust-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.avatar-group {
    display: flex;
}

.avatar-mini {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border: 2px solid var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: -8px;
}

.avatar-group .avatar-mini:first-child {
    margin-left: 0;
}

.stars-group {
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.stars i {
    transform: rotate(45deg); /* Diamond shape indicators */
    font-size: 0.75rem;
}

.stars-label {
    font-family: var(--font-title);
    font-weight: 700;
    margin-left: 8px;
}

.trust-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Stats & About Grid Section */
.stats-about-section {
    background: var(--bg-deep);
    padding: 80px 0;
}

.stats-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about-brief {
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    border-right: 1px solid var(--border-main);
}

.about-title-tag {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.4;
}

.office-locations-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-locations-list li {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.square-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    display: inline-block;
}

.about-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px;
}

.about-main-text {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 40px;
}

/* Stats Grid Panel Section */
.stats-grid-section {
    padding: 0;
}

.stats-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.stats-numbers-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border-right: 1px solid var(--border-main);
}

.stat-grid-cell {
    border-right: 1px solid var(--border-main);
    border-bottom: 1px solid var(--border-main);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-grid-cell:nth-child(even) {
    border-right: none;
}

.stat-grid-num {
    font-family: var(--font-title);
    font-size: 5rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.stat-grid-lbl {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.stats-visual-portrait {
    border-bottom: 1px solid var(--border-main);
    overflow: hidden;
}

.stat-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Industry Logo Ticker Section */
.ticker-section {
    background: var(--bg-deep);
    padding: 40px 0;
}

.ticker-heading {
    text-align: center;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 80px;
    animation: logoScroll 30s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-item i {
    color: var(--text-muted);
    font-size: 1.2rem;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Services / Methods Section */
.services-section {
    background: var(--bg-deep);
}

.section-header {
    margin-bottom: 80px;
    max-width: 800px;
    padding: 0 40px;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.05;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-main);
}

.service-card-item {
    display: flex;
    background: var(--bg-card);
    border: none;
    border-bottom: 1px solid var(--border-main);
    padding: 80px 40px;
    gap: 80px;
    align-items: center;
    position: relative;
}

.service-card-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.service-card-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tag-badge {
    background: var(--text-primary);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 2px;
}

.service-action-link .learn-more-link {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.service-action-link .learn-more-link:hover {
    color: var(--text-muted);
}

.service-card-right {
    flex: 0.8;
    position: relative;
}

/* Asymmetrical clipped image matching reference cards */
.image-clip-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15%);
}

.service-number-indicator {
    position: absolute;
    top: -24px;
    left: -20px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 10;
}

/* Process Section */
.process-section {
    background: var(--bg-deep);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding: 0 40px;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    padding: 32px;
    border-radius: 2px;
    position: relative;
}

.process-number {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.process-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Compare Table Section */
.compare-section {
    background: var(--bg-deep);
}

.table-wrapper {
    width: calc(100% - 80px);
    margin: 0 40px;
    overflow-x: auto;
    border: 1px solid var(--border-main);
    background: var(--bg-card);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.compare-table th, .compare-table td {
    padding: 24px;
    border-bottom: 1px solid var(--border-main);
}

.compare-table th {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    background: rgba(23, 20, 18, 0.03);
}

.table-method-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.status-easy {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-medium {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.text-highlight {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
}

.compare-table td small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Success / Testimonials Section */
.success-section {
    background: var(--bg-deep);
}

.success-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 0;
    align-items: stretch;
}

.success-left {
    background: var(--bg-card);
    border-right: 1px solid var(--border-main);
    padding: 80px 40px;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 240px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.testimonial-text {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-name {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.client-role {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    gap: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 1px solid var(--border-main);
    border-top: 1px solid var(--border-main);
}

.control-btn {
    background: var(--bg-deep);
    color: var(--text-primary);
    border: none;
    padding: 24px 36px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    background: var(--bg-card);
}

.success-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 80px 40px;
    justify-content: center;
}

.success-card-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    padding: 24px;
    border-radius: 2px;
}

.sc-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-radius: 2px;
}

.sc-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
}

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

.success-box {
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.sb-title {
    display: block;
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.sb-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.sb-ctas {
    display: flex;
    gap: 16px;
}

/* FAQ Accordion Section */
.faq-section {
    background: var(--bg-deep);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.faq-left {
    padding: 60px 40px;
    border-right: 1px solid var(--border-main);
    display: flex;
    flex-direction: column;
}

.faq-contact-card {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    padding: 32px;
    border-radius: 2px;
}

.fcc-text {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.fcc-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 60px 40px;
}

.faq-item {
    border: 1px solid var(--border-main);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1rem;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-content p {
    padding-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--text-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    background: var(--bg-deep);
}

.contact-card {
    background: var(--bg-card);
    border-top: 1px solid var(--border-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.contact-info-panel {
    padding: 80px 40px;
    border-right: 1px solid var(--border-main);
}

.contact-form-panel {
    padding: 80px 40px;
}

.contact-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.contact-desc {
    font-size: 1.15rem;
    margin-bottom: 48px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cd-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cd-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 2px;
    flex-shrink: 0;
}

.cd-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cd-value {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

a.cd-value:hover {
    color: var(--text-muted);
}

/* Form Styles */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-label {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    background: var(--bg-deep);
    border: 1px solid var(--border-main);
    color: var(--text-primary);
    padding: 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    width: 100%;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: var(--text-muted-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--text-primary);
}

.select-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

.textarea-input {
    resize: none;
    height: 140px;
}

.form-success-msg {
    display: none;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 16px;
    font-size: 0.95rem;
    border-radius: 2px;
    align-items: center;
    gap: 12px;
}

.form-success-msg.show {
    display: flex;
}

/* Footer styling */
.footer {
    background: var(--text-primary);
    border-top: 1px solid var(--border-main);
    padding: 80px 0 40px 0;
}

.footer .logo {
    color: #ffffff;
}

.footer p {
    color: #cccccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.8fr);
    gap: 48px;
    margin-bottom: 64px;
    padding: 0 40px;
}

.footer-about {
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-green);
    color: var(--text-primary);
    border-color: var(--color-green);
}

.footer-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 24px;
}

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

.footer-links a {
    text-decoration: none;
    color: #cccccc;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    font-size: 0.85rem;
    color: #999999;
}

/* Animations */

/* Scroll animations using View Timeline (CSS Scroll-driven animations) */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes reveal {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .scroll-animated-item {
            animation: reveal auto linear both;
            animation-timeline: view();
            animation-range: entry 5% cover 30%;
        }
    }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
        border-left: none;
        border-right: none;
    }
    
    .header-grid {
        grid-template-columns: 1fr 72px;
        border-left: none;
        border-right: none;
    }
    
    .logo-box {
        padding: 0 24px;
    }
    
    .nav-box, .hire-box, .contact-box {
        display: none;
    }
    
    .mobile-toggle-box {
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid var(--border-main);
        height: 72px;
        cursor: pointer;
        background: transparent;
        transition: var(--transition-smooth);
    }
    
    .mobile-toggle-box:hover {
        background: var(--bg-secondary);
    }
    
    .mobile-toggle-inner {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .mobile-toggle-inner .bar {
        width: 24px;
        height: 2px;
        background-color: var(--text-primary);
        transition: var(--transition-smooth);
    }
    
    .mobile-nav {
        top: 72px;
        height: calc(100vh - 72px);
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-grid, .success-grid, .faq-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        order: 2;
        padding: 40px 0;
        border-right: none;
    }
    
    .hero-content {
        order: 1;
        padding: 40px 0;
    }
    
    .stats-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-brief {
        padding: 40px 0;
        border-right: none;
    }
    
    .about-details {
        padding: 40px 0;
    }
    
    .stats-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .stats-numbers-box {
        border-right: none;
    }
    
    .stats-visual-portrait {
        height: 360px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    
    .table-wrapper {
        width: 100%;
        margin: 0;
    }
    
    .service-card-item {
        padding: 60px 0;
        gap: 40px;
    }
    
    .success-left {
        padding: 40px 0;
        border-right: none;
    }
    
    .success-right {
        padding: 40px 0;
    }
    
    .faq-left {
        padding: 40px 0;
        border-right: none;
    }
    
    .faq-right {
        padding: 40px 0;
    }
    
    .contact-card {
        border-top: 1px solid var(--border-main);
    }
    
    .contact-info-panel {
        padding: 40px 0;
        border-right: none;
    }
    
    .contact-form-panel {
        padding: 40px 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    
    .footer-bottom {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .logo-box {
        padding: 0;
    }
    
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-numbers-box {
        grid-template-columns: 1fr;
    }
    
    .stat-grid-cell {
        border-right: none;
        padding: 40px 0;
    }
    
    .service-card-item {
        flex-direction: column;
        padding: 40px 0;
        gap: 40px;
    }
    
    .service-card-right {
        width: 100%;
    }
    
    .image-clip-container {
        height: 240px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-controls {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        width: 100%;
        border-left: none;
    }
    
    .control-btn {
        flex: 1;
        justify-content: center;
        padding: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
