@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =====================================
   RESET & BASE
   ===================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: rgba(179, 185, 176, 0.3);
}

:root {
    --pure-white: #FFFFFF;
    --soft-sage-gray: #B3B9B0;
    --muted-olive-green: #6B7E61;
    --deep-forest-green: #2D3D2F;
    --text-dark: #1A1F1C;
    --text-light: rgba(255, 255, 255, 0.9);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
}

/* =====================================
   CUSTOM SCROLLBAR
   ===================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--soft-sage-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-olive-green);
    border-radius: 3px;
}

/* =====================================
   LAYOUT UTILITIES
   ===================================== */
.section-padding {
    padding: 5rem 0;
}

.container-custom {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
}

/* =====================================
   TYPOGRAPHY
   ===================================== */
.text-display {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.text-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-olive-green);
    display: block;
    margin-bottom: 1rem;
}

/* =====================================
   BUTTONS
   ===================================== */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pill-white {
    background-color: var(--pure-white);
    color: var(--deep-forest-green);
}

.btn-pill-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-pill-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-pill-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-pill-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background-color: var(--muted-olive-green);
    color: var(--pure-white);
    border: none;
    gap: 0.5rem;
}

.btn-pill-green:hover {
    background-color: var(--deep-forest-green);
    transform: scale(1.05);
}

/* =====================================
   NAVIGATION
   ===================================== */
.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-pill-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-pill-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Social Circle */
.social-circle {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* =====================================
   HERO SECTION
   ===================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 61, 47, 0.3) 0%, rgba(45, 61, 47, 0.5) 50%, rgba(45, 61, 47, 0.7) 100%);
}

.hero-nav {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 1.5rem;
}

.hero-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    height: 3.5em;
    width: auto;
    object-fit: contain;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-link-desktop {
    display: none;
}

