:root {
    --color-cream: #FDF8F3;
    --color-cream-dark: #F5EDE4;
    --color-forest-green: #1A4D3E;
    --color-forest-green-light: #2D6A52;
    --color-forest-green-dark: #0F3026;
    --color-coral: #E8734A;
    --color-coral-light: #FF9A76;
    --color-coral-dark: #D15630;
    --color-text-dark: #1A1A1A;
    --color-text-light: #FFFFFF;
    --color-text-muted: #6B7280;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Quicksand', 'Nunito', 'Hiragino Sans', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(26, 77, 62, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 77, 62, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 77, 62, 0.16);
    --shadow-glass: 0 8px 32px rgba(26, 77, 62, 0.08);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-forest-green);
}

strong, p {
    color: inherit;
}

a {
    color: var(--color-forest-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-coral);
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    padding: 14px 32px;
    transition: all var(--transition-medium);
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    color: var(--color-text-light);
    border: none;
    box-shadow: 0 4px 16px rgba(232, 115, 74, 0.35);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--color-coral-light) 0%, var(--color-coral) 100%);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 115, 74, 0.45);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--color-forest-green);
    border: 2px solid var(--color-forest-green);
}

.btn-secondary-custom:hover {
    background: var(--color-forest-green);
    color: var(--color-text-light);
    border-color: var(--color-forest-green);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-text-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-section {
    background: var(--color-cream);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.header-section.scrolled {
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-forest-green) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand:hover {
    color: var(--color-coral) !important;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-dark) !important;
    padding: 8px 16px !important;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-coral) !important;
}

.nav-link.active {
    color: var(--color-coral) !important;
}

.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-forest-green);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

.mobile-menu-toggle.active span {
    background: var(--color-cream);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-forest-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu .nav-link {
    font-size: 1.5rem;
    color: var(--color-text-light) !important;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.08) 0%, rgba(26, 77, 62, 0.05) 100%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 77, 62, 0.04) 0%, rgba(232, 115, 74, 0.06) 100%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 115, 74, 0.1);
    color: var(--color-coral);
    padding: 8px 16px;
    border-radius: var(--border-radius-xl);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

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

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-stat {
    text-align: center;
    padding: 16px;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-forest-green);
}

.hero-stat-label {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--color-coral);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-description {
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.about-section {
    background: var(--color-forest-green);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 20px 20px;
}

.about-section h2, .about-section h3, .about-section h4 {
    color: var(--color-text-light);
}

.about-section p {
    color: rgba(255, 255, 255, 0.85);
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-cream);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-floating-card .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-coral);
}

.about-floating-card .text {
    color: var(--color-text-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.1) 0%, rgba(26, 77, 62, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-coral);
    transition: all var(--transition-medium);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

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

.services-section {
    background: var(--color-cream);
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-coral);
    color: white;
    padding: 6px 14px;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-content {
    padding: 28px;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-forest-green);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-coral);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
    color: var(--color-coral-dark);
}

.pricing-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--color-coral);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-coral);
    color: white;
    padding: 6px 20px;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-forest-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-forest-green);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-coral);
    font-weight: 700;
}

.testimonials-section {
    background: var(--color-forest-green);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 115, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section h2, .testimonials-section h3, .testimonials-section h4 {
    color: var(--color-text-light);
}

.testimonials-section p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.testimonial-rating {
    color: var(--color-coral-light);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-coral);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 1rem;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.team-section {
    background: var(--color-cream);
}

.team-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-role {
    color: var(--color-coral);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.process-section {
    background: var(--color-cream-dark);
}

.process-step {
    text-align: center;
    padding: 32px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 115, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-coral);
    margin: 0 auto 20px;
}

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

.process-description {
    color: var(--color-text-muted);
    max-width: 280px;
    margin: 0 auto;
}

.process-connector {
    position: absolute;
    top: 76px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-coral) 0%, transparent 100%);
    display: none;
}

@media (min-width: 992px) {
    .process-connector {
        display: block;
    }
}

.faq-section {
    background: var(--color-cream);
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-forest-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-coral);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-coral);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.contact-section {
    background: var(--color-cream);
}

