/* ==========================================
   American Wide Property - Professional Styles
   ========================================== */

/* === CSS Variables === */
:root {
    --navy: #1B3A5C;
    --navy-dark: #0F2744;
    --navy-light: #314E77;
    --green: #4A7C59;
    --green-light: #5E9B6F;
    --green-dark: #3A6347;
    --gold: #C9A96E;
    --gold-light: #D4BC8E;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #F0F2F5;
    --mid-gray: #E2E5EA;
    --text-dark: #1A1A2E;
    --text-body: #4A4A5A;
    --text-light: #7A7A8A;
    --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 58, 92, 0.1);
    --shadow-lg: 0 8px 40px rgba(27, 58, 92, 0.15);
    --shadow-xl: 0 16px 60px rgba(27, 58, 92, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 600;
}

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

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

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: var(--light-gray);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--navy);
    color: white !important;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    color: white;
    margin-bottom: 24px;
    max-width: 800px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* === Page Hero (inner pages) === */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    color: white;
    margin-bottom: 20px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    margin-bottom: 32px;
}

/* === Section Styles === */
.section-light {
    padding: 100px 0;
    background: var(--off-white);
}

.section-white {
    padding: 100px 0;
    background: var(--white);
}

.section-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: white;
}

.section-header {
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--green);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-dark .section-badge,
.page-hero .section-badge {
    background: rgba(74, 124, 89, 0.2);
    color: var(--green-light);
}

.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 19px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.text-accent {
    color: var(--green);
}

.text-white {
    color: white !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.75) !important;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-body);
}

.subsection-title {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

/* === Mission Section === */
.mission {
    padding: 120px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.mission-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--green);
}

.mission-label span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    white-space: nowrap;
}

.mission-content p {
    font-size: 19px;
    margin-top: 20px;
}

/* === Services Section === */
.services {
    padding: 120px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--mid-gray);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.service-card.featured h3 {
    color: white;
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--green), var(--gold));
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    color: var(--navy);
}

.service-card.featured .service-icon {
    color: var(--gold-light);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card p {
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-card.featured .service-link {
    color: var(--gold-light);
}

.service-link:hover {
    gap: 12px;
}

/* === Features Section === */
.features {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--light-gray), var(--mid-gray));
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mid-gray);
}

.placeholder-content {
    text-align: center;
    color: var(--text-light);
}

.placeholder-content svg {
    width: 120px;
    height: 80px;
    margin-bottom: 12px;
}

.placeholder-content span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.image-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat {
    flex: 1;
    background: var(--navy);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-body);
}

.feature-list.compact li {
    padding: 8px 0;
    font-size: 15px;
}

.check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--green);
    margin-top: 2px;
}

/* === Markets Section === */
.markets {
    padding: 120px 0;
    background: var(--off-white);
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.market-group {
    margin-bottom: 32px;
}

.market-group h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.market-tag {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.market-tag.primary {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    font-weight: 600;
}

.markets-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--mid-gray);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
}

/* === Approach Section === */
.approach {
    padding: 120px 0;
    background: var(--white);
}

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

.approach-card {
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--mid-gray);
    background: var(--white);
    transition: var(--transition);
    position: relative;
}

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

.approach-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition);
}

.approach-card:hover .approach-number {
    color: var(--green);
}

.approach-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.approach-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* === CTA Section === */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta h2 {
    color: white;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    margin-bottom: 16px;
}

.cta-highlight {
    color: var(--gold-light) !important;
    font-weight: 600;
    font-size: 20px !important;
    margin-bottom: 36px !important;
}

/* === Two Column Grid === */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gap-lg {
    gap: 40px;
}

/* === Info Cards === */
.info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
}

.info-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.info-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.card-highlight {
    color: var(--gold-light) !important;
    font-weight: 600;
    font-style: italic;
    margin-top: 16px;
}

.bullet-list {
    list-style: none;
    margin: 16px 0;
}

.bullet-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
}

/* === Partnership Model === */
.partnership-model {
    padding: 120px 0;
    background: var(--white);
}

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

.model-step {
    padding: 40px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green);
    transition: var(--transition);
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.model-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--navy);
}

/* === Centered Content === */
.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.inline-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.inline-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--mid-gray);
}

/* === About Page === */
.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    font-size: 19px;
    margin-bottom: 16px;
}

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

.about-approach-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--mid-gray);
    text-align: center;
    transition: var(--transition);
}

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

.about-approach-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--green);
}

.about-approach-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--navy);
}

/* === Leadership === */
.leadership-section {
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
    padding: 48px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mid-gray);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
}

.leader-info h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.leader-role {
    color: var(--green);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
}

.leader-info p {
    margin-bottom: 12px;
}

/* === Contact Page === */
.contact-section {
    padding: 160px 0 100px;
    background: var(--off-white);
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.contact-info .lead {
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--mid-gray);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--navy);
    font-weight: 500;
    font-size: 16px;
}

.contact-item a:hover {
    color: var(--green);
}

.contact-item p {
    font-size: 15px;
    line-height: 1.5;
}

.contact-note {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green);
}

.contact-note p {
    font-size: 15px;
    margin-bottom: 8px;
}

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

/* === Contact Form === */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--mid-gray);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--off-white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
    background: var(--white);
}

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

/* === Footer === */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-title {
    color: white;
}

.footer-brand .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
}

.footer h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact svg {
    color: var(--green-light);
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* === Animations === */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate-target { transition-delay: 0s; }
.service-card.animate-target:nth-child(2) { transition-delay: 0.1s; }
.service-card.animate-target:nth-child(3) { transition-delay: 0.2s; }

.approach-card.animate-target:nth-child(1) { transition-delay: 0s; }
.approach-card.animate-target:nth-child(2) { transition-delay: 0.1s; }
.approach-card.animate-target:nth-child(3) { transition-delay: 0.2s; }
.approach-card.animate-target:nth-child(4) { transition-delay: 0.3s; }

.model-step.animate-target:nth-child(1) { transition-delay: 0s; }
.model-step.animate-target:nth-child(2) { transition-delay: 0.1s; }
.model-step.animate-target:nth-child(3) { transition-delay: 0.2s; }
.model-step.animate-target:nth-child(4) { transition-delay: 0.3s; }

.feature-list li.animate-target:nth-child(n) {
    transition-delay: calc(0.05s * var(--i, 0));
}

/* === Responsive === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .inline-features {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--mid-gray);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .image-stats {
        flex-direction: column;
    }

    .section-light,
    .section-white,
    .section-dark {
        padding: 72px 0;
    }

    .mission,
    .services,
    .features,
    .markets,
    .approach,
    .cta,
    .partnership-model {
        padding: 72px 0;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .contact-section {
        padding: 120px 0 60px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}