.mobile-menu-btn {
    display: flex;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: rgba(45, 61, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeSlideDown 0.3s ease-out;
}

.mobile-menu.active {
    display: block;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
}

.mobile-menu-item {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    transition: all 0.2s;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

.mobile-menu-item:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.mobile-menu-divider a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-menu-divider a:hover {
    color: white;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hero-content-inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-content-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-title {
    color: white;
}

.hero-title .light {
    font-weight: 300;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    max-width: 28rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-social-desktop {
    display: none;
}

.hero-social-desktop .follow-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-social-desktop .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-social-mobile {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    display: flex;
}

.hero-social-mobile>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.hero-social-mobile .social-circle {
    width: 3rem;
    height: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
    display: none;
}

.scroll-indicator button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    cursor: pointer;
    transition: all 0.3s;
}

.scroll-indicator button:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator svg {
    width: 1.25rem;
    height: 1.25rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* =====================================
   ABOUT SECTION
   ===================================== */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-olive-green);
}

.about-title {
    color: var(--deep-forest-green);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.about-title .light {
    font-weight: 300;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-sage-gray);
    margin-bottom: 1.5rem;
}

.about-image-wrap {
    position: relative;
}

.about-image-container {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-floating-card {
    display: none;
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-floating-card .inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-floating-card .dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #22c55e;
}

.about-floating-card span {
    font-size: 0.75rem;
    color: #6b7280;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(179, 185, 176, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--deep-forest-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-sage-gray);
}

/* =====================================
   SERVICES SECTION
   ===================================== */
.services-section {
    background-color: var(--pure-white);
}

.services-header {
    margin-bottom: 4rem;
}

.services-header .eyebrow-text {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-olive-green);
}

.services-header h2 {
    color: var(--deep-forest-green);
    margin-top: 1rem;
    max-width: 42rem;
}

.services-header h2 .light {
    font-weight: 300;
}

.services-grid {
    display: grid;
    gap: 1rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.service-card-inner {
    padding: 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-number {
    font-size: 3.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
}

.service-card:hover .service-number {
    transform: scale(1.1);
}

.service-card-content {
    margin-top: auto;
}

.service-card-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.75rem;
}

.service-card-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.service-card-arrow {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.service-card:hover .service-card-arrow {
    color: white;
}

.service-card-arrow span {
    font-size: 0.875rem;
}

.service-card-arrow svg {
    transition: transform 0.3s;
}

.service-card:hover .service-card-arrow svg {
    transform: translateX(4px);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

/* =====================================
   PROCESS SECTION
   ===================================== */
.process-section {
    background-color: #F6F7F4;
}

.process-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.process-header h2 {
    font-size: clamp(1.875rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #1A1F1C;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.process-header p {
    font-size: 1rem;
    color: #6E7872;
    line-height: 1.6;
}

.process-steps-wrap {
    position: relative;
}

.process-line {
    display: none;
}

.process-grid {
    display: grid;
    gap: 2rem;
}

.step-card {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.step-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #6B8E5A;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(107, 142, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-circle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #6B8E5A;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1F1C;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.875rem;
    color: #6E7872;
    line-height: 1.6;
}

/* =====================================
   PORTFOLIO SECTION
   ===================================== */
.portfolio-section {
    background-color: var(--pure-white);
}

.portfolio-header {
    margin-bottom: 4rem;
}

.portfolio-header .eyebrow-text {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-olive-green);
}

.portfolio-header h2 {
    color: var(--deep-forest-green);
    margin-top: 1rem;
    max-width: 42rem;
}

.portfolio-header h2 .light {
    font-weight: 300;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-info .category {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.portfolio-info h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.portfolio-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-arrow {
    opacity: 1;
}

.portfolio-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.portfolio-item.large {
    height: 400px;
}

.portfolio-item.small {
    height: 190px;
}

.portfolio-item.medium {
    height: 300px;
}

.portfolio-view-all {
    margin-top: 3rem;
    text-align: center;
}

/* =====================================
   TESTIMONIALS SECTION
   ===================================== */
.testimonials-section {
    background-color: #F6F7F4;
}

.testimonials-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.testimonials-header h2 {
    font-size: clamp(1.875rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #1A1F1C;
    line-height: 1.05;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.1;
}

.testimonial-quote-icon svg {
    width: 4rem;
    height: 4rem;
    color: #6B8E5A;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: #6B8E5A;
    color: #6B8E5A;
}

.testimonial-text {
    color: #1A1F1C;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(107, 142, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6B8E5A;
}

.testimonial-author-name {
    font-weight: 600;
    color: #1A1F1C;
}

/* =====================================
   SOCIAL FEED SECTION
   ===================================== */
.social-section {
    background-color: var(--pure-white);
}

.social-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.social-header .eyebrow-text {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-olive-green);
}

.social-header h2 {
    color: var(--deep-forest-green);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.social-header h2 .light {
    font-weight: 300;
}

.social-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-sage-gray);
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    color: white;
    background-color: var(--muted-olive-green);
    transition: all 0.3s;
}

.social-btn-primary:hover {
    transform: scale(1.05);
}

.social-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    color: var(--deep-forest-green);
    background-color: rgba(107, 126, 97, 0.1);
    transition: all 0.3s;
}

.social-btn-secondary:hover {
    transform: scale(1.05);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1rem;
    display: block;
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.social-card:hover .social-card-overlay {
    opacity: 1;
}

.social-card-overlay p {
    color: white;
    font-size: 0.75rem;
    text-align: center;
}

.social-card-ext {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-card:hover .social-card-ext {
    opacity: 1;
}

.social-card-ext svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

/* =====================================
   CONTACT SECTION
   ===================================== */
.contact-section {
    background-color: var(--pure-white);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-olive-green);
}

.contact-title {
    color: var(--deep-forest-green);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.contact-title .light {
    font-weight: 300;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-sage-gray);
    margin-bottom: 2.5rem;
    max-width: 28rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: background-color 0.2s;
}

.contact-info-item:hover {
    background-color: #f9fafb;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(107, 126, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-olive-green);
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--soft-sage-gray);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-weight: 500;
    color: var(--deep-forest-green);
}

.contact-social {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social-label {
    font-size: 0.875rem;
    color: var(--soft-sage-gray);
}

.contact-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(107, 126, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-social-icon:hover {
    transform: scale(1.1);
}

.contact-social-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--muted-olive-green);
}

/* Contact Form */
.contact-form-wrap {
    background-color: var(--deep-forest-green);
    padding: 2rem;
    border-radius: 1.5rem;
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

textarea.form-input {
    resize: none;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-error {
    color: #f87171;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.visible {
    display: block;
}

/* Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
}

.form-success.visible {
    display: flex;
}

.form-success svg {
    width: 4rem;
    height: 4rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.form-success h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.contact-whatsapp-alt {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-whatsapp-alt p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-whatsapp-alt a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: color 0.3s;
}

.contact-whatsapp-alt a:hover {
    color: #4ade80;
}

/* =====================================
   FOOTER
   ===================================== */
.footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(179, 185, 176, 0.3);
    text-align: center;
}

.footer p {
    color: var(--soft-sage-gray);
}

/* =====================================
   WHATSAPP FLOATING BUTTON
   ===================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
    fill: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    background-color: var(--deep-forest-green);
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* =====================================
   SVG ICON SIZE UTILITIES
   ===================================== */
.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-lg {
    width: 1.75rem;
    height: 1.75rem;
}

/* =====================================
   RESPONSIVE - SM (640px+)
   ===================================== */
@media (min-width: 640px) {
    .logo-text {
        display: block;
    }

    .phone-link-desktop {
        display: flex;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }
}

/* =====================================
   RESPONSIVE - MD (768px+)
   ===================================== */
@media (min-width: 768px) {
    .section-padding {
        padding: 7rem 0;
    }

    .container-custom {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .hero-nav {
        padding: 0 3rem;
    }

    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        padding-bottom: 6rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .scroll-indicator {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-inner {
        padding: 2rem;
    }

    .service-number {
        font-size: 4.5rem;
    }

    .service-card-content h3 {
        font-size: 1.5rem;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-number {
        font-size: 5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }

    .portfolio-item.item-large {
        grid-column: span 7;
    }

    .portfolio-item.item-small-top {
        grid-column: span 5;
    }

    .portfolio-item.item-small-bottom {
        grid-column: span 5;
        margin-top: 1.25rem;
    }

    .portfolio-item.item-full {
        grid-column: span 12;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================
   RESPONSIVE - LG (1024px+)
   ===================================== */
@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }

    .container-custom {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .hero-nav {
        padding: 0 4rem;
    }

    .hero-content {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .hero-content-flex {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-social-desktop {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-social-mobile {
        display: none;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }

    .about-floating-card {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        gap: 3rem;
    }

    .process-line {
        display: block;
        position: absolute;
        top: 6rem;
        left: 16.67%;
        right: 16.67%;
        height: 2px;
        background-color: rgba(107, 142, 90, 0.3);
        transform-origin: left;
        will-change: transform;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }

    .contact-form-wrap {
        padding: 2.5rem;
    }

    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* =====================================
   REDUCED MOTION
   ===================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}