.contact-info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.1) 0%, rgba(26, 77, 62, 0.1) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-coral);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--color-forest-green);
    font-size: 1.05rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

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

.form-label {
    display: block;
    font-weight: 500;
    color: var(--color-forest-green);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--border-radius-md);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--color-cream);
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 4px rgba(232, 115, 74, 0.1);
    background: white;
}

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

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.map-section {
    background: var(--color-cream-dark);
    padding: 0;
    min-height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.gallery-section {
    background: var(--color-cream);
}

.gallery-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 77, 62, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.careers-section {
    background: var(--color-cream);
}

.job-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.job-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.job-meta {
    display: flex;
    gap: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
}

.thank-you-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 60px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 32px;
}

.footer-section {
    background: var(--color-forest-green);
    color: var(--color-text-light);
    padding: 80px 0 40px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer-section h3, .footer-section h4, .footer-section h5 {
    color: var(--color-text-light);
}

.footer-section p, .footer-section a, .footer-section li {
    color: rgba(255, 255, 255, 0.75);
}

.footer-section a:hover {
    color: var(--color-coral-light);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-coral-light);
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-top: 48px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal-links a:hover {
    color: var(--color-coral-light);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 28px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.cookie-consent-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-forest-green);
    margin-bottom: 12px;
}

.cookie-consent-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 115, 74, 0.3);
}

.cookie-btn-decline {
    background: var(--color-cream-dark);
    color: var(--color-text-dark);
}

.cookie-btn-decline:hover {
    background: var(--color-cream);
}

.legal-page-section {
    padding: 140px 0 80px;
    background: var(--color-cream);
    min-height: 80vh;
}

.legal-content {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.legal-title {
    font-size: 2rem;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-cream-dark);
}

.legal-subtitle {
    font-size: 1.25rem;
    margin: 32px 0 16px;
    color: var(--color-forest-green);
}

.legal-text {
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
    margin-bottom: 24px;
}

.error-message {
    font-size: 1.5rem;
    color: var(--color-forest-green);
    margin-bottom: 16px;
}

.error-description {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .header-section {
        padding: 12px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .section-padding {
        padding: 70px 0;
    }

    .about-floating-card {
        right: 16px;
        bottom: -20px;
        padding: 16px;
    }

    .about-floating-card .number {
        font-size: 1.75rem;
    }

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

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-connector {
        display: none !important;
    }

    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .legal-content {
        padding: 40px 24px;
    }

    .legal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 60px 0 32px;
    }

    .footer-bottom {
        margin-top: 32px;
        padding-top: 24px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

.privacy-section, .terms-section, .cookie-section, .refund-section {
    background: var(--color-cream);
    padding: 140px 0 80px;
}

.privacy-content, .terms-content, .cookie-content, .refund-content {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title, .terms-title, .cookie-title, .refund-title {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--color-forest-green);
}

.privacy-subtitle, .terms-subtitle, .cookie-subtitle, .refund-subtitle {
    font-size: 1.25rem;
    margin: 28px 0 14px;
    color: var(--color-forest-green);
}

.privacy-text, .terms-text, .cookie-text, .refund-text {
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-area-section {
    background: var(--color-cream);
}

.service-area-map {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-area-map iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.urgency-section {
    background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-forest-green-light) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(232, 115, 74, 0.2) 0%, transparent 70%);
}

.urgency-section h2, .urgency-section h3, .urgency-section h4 {
    color: white;
}

.urgency-section p {
    color: rgba(255, 255, 255, 0.85);
}

.urgency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.urgency-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.blog-section {
    background: var(--color-cream);
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 28px;
}

.blog-date {
    color: var(--color-coral);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.blog-link {
    color: var(--color-coral);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.blog-link:hover {
    gap: 10px;
}

.inner-page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    position: relative;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.05) 0%, transparent 100%);
}

.breadcrumb-section {
    padding: 0 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-forest-green);
}

.breadcrumb-item.active {
    color: var(--color-coral);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--color-text-muted);
}

.image-generator-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-forest-green);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0.9;
}
