/* Design Variables */
:root {
    /* Muted Earthy Color Palette */
    --sand: #F5F1E8;
    --sage: #A8B5A0;
    --sage-dark: #8B9A83;
    --blush: #E8D5D0;
    --ivory: #FEFCF8;
    --warm-grey: #8A8A8A;
    --charcoal: #3C3C3C;
    --soft-black: #2A2A2A;
    
    /* Typography */
    --font-serif: 'Cormorant', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--ivory);
    font-weight: 300;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    color: var(--soft-black);
}

h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
    font-size: 1.1rem;
    color: var(--warm-grey);
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border-bottom: 1px solid rgba(168, 181, 160, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

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

.nav-container {
    position: relative;
}

.nav-menu {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-svg {
    width: 100px;
    height: 100px;
    background: none;
    border: none;
    filter: none;
    object-fit: cover;
    object-position: center;
    clip-path: circle(40% at center);
}

.logo h1 {
    color: #654321;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font-serif);
    margin: 0;
    margin-left: -1rem;
}

.logo h1::after {
    content: ' Living';
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    color: #A0522D;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: #654321;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8B4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8B4513;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg,
        transparent 25%,
        rgba(168, 181, 160, 0.06) 25%,
        rgba(168, 181, 160, 0.06) 50%,
        transparent 50%,
        transparent 75%,
        rgba(245, 241, 232, 0.08) 75%);
    background-size: 40px 40px;
    border-radius: 50%;
    animation: float 25s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
        rgba(232, 213, 208, 0.1) 0%,
        rgba(232, 213, 208, 0.05) 40%,
        transparent 70%);
    border-radius: 30% 70% 70% 30%;
    animation: float 20s ease-in-out infinite reverse;
}


.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 0 0 80px;
    padding-left: var(--spacing-md);
}

.hero-content h1 {
    margin-bottom: var(--spacing-sm);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-family: var(--font-sans);
    line-height: 1.6;
    max-width: 600px;
}

.rental-yields {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rental-yields em {
    font-style: italic;
    font-family: var(--font-serif);
}

.cta-button {
    display: inline-block;
    background: var(--sage);
    color: var(--ivory);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(168, 181, 160, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 181, 160, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Sections - Adaptive Sizing */
section {
    padding: 0;
}

.hero-section {
    padding: var(--spacing-xl) 0;
}

.philosophy-section {
    padding: var(--spacing-md) 0;
}

.services-section {
    padding: 0;
}

.ecosystem-section {
    padding: var(--spacing-xl) 0;
}

.contact-section {
    padding: var(--spacing-xl) 0;
}

.philosophy-section {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(168, 181, 160, 0.05) 40%, 
        rgba(168, 181, 160, 0.05) 60%, 
        transparent 60%);
    transform: rotate(15deg);
    border-radius: 20px;
}

.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(232, 213, 208, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-section h2,
.ecosystem-section h2,
.contact-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: #654321;
}

.services-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: #654321;
}

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

.philosophy-accent {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.top-accent {
    margin-bottom: var(--spacing-lg);
}

.bottom-accent {
    margin-top: var(--spacing-lg);
}

.philosophy-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    border: 1px solid var(--sage);
    background: var(--ivory);
}

.philosophy-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
}

.philosophy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    gap: var(--spacing-sm);
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sage), transparent);
}

.divider-ornament {
    color: var(--sage);
    font-size: 1.2rem;
    font-family: var(--font-serif);
}

.philosophy-narrative {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #8B4513;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.philosophy-signature {
    font-size: 1.1rem;
    color: #654321;
    font-weight: 400;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.philosophy-signature em {
    font-family: var(--font-serif);
    font-style: italic;
}

.philosophy-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 0.2rem;
}

.metric-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--warm-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-separator {
    color: var(--sage);
    font-size: 1.2rem;
}

/* Services Section - Split Layout */
.services-section {
    position: relative;
    overflow: hidden;
    background: var(--ivory);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    align-items: stretch;
}

.services-image-section {
    position: relative;
    overflow: hidden;
}

.services-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.services-video:hover {
    transform: scale(1.05);
}

.services-content-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    align-items: center;
}

.services-container {
    max-width: 500px;
    margin: 0 auto;
}

.services-intro {
    font-size: 1.1rem;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-weight: 300;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(168, 181, 160, 0.1);
    transition: all 0.3s ease;
}

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

.service-item:hover {
    transform: translateX(10px);
}

