/* Font Face Declarations */
@font-face {
    font-family: 'Figtree';
    src: url('assests/03 Typography/Figtree/static/Figtree-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('assests/03 Typography/Figtree/static/Figtree-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('assests/03 Typography/Figtree/static/Figtree-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('assests/03 Typography/Figtree/static/Figtree-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('assests/03 Typography/Figtree/static/Figtree-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables - Color Palette */
:root {
    --color-primary: #2d5a4f; /* Blue Dianne - primary green */
    --color-secondary: #7fb3a3; /* Faded Jade - soft green */
    --color-accent: #a8c5a0; /* Sprout - light green */
    --color-neutral: #f5f1e8; /* Parchment - warm beige */
    --color-dark: #1a1a1a; /* Black */
    --color-light: #ffffff; /* White */
    --color-text: #333333;
    --color-text-light: #666666;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
}

/* Typography - Advanced 2025-2026 Trends */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textReveal 1s ease-out;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    height: 62.5px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.1875rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(127, 179, 163, 0.08);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.07;
    background-image: url('assests/04 Patterns/SVG/R&R_Pattern 1-1.svg');
    background-repeat: repeat;
    background-size: 200px;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-text-box {
    background: linear-gradient(135deg, 
        rgba(245, 241, 232, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(245, 241, 232, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: 
        0 20px 60px -12px rgba(45, 90, 79, 0.25),
        0 8px 24px -4px rgba(45, 90, 79, 0.15),
        0 0 0 1px rgba(127, 179, 163, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(127, 179, 163, 0.1);
    border: 1px solid rgba(127, 179, 163, 0.25);
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: slideInScale 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.hero-text-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 179, 163, 0.08) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-text-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(127, 179, 163, 0.3) 0%, 
        rgba(168, 197, 160, 0.2) 50%,
        rgba(127, 179, 163, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    pointer-events: none;
}

.hero-text-box:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 28px 80px -12px rgba(45, 90, 79, 0.3),
        0 12px 32px -4px rgba(45, 90, 79, 0.2),
        0 0 0 1px rgba(127, 179, 163, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.7),
        inset 0 -1px 1px rgba(127, 179, 163, 0.15);
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-40%, -40%) rotate(180deg);
    }
}

.hero-title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Scroll Indicator - Simple Chevron with Color Wave */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.3s ease;
    cursor: pointer;
    animation: bounceChevron 2s ease-in-out infinite;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.scroll-chevron {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(45, 90, 79, 0.3));
    animation: colorWave 4s ease-in-out infinite;
}

@keyframes bounceChevron {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes colorWave {
    0% {
        color: #2d5a4f; /* Blue Dianne - primary green */
    }
    20% {
        color: #7fb3a3; /* Faded Jade - soft green */
    }
    40% {
        color: #a8c5a0; /* Sprout - light green */
    }
    60% {
        color: #7fb3a3; /* Faded Jade - soft green */
    }
    80% {
        color: #2d5a4f; /* Blue Dianne - primary green */
    }
    100% {
        color: #2d5a4f; /* Blue Dianne - primary green */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 90, 79, 0.2);
}

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

.section-alt {
    background: linear-gradient(180deg, var(--color-neutral) 0%, rgba(245, 241, 232, 0.5) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assests/04 Patterns/SVG/R&R_Pattern 1-3.svg');
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.03;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title {
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    animation: underlineExpand 0.8s ease-out 0.5s both;
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* About Page - Clean Centered Layout */
.about-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.about-page-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-photo-container {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--spacing-lg);
}

.photo-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-3d-container {
    position: relative;
    z-index: 3;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.photo-wrapper:hover .photo-3d-container {
    transform: rotateY(-5deg) rotateX(2deg) translateZ(20px);
}

.about-page-photo {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    z-index: 2;
    border: 8px solid var(--color-light);
    box-shadow: 
        0 25px 50px -12px rgba(45, 90, 79, 0.25),
        0 0 0 1px rgba(127, 179, 163, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.02) contrast(1.05);
    animation: morphBorder 8s ease-in-out infinite;
}

.about-page-photo:hover {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    box-shadow: 
        0 35px 70px -12px rgba(45, 90, 79, 0.35),
        0 0 0 1px rgba(127, 179, 163, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    filter: brightness(1.05) contrast(1.08);
}

/* Organic blob shapes - 2025-2026 trend */
.organic-shape {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.15;
    z-index: 1;
    animation: morphShape 12s ease-in-out infinite;
    filter: blur(30px);
}

.organic-shape-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    top: -15px;
    left: -15px;
    animation-delay: 0s;
}

.organic-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--color-accent), var(--color-secondary));
    bottom: -10px;
    right: -10px;
    animation-delay: 4s;
}

.photo-pattern-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-image: url('assests/04 Patterns/SVG/R&R_Pattern 1-3.svg');
    background-size: 120px;
    background-repeat: repeat;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: morphBorder 8s ease-in-out infinite;
}

@keyframes morphBorder {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(10px, -10px) scale(1.05);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translate(-5px, 5px) scale(0.95);
    }
    75% {
        border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
        transform: translate(5px, 10px) scale(1.02);
    }
}

.about-page-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-page-text p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.about-page-text p:last-child {
    margin-bottom: 0;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('assests/04 Patterns/SVG/R&R_Pattern 2-3.svg');
    background-repeat: repeat;
    background-size: 150px;
}

/* Brief Intro and Philosophy Section */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-image {
    position: relative;
}

.provider-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    display: block;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Services Section - Modern 2025-2026 Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    perspective: 1000px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 241, 232, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 24px rgba(45, 90, 79, 0.08),
        0 0 0 1px rgba(127, 179, 163, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(127, 179, 163, 0.15);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 179, 163, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        0 20px 40px rgba(45, 90, 79, 0.15),
        0 0 0 1px rgba(127, 179, 163, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(127, 179, 163, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(127, 179, 163, 0.1), rgba(168, 197, 160, 0.1));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(127, 179, 163, 0.2), rgba(168, 197, 160, 0.2));
}

.service-card:hover .service-icon::after {
    opacity: 0.6;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    margin-bottom: var(--spacing-sm);
    font-size: 1.6rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--color-secondary);
}

.service-description {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--color-text);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Contact Form - Modern 2025-2026 Design */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid rgba(127, 179, 163, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--color-text);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(127, 179, 163, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 4px rgba(127, 179, 163, 0.1),
        0 4px 12px rgba(45, 90, 79, 0.08);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 
        0 0 0 4px rgba(231, 76, 60, 0.1),
        0 4px 12px rgba(231, 76, 60, 0.08);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

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

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 1.8rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 0.6rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-light);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content,
    .contact-content,
    .intro-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .about-page {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .photo-wrapper {
        width: 320px;
        height: 320px;
    }

    .about-page-photo {
        width: 300px;
        height: 300px;
        border-width: 6px;
        box-shadow: 
            0 20px 40px -12px rgba(45, 90, 79, 0.2),
            0 0 0 1px rgba(127, 179, 163, 0.1);
    }

    .organic-shape-1 {
        width: 340px;
        height: 340px;
    }

    .organic-shape-2 {
        width: 300px;
        height: 300px;
    }

    .about-page-text {
        text-align: left;
        padding: 0 var(--spacing-sm);
    }

    .intro-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .hero {
        min-height: calc(100vh - 70px);
        height: calc(100vh - 70px);
    }

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

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