.service-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #654321, #8B4513);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(101, 67, 33, 0.25);
    margin-top: 0.5rem;
}

.service-content h3 {
    color: #654321;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
}

.service-content p {
    font-size: 0.95rem;
    color: #8B4513;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
    font-weight: 300;
}

.service-content p:last-child {
    margin-bottom: 0;
}

.service-content p strong {
    color: #654321;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -3%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 60%, 
        rgba(168, 181, 160, 0.08) 0%,
        rgba(168, 181, 160, 0.03) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg,
        rgba(232, 213, 208, 0.06) 0%,
        rgba(245, 241, 232, 0.04) 60%,
        transparent 100%);
    border-radius: 30% 70% 60% 40%;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.expertise-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    gap: var(--spacing-sm);
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sage), transparent);
}

.ornament-dot {
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(168, 181, 160, 0.4);
}

.services-timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: var(--spacing-sm) 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-md);
    position: relative;
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(168, 181, 160, 0.25);
    position: relative;
    z-index: 3;
}

.timeline-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 181, 160, 0.2), transparent);
    z-index: -1;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.timeline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--sage), rgba(168, 181, 160, 0.4));
    position: relative;
    box-shadow: 0 0 4px rgba(168, 181, 160, 0.3);
}

.timeline-item.right .timeline-line {
    background: linear-gradient(to left, var(--sage), rgba(168, 181, 160, 0.3));
}

.timeline-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--sage);
}

.timeline-item.right .timeline-line::after {
    left: -2px;
    right: auto;
    border-left: none;
    border-right: 6px solid var(--sage);
}

.timeline-content {
    background: linear-gradient(135deg, var(--ivory) 0%, rgba(254, 252, 248, 0.95) 100%);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(168, 181, 160, 0.08);
    max-width: 380px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(168, 181, 160, 0.12);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 181, 160, 0.03) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(168, 181, 160, 0.15);
}

.timeline-content:hover::before {
    opacity: 1;
    transform: translate(-10%, -10%);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.timeline-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

/* Investment Icon - Growth Chart */
.invest-icon::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 2px;
    width: 4px;
    height: 8px;
    background: var(--sage);
    border-radius: 1px;
}

.invest-icon::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 2px;
    width: 20px;
    height: 2px;
    background: var(--sage);
    box-shadow: 
        0 -4px 0 var(--sage),
        6px -8px 0 var(--sage),
        12px -12px 0 var(--sage),
        18px -6px 0 var(--sage);
}

/* Development Icon - Building/Construction */
.develop-icon::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 4px;
    width: 16px;
    height: 12px;
    background: var(--sage);
    border-radius: 1px 1px 0 0;
}

.develop-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 8px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid var(--sage);
}

/* Trade Icon - Notes/Documents */
.trade-icon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    width: 14px;
    height: 18px;
    border: 2px solid var(--sage);
    border-radius: 2px;
    background: transparent;
}

.trade-icon::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 6px;
    width: 10px;
    height: 1px;
    background: var(--sage);
    box-shadow: 
        0 3px 0 var(--sage),
        0 6px 0 var(--sage);
}

/* Design Icon - Sparkle */
.design-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 4px;
    height: 4px;
    background: var(--sage);
    border-radius: 50%;
    box-shadow: 
        -8px -6px 0 -1px var(--sage),
        8px -6px 0 -1px var(--sage),
        -8px 6px 0 -1px var(--sage),
        8px 6px 0 -1px var(--sage);
}

.design-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 12px;
    width: 1px;
    height: 12px;
    background: var(--sage);
    box-shadow: 12px -6px 0 0 var(--sage);
    transform: rotate(45deg);
    transform-origin: center;
}

.timeline-content h3 {
    margin: 0;
    color: var(--soft-black);
    font-size: 1.4rem;
    font-family: var(--font-serif);
}

.timeline-content p {
    color: var(--warm-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content p strong {
    color: var(--soft-black);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

/* Ecosystem Section */
.ecosystem-section {
    background: var(--blush);
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 40%, 
        rgba(168, 181, 160, 0.06) 0%, 
        rgba(168, 181, 160, 0.02) 40%, 
        transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.ecosystem-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: linear-gradient(60deg,
        rgba(245, 241, 232, 0.4) 0%,
        rgba(232, 213, 208, 0.2) 50%,
        transparent 100%);
    border-radius: 40% 60% 70% 30%;
    animation: float 18s ease-in-out infinite;
}

.journey-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--warm-grey);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-xs);
    margin: var(--spacing-lg) 0;
    position: relative;
}

.journey-step {
    flex: 1;
    text-align: center;
    background: var(--ivory);
    border: 1px solid rgba(168, 181, 160, 0.15);
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 6px 20px rgba(168, 181, 160, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    max-width: 200px;
}

.journey-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(168, 181, 160, 0.15);
}

.journey-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(168, 181, 160, 0.25);
}

.journey-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

/* Journey Icons */
/* Discover Icon - Search/Magnifying Glass */
.discover-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--sage);
    border-radius: 50%;
}

.discover-icon::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 8px;
    height: 2px;
    background: var(--sage);
    transform: rotate(45deg);
    border-radius: 1px;
}

/* Secure Icon - Shield */
.secure-icon::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 24px;
    border: 2px solid var(--sage);
    border-radius: 10px 10px 50% 50%;
    background: transparent;
}

.secure-icon::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    border: 2px solid var(--sage);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

/* Style Icon - Sparkle/Diamond */
.style-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 16px;
    height: 16px;
    border: 2px solid var(--sage);
    background: transparent;
}

.style-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--sage);
    border-radius: 50%;
}

/* Manage Icon - Gear/Settings */
.manage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid var(--sage);
    border-radius: 50%;
    background: transparent;
}

.manage-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    box-shadow: 
        -12px 0 0 -4px var(--sage),
        12px 0 0 -4px var(--sage),
        0 -12px 0 -4px var(--sage),
        0 12px 0 -4px var(--sage);
}

/* Grow Icon - Upward Arrow/Growth */
.grow-icon::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--sage);
}

.grow-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--sage);
}

.journey-step h3 {
    font-size: 1.3rem;
    color: var(--soft-black);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-serif);
    font-weight: 400;
}

.journey-step p {
    font-size: 0.95rem;
    color: var(--warm-grey);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.journey-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--sage), rgba(168, 181, 160, 0.3));
    margin-top: 60px;
    position: relative;
    flex-shrink: 0;
}

.journey-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid var(--sage);
}

.journey-footer {
    color: var(--warm-grey);
    margin-top: var(--spacing-lg);
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Consultation Section */
.consultation-section {
    background: var(--ivory);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(101, 67, 33, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, rgba(101, 67, 33, 0.06) 0%, transparent 30%),
        linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    animation: shimmer-bg 15s ease-in-out infinite;
}

.consultation-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(101, 67, 33, 0.05) 60deg, 
            transparent 120deg, 
            rgba(139, 69, 19, 0.03) 180deg, 
            transparent 240deg, 
            rgba(101, 67, 33, 0.04) 300deg, 
            transparent 360deg);
    animation: rotate-gradient 30s linear infinite;
    opacity: 0.6;
}

@keyframes shimmer-bg {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    33% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    66% {
        opacity: 0.4;
        transform: scale(0.95);
    }
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.consultation-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #654321;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-sm);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(101, 67, 33, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.benefit-item:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

.benefit-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(101, 67, 33, 0.15);
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), transparent);
    z-index: -1;
    animation: pulse-ring 3s ease-in-out infinite;
    opacity: 0;
}

.benefit-item:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(101, 67, 33, 0.25);
}

.benefit-item:hover .icon-circle::before {
    opacity: 1;
}

.benefit-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #654321;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.benefit-item h3 {
    color: #654321;
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-serif);
    font-weight: 500;
}

.benefit-item p {
    color: #8B4513;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Icons */
/* Building Icon */
.map-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 16px;
    background: white;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.map-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid white;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        -12px 14px 0 -6px white,
        -12px 18px 0 -8px white,
        -6px 14px 0 -6px white,
        -6px 18px 0 -8px white,
        6px 14px 0 -6px white,
        6px 18px 0 -8px white,
        12px 14px 0 -6px white,
        12px 18px 0 -8px white;
}

/* Notes with Tick Icon */
.target-icon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 22px;
    border: 2px solid white;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.target-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 50%;
    left: 52%;
}

/* Person with Speech Bubble Icon */
.question-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 35%;
    left: 40%;
    box-shadow: 
        0 12px 0 -2px white,
        0 18px 0 -1px white,
        0 24px 0 -3px white;
}

.question-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 10px;
    background: white;
    border-radius: 6px;
    top: 40%;
    right: 30%;
    box-shadow: 
        0 0 0 1px transparent,
        -4px 8px 0 -2px white;
}

/* Growth Chart Icon */
.compass-icon::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 8px;
    background: white;
    top: 62%;
    left: 38%;
    box-shadow: 
        5px 0 0 white,
        5px -3px 0 white,
        10px 0 0 white,
        10px -6px 0 white,
        15px 0 0 white,
        15px -9px 0 white;
}

.compass-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid white;
    top: 35%;
    left: 62%;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f7f5f3 0%, #f0ede8 100%);
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
    margin-top: var(--spacing-md);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(168, 181, 160, 0.06) 0%, 
        rgba(168, 181, 160, 0.02) 30%, 
        transparent 60%);
    animation: float 30s linear infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg,
        rgba(232, 213, 208, 0.08) 0%,
        rgba(245, 241, 232, 0.04) 50%,
        transparent 100%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite reverse;
}

.contact-minimal::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(168, 181, 160, 0.08) 0%, 
        rgba(168, 181, 160, 0.03) 40%, 
        transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

.contact-minimal::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg,
        rgba(232, 213, 208, 0.06) 0%,
        rgba(168, 181, 160, 0.03) 50%,
        transparent 100%);
    border-radius: 40% 60% 70% 30%;
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    color: #654321;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: -0.02em;
    text-align: left;
}

.contact-intro {
    text-align: left;
    max-width: 900px;
    margin: 0 0 var(--spacing-md) 0;
}

.contact-pointers {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    position: relative;
}

.contact-pointers::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, #654321, rgba(101, 67, 33, 0.3));
    border-radius: 1px;
}

.pointer-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.1rem;
    color: #654321;
    font-weight: 400;
    position: relative;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.pointer-item:hover {
    transform: translateX(8px);
}

.pointer-item span {
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
}

.pointer-icon {
    width: 42px;
    height: 42px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(101, 67, 33, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.pointer-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(101, 67, 33, 0.4);
}

/* Property Solutions Icon - Building */
.property-pointer-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 12px;
    background: white;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.property-pointer-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 6px solid white;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        -10px 8px 0 -4px white,
        -10px 12px 0 -6px white,
        -5px 8px 0 -4px white,
        -5px 12px 0 -6px white,
        5px 8px 0 -4px white,
        5px 12px 0 -6px white,
        10px 8px 0 -4px white,
        10px 12px 0 -6px white;
}

/* Market Insight Icon - Graph */
.insight-pointer-icon::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 6px;
    background: white;
    bottom: 12px;
    left: 14px;
    box-shadow: 
        4px 0 0 white,
        4px -2px 0 white,
        8px 0 0 white,
        8px -4px 0 white,
        12px 0 0 white,
        12px -6px 0 white;
}

.insight-pointer-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 4px solid white;
    bottom: 22px;
    right: 12px;
}

/* Relationship Support Icon - Handshake */
.support-pointer-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    border: 2px solid white;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
    top: 16px;
    left: 8px;
    transform: rotate(-10deg);
}

.support-pointer-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    border: 2px solid white;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
    top: 16px;
    right: 8px;
    transform: rotate(10deg);
}

.contact-single-column {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.contact-intro p {
    font-size: 1.2rem;
    color: #8B4513;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

.contact-signature {
    font-style: italic;
    color: #654321 !important;
    margin-top: var(--spacing-md) !important;
    font-family: var(--font-serif);
}

.contact-left .contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Center Column - Office Info */
.contact-center {
    text-align: center;
    padding: var(--spacing-md);
}

.office-info h4 {
    color: #654321;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.office-info h5 {
    color: #654321;
    font-size: 1.2rem;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.office-info p {
    color: #8B4513;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 241, 232, 0.8) 100%);
    border: 1px solid rgba(101, 67, 33, 0.1);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(101, 67, 33, 0.08);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(101, 67, 33, 0.12);
}

.map-visual {
    color: #8B4513;
    font-size: 1.1rem;
    font-weight: 400;
    padding: var(--spacing-md);
    background: rgba(101, 67, 33, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(101, 67, 33, 0.2);
}

/* Right Column - Contact Button */
.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: var(--spacing-md);
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(101, 67, 33, 0.2);
    font-family: var(--font-sans);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(101, 67, 33, 0.3);
    background: linear-gradient(135deg, #654321 0%, #5a3a1c 100%);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-content h4 {
    color: #654321;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.feature-content p {
    color: #8B4513;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.feature-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Property Icon - Building */
.property-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 14px;
    background: var(--sage);
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.property-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid var(--sage);
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

/* Intelligence Icon - Graph */
.intelligence-icon::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    background: var(--sage);
    bottom: 10px;
    left: 8px;
    border-radius: 1px;
}

.intelligence-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    background: var(--sage);
    bottom: 10px;
    left: 13px;
    border-radius: 1px;
    box-shadow: 
        5px 0 0 var(--sage),
        10px -3px 0 var(--sage),
        15px -6px 0 var(--sage);
}

/* Support Icon - Handshake */
.support-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 8px;
    border: 2px solid var(--sage);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    top: 14px;
    left: 4px;
    transform: rotate(-15deg);
}

.support-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 8px;
    border: 2px solid var(--sage);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    top: 14px;
    right: 4px;
    transform: rotate(15deg);
}

.contact-right {
    flex-shrink: 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 252, 248, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(101, 67, 33, 0.15);
    border-radius: 20px;
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    box-shadow: 
        0 25px 50px rgba(101, 67, 33, 0.12),
        0 10px 25px rgba(168, 181, 160, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 350px;
    transform: translateY(0);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 181, 160, 0.06) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(101, 67, 33, 0.18),
        0 15px 35px rgba(168, 181, 160, 0.12);
    border-color: rgba(101, 67, 33, 0.25);
}

.contact-card:hover::before {
    opacity: 1;
    transform: translate(-10%, -10%);
}

.contact-card h3 {
    color: #654321;
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #654321, #8B4513);
    border-radius: 1px;
}

.contact-card p {
    color: var(--warm-grey);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 300;
}

.contact-email-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-sans);
    position: relative;
    padding: 1.3rem 2.8rem;
    background: linear-gradient(135deg, #654321 0%, #8B4513 100%);
    border: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-top: var(--spacing-lg);
    box-shadow: 
        0 12px 30px rgba(101, 67, 33, 0.3),
        0 6px 15px rgba(101, 67, 33, 0.15);
    letter-spacing: 0.02em;
    min-width: 300px;
    transform: translateY(0);
}

.contact-email-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.contact-email-cta::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-email-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 18px 40px rgba(101, 67, 33, 0.4),
        0 8px 20px rgba(101, 67, 33, 0.25);
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.contact-email-cta:hover::before {
    left: 100%;
}

.contact-email-cta:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-cta-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    color: var(--ivory);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.4s ease;
    gap: var(--spacing-md);
    letter-spacing: 0.02em;
    box-shadow: 0 8px 25px rgba(168, 181, 160, 0.2);
}

.contact-cta-minimal:hover {
    transform: translateY(-3px);
    background: var(--sage-dark);
    box-shadow: 0 12px 35px rgba(168, 181, 160, 0.3);
}

.contact-cta-minimal .cta-text {
    font-family: var(--font-sans);
}

.contact-cta-minimal .cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.contact-cta-minimal:hover .cta-arrow {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--ivory);
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .services-image-section {
        order: 2;
        min-height: 300px;
    }
    
    .services-content-section {
        order: 1;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .services-container {
        max-width: 100%;
    }
    
    
    .contact-single-column {
        margin-top: var(--spacing-md);
    }
    
    .contact-left h2 {
        font-size: 2.5rem;
    }
    
    .contact-email-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 260px;
    }
    
    .journey-timeline {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .journey-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(to bottom, var(--sage), rgba(168, 181, 160, 0.3));
    }
    
    .journey-connector::after {
        bottom: -6px;
        right: 50%;
        top: auto;
        transform: translateX(50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid var(--sage);
        border-bottom: none;
    }
    
    .services-timeline {
        max-width: 100%;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .timeline-item.left,
    .timeline-item.right {
        justify-content: center;
    }
    
    .timeline-line {
        width: 60px;
        transform: rotate(90deg);
    }
    
    .timeline-line::after {
        top: -2px;
        right: 50%;
        transform: translateX(50%) rotate(-90deg);
        border-top: 6px solid var(--sage);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: none;
    }
    
    .timeline-item.right .timeline-line::after {
        border-right: 4px solid transparent;  
        border-left: 4px solid transparent;
        border-top: 6px solid var(--sage);
        border-bottom: none;
    }
    
    .timeline-content {
        max-width: 100%;
        margin: 0 var(--spacing-sm);
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        margin: 0 var(--spacing-md);
        padding-left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}